diff --git a/CHANGELOG.md b/CHANGELOG.md index be29483..48c3091 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ All notable (user-facing) changes to this project will be documented in this fil The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). +## [2.3.0] - 2024-11-07 + +### Added +- Support for SIMD Exceptions reporting (for instructions that generate SIMD exceptions; this is equivalent to also setting or testing the associated bits in the `MXCSR`). +- Support for the following new x86 ISAs: MOVRS, MSR_IMM, AMX-FP8, AMX-TRANSPOSE, AMX-TF32, AMX-AVX512, AMX-MOVRS and EVEX-encoded SM4 instructions. + + ## [2.2.0] - 2024-09-16 ### Added diff --git a/bddisasm/bdx86_decoder.c b/bddisasm/bdx86_decoder.c index 0cbdaab..c03acc9 100644 --- a/bddisasm/bdx86_decoder.c +++ b/bddisasm/bdx86_decoder.c @@ -4297,7 +4297,8 @@ NdVexExceptionChecks( } // Handle AMX exception class. - if (Instrux->ExceptionType == ND_EXT_AMX_E4) + if (Instrux->ExceptionType == ND_EXT_AMX_E4 || + Instrux->ExceptionType == ND_EXT_AMX_E10) { // #UD if srcdest == src1, srcdest == src2 or src1 == src2. All three operands are tile regs. if (Instrux->Operands[0].Info.Register.Reg == Instrux->Operands[1].Info.Register.Reg || @@ -4374,7 +4375,8 @@ NdCopyInstructionInfo( Instrux->ValidModes.Raw = Idbe->ValidModes; Instrux->ValidPrefixes.Raw = Idbe->ValidPrefixes; Instrux->ValidDecorators.Raw = Idbe->ValidDecorators; - *((ND_UINT8*)&Instrux->FpuFlagsAccess) = Idbe->FpuFlags; + Instrux->FpuFlagsAccess.Raw = Idbe->FpuFlags; + Instrux->SimdExceptions.Raw = Idbe->SimdExc; // Valid for EVEX, VEX and SSE instructions only. A value of 0 means it's not used. Instrux->ExceptionType = Idbe->ExcType; Instrux->TupleType = Idbe->TupleType; @@ -4465,8 +4467,11 @@ NdDecodeWithContext( return ND_STATUS_INVALID_PARAMETER; } - // Initialize with zero. - nd_memzero(Instrux, sizeof(INSTRUX)); + if (0 == (Context->Options & ND_OPTION_SKIP_ZERO_INSTRUX)) + { + // Initialize with zero. + nd_memzero(Instrux, sizeof(INSTRUX)); + } Instrux->DefCode = (ND_UINT8)Context->DefCode; Instrux->DefData = (ND_UINT8)Context->DefData; diff --git a/bddisasm/include/bdx86_instructions.h b/bddisasm/include/bdx86_instructions.h index 8bfcc43..205fb9c 100644 --- a/bddisasm/include/bdx86_instructions.h +++ b/bddisasm/include/bdx86_instructions.h @@ -10,7 +10,7 @@ #ifndef BDX86_INSTRUCTIONS_H #define BDX86_INSTRUCTIONS_H -const ND_IDBE gInstructions[4157] = +const ND_IDBE gInstructions[4206] = { // Pos:0 Instruction:"AAA" Encoding:"0x37"/"" { @@ -26,6 +26,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_AF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_AF, .SetFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, @@ -54,6 +55,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_AF|NDR_RFLAG_OF, @@ -83,6 +85,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_RAOINT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -110,6 +113,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -137,6 +141,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_AF|NDR_RFLAG_OF, @@ -166,6 +171,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_RAOINT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -193,6 +199,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -220,6 +227,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_AF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_AF, .SetFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, @@ -248,6 +256,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -276,6 +285,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -304,6 +314,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -332,6 +343,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -360,6 +372,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -388,6 +401,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -416,6 +430,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -444,6 +459,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -472,6 +488,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -500,6 +517,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -528,6 +546,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -556,6 +575,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -585,6 +605,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -614,6 +635,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -643,6 +665,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -672,6 +695,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -701,6 +725,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -730,6 +755,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -759,6 +785,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -788,6 +815,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -817,6 +845,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -846,6 +875,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -875,6 +905,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -903,6 +934,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -931,6 +963,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -959,6 +992,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -987,6 +1021,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -1015,6 +1050,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -1043,6 +1079,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -1071,6 +1108,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -1099,6 +1137,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -1127,6 +1166,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -1155,6 +1195,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF, .SetFlags = 0, @@ -1183,6 +1224,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF, .SetFlags = 0, @@ -1212,6 +1254,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF, .SetFlags = 0, @@ -1240,6 +1283,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -1268,6 +1312,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -1296,6 +1341,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -1324,6 +1370,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -1352,6 +1399,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -1380,6 +1428,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -1408,6 +1457,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -1436,6 +1486,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -1464,6 +1515,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -1492,6 +1544,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -1520,6 +1573,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -1548,6 +1602,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -1575,6 +1630,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -1602,6 +1658,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -1629,6 +1686,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -1656,6 +1714,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -1683,6 +1742,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -1710,6 +1770,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -1737,6 +1798,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -1764,6 +1826,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -1791,6 +1854,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -1818,6 +1882,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -1845,6 +1910,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -1874,6 +1940,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -1903,6 +1970,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -1932,6 +2000,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -1961,6 +2030,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -1990,6 +2060,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -2019,6 +2090,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -2048,6 +2120,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -2077,6 +2150,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -2106,6 +2180,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -2135,6 +2210,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -2164,6 +2240,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -2192,6 +2269,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -2220,6 +2298,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -2248,6 +2327,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -2276,6 +2356,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -2304,6 +2385,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -2332,6 +2414,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -2360,6 +2443,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -2388,6 +2472,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -2416,6 +2501,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -2444,6 +2530,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -2472,6 +2559,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -2500,6 +2588,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -2528,6 +2617,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -2556,6 +2646,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -2584,6 +2675,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -2612,6 +2704,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -2640,6 +2733,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -2668,6 +2762,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -2696,6 +2791,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -2724,6 +2820,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -2752,6 +2849,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -2779,6 +2877,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -2806,6 +2905,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -2833,6 +2933,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -2860,6 +2961,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -2887,6 +2989,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -2914,6 +3017,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF, .SetFlags = 0, @@ -2942,6 +3046,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF, .SetFlags = 0, @@ -2971,6 +3076,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_OF, .SetFlags = 0, @@ -2999,6 +3105,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -3026,6 +3133,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_ZF, .SetFlags = 0, @@ -3054,6 +3162,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_ZF, .SetFlags = 0, @@ -3082,6 +3191,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -3109,6 +3219,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_ZF, .SetFlags = 0, @@ -3137,6 +3248,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_ZF, .SetFlags = 0, @@ -3165,6 +3277,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -3192,6 +3305,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_ZF, .SetFlags = 0, @@ -3220,6 +3334,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_ZF, .SetFlags = 0, @@ -3248,6 +3363,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -3275,6 +3391,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_ZF, .SetFlags = 0, @@ -3303,6 +3420,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_ZF, .SetFlags = 0, @@ -3331,6 +3449,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -3358,6 +3477,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -3386,6 +3506,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -3414,6 +3535,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -3442,6 +3564,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -3470,6 +3593,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -3498,6 +3622,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -3526,6 +3651,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -3554,6 +3680,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -3582,6 +3709,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -3610,6 +3738,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -3638,6 +3767,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -3666,6 +3796,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -3694,6 +3825,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -3721,6 +3853,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -3748,6 +3881,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -3775,6 +3909,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -3802,6 +3937,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -3829,6 +3965,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -3856,6 +3993,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -3883,6 +4021,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -3910,6 +4049,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -3937,6 +4077,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -3964,6 +4105,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -3991,6 +4133,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -4020,6 +4163,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -4049,6 +4193,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -4078,6 +4223,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -4107,6 +4253,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -4136,6 +4283,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -4165,6 +4313,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -4194,6 +4343,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -4223,6 +4373,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -4252,6 +4403,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -4281,6 +4433,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -4310,6 +4463,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -4338,6 +4492,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -4366,6 +4521,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -4394,6 +4550,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -4422,6 +4579,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -4450,6 +4608,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -4478,6 +4637,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -4506,6 +4666,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -4534,6 +4695,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -4562,6 +4724,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -4590,6 +4753,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -4618,6 +4782,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -4646,6 +4811,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -4674,6 +4840,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -4702,6 +4869,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -4730,6 +4898,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -4758,6 +4927,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -4786,6 +4956,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -4814,6 +4985,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -4842,6 +5014,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -4870,6 +5043,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -4898,6 +5072,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_BMI, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF, @@ -4927,6 +5102,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_BMI, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -4955,6 +5131,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_13, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF, @@ -4984,6 +5161,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -5011,6 +5189,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -5038,6 +5217,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -5065,6 +5245,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -5092,6 +5273,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_RAOINT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -5119,6 +5301,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -5146,6 +5329,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_ZF, .SetFlags = 0, @@ -5174,6 +5358,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_RAOINT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -5201,6 +5386,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -5228,6 +5414,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_BMI, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_ZF, .SetFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_SF, @@ -5257,6 +5444,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_BMI, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -5285,6 +5473,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_13, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_ZF, .SetFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_SF, @@ -5314,6 +5503,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -5342,6 +5532,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -5369,6 +5560,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -5396,6 +5588,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -5423,6 +5616,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -5450,6 +5644,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -5477,6 +5672,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -5505,6 +5701,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -5533,6 +5730,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -5561,6 +5759,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -5589,6 +5788,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -5616,6 +5816,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_BMI, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF, @@ -5644,6 +5845,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_BMI, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -5671,6 +5873,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_13, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF, @@ -5699,6 +5902,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -5726,6 +5930,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_BMI, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF, @@ -5754,6 +5959,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_BMI, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -5781,6 +5987,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_13, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF, @@ -5809,6 +6016,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_BMI, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF, @@ -5837,6 +6045,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_BMI, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -5864,6 +6073,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_13, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF, @@ -5892,6 +6102,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -5919,6 +6130,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -5946,6 +6158,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -5973,6 +6186,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -6000,6 +6214,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -6027,6 +6242,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -6054,6 +6270,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -6081,6 +6298,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -6108,6 +6326,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -6135,6 +6354,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_ZF, .SetFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_SF|NDR_RFLAG_OF, @@ -6163,6 +6383,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_ZF, .SetFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_SF|NDR_RFLAG_OF, @@ -6191,6 +6412,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -6217,6 +6439,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -6243,6 +6466,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -6269,6 +6493,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -6295,6 +6520,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -6321,6 +6547,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -6347,6 +6574,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -6373,6 +6601,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -6399,6 +6628,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF, .SetFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_SF|NDR_RFLAG_OF, @@ -6427,6 +6657,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF, .SetFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_SF|NDR_RFLAG_OF, @@ -6455,6 +6686,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF, .SetFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_SF|NDR_RFLAG_OF, @@ -6483,6 +6715,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF, .SetFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_SF|NDR_RFLAG_OF, @@ -6511,6 +6744,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF, .SetFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_SF|NDR_RFLAG_OF, @@ -6539,6 +6773,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF, .SetFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_SF|NDR_RFLAG_OF, @@ -6567,6 +6802,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF, .SetFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_SF|NDR_RFLAG_OF, @@ -6595,6 +6831,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF, .SetFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_SF|NDR_RFLAG_OF, @@ -6623,6 +6860,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_BMI, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF, @@ -6652,6 +6890,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_BMI, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -6680,6 +6919,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_13, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF, @@ -6709,6 +6949,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -6738,6 +6979,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -6767,6 +7009,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -6797,6 +7040,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -6827,6 +7071,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -6854,6 +7099,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -6883,6 +7129,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -6912,6 +7159,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -6941,6 +7189,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -6970,6 +7219,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -6999,6 +7249,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -7028,6 +7279,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -7057,6 +7309,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -7086,6 +7339,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -7115,6 +7369,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -7144,6 +7399,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -7173,6 +7429,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -7202,6 +7459,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -7231,6 +7489,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -7260,6 +7519,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -7289,6 +7549,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -7318,6 +7579,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -7347,6 +7609,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -7376,6 +7639,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -7405,6 +7669,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -7434,6 +7699,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -7463,6 +7729,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -7492,6 +7759,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -7521,6 +7789,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -7550,6 +7819,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -7579,6 +7849,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -7608,6 +7879,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -7637,6 +7909,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -7666,6 +7939,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -7695,6 +7969,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -7724,6 +7999,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -7753,6 +8029,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -7782,6 +8059,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -7811,6 +8089,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -7840,6 +8119,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -7869,6 +8149,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -7898,6 +8179,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -7927,6 +8209,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -7956,6 +8239,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -7985,6 +8269,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -8014,6 +8299,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -8043,6 +8329,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -8072,6 +8359,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -8101,6 +8389,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -8130,6 +8419,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -8159,6 +8449,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -8188,6 +8479,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -8217,6 +8509,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -8246,6 +8539,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -8275,6 +8569,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -8304,6 +8599,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -8333,6 +8629,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -8362,6 +8659,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -8391,6 +8689,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -8420,6 +8719,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -8449,6 +8749,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -8478,6 +8779,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -8507,6 +8809,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -8536,6 +8839,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -8565,6 +8869,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -8594,6 +8899,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -8623,6 +8929,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -8652,6 +8959,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -8681,6 +8989,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -8710,6 +9019,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -8739,6 +9049,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -8768,6 +9079,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -8797,6 +9109,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -8826,6 +9139,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -8855,6 +9169,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -8884,6 +9199,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -8913,6 +9229,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -8942,6 +9259,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -8971,6 +9289,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -9000,6 +9319,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -9029,6 +9349,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -9058,6 +9379,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -9087,6 +9409,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -9116,6 +9439,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -9145,6 +9469,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -9174,6 +9499,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -9203,6 +9529,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -9232,6 +9559,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -9261,6 +9589,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -9290,6 +9619,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -9319,6 +9649,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -9348,6 +9679,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -9377,6 +9709,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -9406,6 +9739,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -9435,6 +9769,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -9464,6 +9799,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -9493,6 +9829,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -9522,6 +9859,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -9551,6 +9889,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -9580,6 +9919,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -9609,6 +9949,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -9638,6 +9979,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -9667,6 +10009,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -9696,6 +10039,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -9725,6 +10069,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -9754,6 +10099,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -9783,6 +10129,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -9812,6 +10159,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -9841,6 +10189,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -9870,6 +10219,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -9899,6 +10249,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -9928,6 +10279,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -9957,6 +10309,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -9986,6 +10339,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -10015,6 +10369,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -10044,6 +10399,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -10073,6 +10429,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -10102,6 +10459,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -10131,6 +10489,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -10160,6 +10519,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -10189,6 +10549,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -10218,6 +10579,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -10247,6 +10609,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -10276,6 +10639,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -10305,6 +10669,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -10334,6 +10699,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -10363,6 +10729,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -10392,6 +10759,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -10421,6 +10789,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -10450,6 +10819,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -10479,6 +10849,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -10508,6 +10879,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -10537,6 +10909,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -10566,6 +10939,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -10595,6 +10969,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -10624,6 +10999,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -10653,6 +11029,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -10682,6 +11059,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -10711,6 +11089,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -10740,6 +11119,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -10769,6 +11149,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -10798,6 +11179,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -10827,6 +11209,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -10856,6 +11239,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -10885,6 +11269,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -10914,6 +11299,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -10943,6 +11329,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -10972,6 +11359,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -11001,6 +11389,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -11030,6 +11419,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -11059,6 +11449,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -11088,6 +11479,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -11117,6 +11509,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -11146,6 +11539,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -11175,6 +11569,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -11204,6 +11599,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -11233,6 +11629,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -11262,6 +11659,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -11291,6 +11689,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -11320,6 +11719,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -11349,6 +11749,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -11378,6 +11779,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -11407,6 +11809,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -11436,6 +11839,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -11465,6 +11869,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -11494,6 +11899,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -11523,6 +11929,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -11552,6 +11959,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -11581,6 +11989,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -11610,6 +12019,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -11639,6 +12049,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -11668,6 +12079,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -11697,6 +12109,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -11726,6 +12139,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -11755,6 +12169,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -11784,6 +12199,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -11813,6 +12229,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -11842,6 +12259,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -11871,6 +12289,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -11900,6 +12319,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -11929,6 +12349,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -11958,6 +12379,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -11985,6 +12407,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -12012,6 +12435,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -12040,6 +12464,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -12068,6 +12493,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -12096,6 +12522,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -12124,6 +12551,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -12152,6 +12580,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -12180,6 +12609,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -12209,6 +12639,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -12238,6 +12669,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -12266,6 +12698,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -12294,6 +12727,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -12322,6 +12756,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -12350,6 +12785,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -12378,6 +12814,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -12406,6 +12843,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -12435,6 +12873,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -12464,6 +12903,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -12492,6 +12932,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -12520,6 +12961,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -12548,6 +12990,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -12576,6 +13019,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -12604,6 +13048,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -12632,6 +13077,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -12661,6 +13107,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -12690,6 +13137,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -12718,6 +13166,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -12746,6 +13195,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -12774,6 +13224,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -12802,6 +13253,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -12830,6 +13282,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -12858,6 +13311,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -12887,6 +13341,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -12916,6 +13371,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -12944,6 +13400,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -12972,6 +13429,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -13000,6 +13458,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -13028,6 +13487,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -13056,6 +13516,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -13084,6 +13545,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -13113,6 +13575,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -13142,6 +13605,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -13170,6 +13634,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -13198,6 +13663,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -13226,6 +13692,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -13254,6 +13721,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -13282,6 +13750,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -13310,6 +13779,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -13339,6 +13809,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -13368,6 +13839,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -13396,6 +13868,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -13424,6 +13897,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -13452,6 +13926,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -13480,6 +13955,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -13508,6 +13984,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -13536,6 +14013,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -13565,6 +14043,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -13594,6 +14073,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -13622,6 +14102,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -13650,6 +14131,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -13678,6 +14160,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -13706,6 +14189,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -13734,6 +14218,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -13762,6 +14247,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -13791,6 +14277,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -13820,6 +14307,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -13848,6 +14336,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -13876,6 +14365,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -13904,6 +14394,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -13932,6 +14423,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -13960,6 +14452,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -13988,6 +14481,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -14017,6 +14511,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -14046,6 +14541,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_PF, .ModifiedFlags = 0, .SetFlags = 0, @@ -14074,6 +14570,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_PF, .ModifiedFlags = 0, .SetFlags = 0, @@ -14102,6 +14599,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_PF, .ModifiedFlags = 0, .SetFlags = 0, @@ -14130,6 +14628,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_PF, .ModifiedFlags = 0, .SetFlags = 0, @@ -14158,6 +14657,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_PF, .ModifiedFlags = 0, .SetFlags = 0, @@ -14186,6 +14686,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_PF, .ModifiedFlags = 0, .SetFlags = 0, @@ -14214,6 +14715,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_PF, .ModifiedFlags = 0, .SetFlags = 0, @@ -14243,6 +14745,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_PF, .ModifiedFlags = 0, .SetFlags = 0, @@ -14272,6 +14775,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -14300,6 +14804,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -14328,6 +14833,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -14356,6 +14862,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -14384,6 +14891,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -14412,6 +14920,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -14440,6 +14949,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -14469,6 +14979,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -14498,6 +15009,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -14526,6 +15038,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -14554,6 +15067,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -14582,6 +15096,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -14610,6 +15125,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -14638,6 +15154,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -14666,6 +15183,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -14695,6 +15213,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -14724,6 +15243,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -14752,6 +15272,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -14780,6 +15301,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -14808,6 +15330,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -14836,6 +15359,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -14864,6 +15388,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -14892,6 +15417,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -14921,6 +15447,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -14950,6 +15477,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_PF, .ModifiedFlags = 0, .SetFlags = 0, @@ -14978,6 +15506,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_PF, .ModifiedFlags = 0, .SetFlags = 0, @@ -15006,6 +15535,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_PF, .ModifiedFlags = 0, .SetFlags = 0, @@ -15034,6 +15564,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_PF, .ModifiedFlags = 0, .SetFlags = 0, @@ -15062,6 +15593,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_PF, .ModifiedFlags = 0, .SetFlags = 0, @@ -15090,6 +15622,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_PF, .ModifiedFlags = 0, .SetFlags = 0, @@ -15118,6 +15651,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_PF, .ModifiedFlags = 0, .SetFlags = 0, @@ -15147,6 +15681,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_PF, .ModifiedFlags = 0, .SetFlags = 0, @@ -15176,6 +15711,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -15204,6 +15740,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -15232,6 +15769,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -15260,6 +15798,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -15288,6 +15827,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -15316,6 +15856,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -15344,6 +15885,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -15373,6 +15915,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -15402,6 +15945,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -15430,6 +15974,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -15458,6 +16003,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -15486,6 +16032,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -15514,6 +16061,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -15542,6 +16090,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -15570,6 +16119,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -15599,6 +16149,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CFCMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -15628,6 +16179,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -15654,6 +16206,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -15680,6 +16233,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -15706,6 +16260,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -15732,6 +16287,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -15758,6 +16314,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -15784,6 +16341,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -15810,6 +16368,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -15836,6 +16395,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -15862,6 +16422,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -15888,6 +16449,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF, .SetFlags = 0, @@ -15915,6 +16477,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -15941,6 +16504,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -15967,6 +16531,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -15993,6 +16558,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -16019,6 +16585,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF, .SetFlags = 0, @@ -16045,6 +16612,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -16074,6 +16642,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -16103,6 +16672,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -16131,6 +16701,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -16160,6 +16731,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -16189,6 +16761,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -16217,6 +16790,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -16246,6 +16820,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -16275,6 +16850,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -16303,6 +16879,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -16332,6 +16909,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -16361,6 +16939,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -16389,6 +16968,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -16418,6 +16998,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -16447,6 +17028,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -16475,6 +17057,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -16504,6 +17087,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -16533,6 +17117,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -16561,6 +17146,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -16590,6 +17176,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -16619,6 +17206,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -16647,6 +17235,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -16676,6 +17265,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -16705,6 +17295,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -16733,6 +17324,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -16762,6 +17354,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -16791,6 +17384,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -16819,6 +17413,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_PF, .ModifiedFlags = 0, .SetFlags = 0, @@ -16848,6 +17443,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_PF, .ModifiedFlags = 0, .SetFlags = 0, @@ -16877,6 +17473,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_PF, .ModifiedFlags = 0, .SetFlags = 0, @@ -16905,6 +17502,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -16934,6 +17532,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -16963,6 +17562,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -16991,6 +17591,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -17020,6 +17621,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -17049,6 +17651,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -17077,6 +17680,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -17106,6 +17710,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -17135,6 +17740,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -17163,6 +17769,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_PF, .ModifiedFlags = 0, .SetFlags = 0, @@ -17192,6 +17799,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_PF, .ModifiedFlags = 0, .SetFlags = 0, @@ -17221,6 +17829,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_PF, .ModifiedFlags = 0, .SetFlags = 0, @@ -17249,6 +17858,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -17278,6 +17888,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -17307,6 +17918,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -17335,6 +17947,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -17364,6 +17977,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -17393,6 +18007,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -17421,6 +18036,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -17449,6 +18065,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -17477,6 +18094,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -17505,6 +18123,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -17533,6 +18152,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -17561,6 +18181,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -17589,6 +18210,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -17617,6 +18239,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -17645,6 +18268,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -17673,6 +18297,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -17701,6 +18326,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CMPCCXADD, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -17730,6 +18356,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_14, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -17759,6 +18386,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CMPCCXADD, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -17788,6 +18416,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_14, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -17817,6 +18446,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CMPCCXADD, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -17846,6 +18476,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_14, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -17875,6 +18506,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CMPCCXADD, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -17904,6 +18536,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_14, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -17933,6 +18566,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CMPCCXADD, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -17962,6 +18596,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_14, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -17991,6 +18626,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CMPCCXADD, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -18020,6 +18656,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_14, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -18049,6 +18686,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CMPCCXADD, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -18078,6 +18716,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_14, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -18107,6 +18746,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CMPCCXADD, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -18136,6 +18776,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_14, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -18165,6 +18806,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CMPCCXADD, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -18194,6 +18836,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_14, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -18223,6 +18866,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CMPCCXADD, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -18252,6 +18896,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_14, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -18281,6 +18926,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CMPCCXADD, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -18310,6 +18956,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_14, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -18339,6 +18986,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CMPCCXADD, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -18368,6 +19016,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_14, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -18397,6 +19046,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CMPCCXADD, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -18426,6 +19076,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_14, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -18455,6 +19106,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -18483,6 +19135,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -18511,6 +19164,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CMPCCXADD, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -18540,6 +19194,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_14, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -18569,6 +19224,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_DF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -18599,6 +19255,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF|NDR_RFLAG_DF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -18630,6 +19287,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_DF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -18660,6 +19318,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF|NDR_RFLAG_DF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -18691,6 +19350,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -18719,6 +19379,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_DF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -18749,6 +19410,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF|NDR_RFLAG_DF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -18780,6 +19442,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -18808,6 +19471,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_DF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -18838,6 +19502,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF|NDR_RFLAG_DF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -18869,6 +19534,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CMPCCXADD, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -18898,6 +19564,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_14, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -18927,6 +19594,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -18956,6 +19624,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -18985,6 +19654,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_ZF, .SetFlags = 0, @@ -19016,6 +19686,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_ZF, .SetFlags = 0, @@ -19047,6 +19718,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CMPCCXADD, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -19076,6 +19748,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_14, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -19105,6 +19778,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF, .SetFlags = 0, @@ -19133,6 +19807,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF, .SetFlags = 0, @@ -19161,6 +19836,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -19190,6 +19866,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -19217,6 +19894,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -19244,6 +19922,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -19271,6 +19950,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -19298,6 +19978,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -19325,6 +20006,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -19352,6 +20034,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -19381,6 +20064,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -19410,6 +20094,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -19439,6 +20124,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -19468,6 +20154,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -19497,6 +20184,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -19526,6 +20214,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -19555,6 +20244,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -19584,6 +20274,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -19613,6 +20304,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -19642,6 +20334,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -19671,6 +20364,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -19700,6 +20394,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -19729,6 +20424,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -19758,6 +20454,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -19787,6 +20484,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -19816,6 +20514,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -19845,6 +20544,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -19874,6 +20574,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -19903,6 +20604,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -19932,6 +20634,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -19961,6 +20664,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -19990,6 +20694,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -20019,6 +20724,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -20048,6 +20754,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -20077,6 +20784,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -20106,6 +20814,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -20135,6 +20844,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -20164,6 +20874,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -20193,6 +20904,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -20222,6 +20934,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -20251,6 +20964,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -20280,6 +20994,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -20309,6 +21024,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -20338,6 +21054,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -20367,6 +21084,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -20396,6 +21114,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -20425,6 +21144,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -20454,6 +21174,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -20483,6 +21204,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -20512,6 +21234,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -20541,6 +21264,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -20570,6 +21294,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -20599,6 +21324,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -20628,6 +21354,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -20657,6 +21384,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -20686,6 +21414,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -20715,6 +21444,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -20744,6 +21474,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -20773,6 +21504,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -20802,6 +21534,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -20831,6 +21564,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -20860,6 +21594,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -20889,6 +21624,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -20918,6 +21654,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -20947,6 +21684,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -20976,6 +21714,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -21005,6 +21744,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -21034,6 +21774,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -21063,6 +21804,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -21092,6 +21834,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -21121,6 +21864,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -21150,6 +21894,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -21179,6 +21924,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -21208,6 +21954,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -21237,6 +21984,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -21266,6 +22014,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -21295,6 +22044,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -21324,6 +22074,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -21353,6 +22104,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -21382,6 +22134,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -21411,6 +22164,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -21440,6 +22194,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -21469,6 +22224,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -21498,6 +22254,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -21527,6 +22284,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -21556,6 +22314,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -21585,6 +22344,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -21614,6 +22374,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -21643,6 +22404,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -21672,6 +22434,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -21701,6 +22464,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -21730,6 +22494,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -21759,6 +22524,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -21788,6 +22554,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -21817,6 +22584,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -21846,6 +22614,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -21875,6 +22644,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -21904,6 +22674,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -21933,6 +22704,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -21962,6 +22734,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -21991,6 +22764,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -22020,6 +22794,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -22049,6 +22824,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -22078,6 +22854,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -22107,6 +22884,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -22136,6 +22914,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -22165,6 +22944,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -22194,6 +22974,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -22223,6 +23004,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -22252,6 +23034,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -22281,6 +23064,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -22310,6 +23094,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -22339,6 +23124,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -22368,6 +23154,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -22397,6 +23184,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -22426,6 +23214,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -22455,6 +23244,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -22484,6 +23274,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -22513,6 +23304,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -22542,6 +23334,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -22571,6 +23364,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -22600,6 +23394,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -22629,6 +23424,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -22658,6 +23454,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -22687,6 +23484,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -22716,6 +23514,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -22745,6 +23544,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -22774,6 +23574,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -22803,6 +23604,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -22832,6 +23634,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -22861,6 +23664,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -22890,6 +23694,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -22919,6 +23724,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -22948,6 +23754,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -22977,6 +23784,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -23006,6 +23814,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -23035,6 +23844,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -23064,6 +23874,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -23093,6 +23904,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -23122,6 +23934,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -23151,6 +23964,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -23180,6 +23994,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -23209,6 +24024,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -23238,6 +24054,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -23267,6 +24084,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -23296,6 +24114,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -23325,6 +24144,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -23354,6 +24174,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -23383,6 +24204,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -23412,6 +24234,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -23441,6 +24264,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -23470,6 +24294,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -23499,6 +24324,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_CCMP, .FpuFlags = 0, .EvexMode = ND_EVEXM_COND, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -23528,6 +24354,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -23555,6 +24382,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -23582,6 +24410,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -23609,6 +24438,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -23636,6 +24466,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -23663,6 +24494,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -23690,6 +24522,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -23717,6 +24550,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -23744,6 +24578,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -23771,6 +24606,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -23798,6 +24634,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -23825,6 +24662,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -23852,6 +24690,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -23879,6 +24718,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -23906,6 +24746,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -23933,6 +24774,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -23960,6 +24802,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -23987,6 +24830,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -24014,6 +24858,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -24041,6 +24886,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -24068,6 +24914,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -24095,6 +24942,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -24122,6 +24970,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -24149,6 +24998,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -24176,6 +25026,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_AF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF, .SetFlags = 0|NDR_RFLAG_OF, @@ -24203,6 +25054,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_AF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_OF, @@ -24230,6 +25082,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -24257,6 +25110,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -24284,6 +25138,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -24311,6 +25166,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -24337,6 +25193,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -24363,6 +25220,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -24389,6 +25247,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -24417,6 +25276,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -24445,6 +25305,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -24473,6 +25334,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -24500,6 +25362,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -24527,6 +25390,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -24554,6 +25418,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -24581,6 +25446,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -24608,6 +25474,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -24635,6 +25502,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -24662,6 +25530,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -24689,6 +25558,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -24716,6 +25586,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -24743,6 +25614,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -24770,6 +25642,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -24797,6 +25670,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -24824,6 +25698,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -24850,6 +25725,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, @@ -24880,6 +25756,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, @@ -24909,6 +25786,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, @@ -24938,6 +25816,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -24967,6 +25846,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -24995,6 +25875,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -25023,6 +25904,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, @@ -25053,6 +25935,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, @@ -25082,6 +25965,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE|ND_SIMD_EXC_ZE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -25109,6 +25993,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE|ND_SIMD_EXC_ZE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -25136,6 +26021,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE|ND_SIMD_EXC_ZE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -25163,6 +26049,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE|ND_SIMD_EXC_ZE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -25190,6 +26077,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -25218,6 +26106,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -25246,6 +26135,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -25272,6 +26162,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -25301,6 +26192,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -25330,6 +26222,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -25359,6 +26252,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -25390,6 +26284,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -25420,6 +26315,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -25446,6 +26342,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -25472,6 +26369,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_ENQCMD, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_ZF, .SetFlags = 0, @@ -25500,6 +26398,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_ZF, .SetFlags = 0, @@ -25528,6 +26427,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_ENQCMD, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_ZF, .SetFlags = 0, @@ -25556,6 +26456,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_ZF, .SetFlags = 0, @@ -25584,6 +26485,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -25616,6 +26518,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -25646,6 +26549,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -25680,6 +26584,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -25708,6 +26613,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -25736,6 +26642,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -25763,6 +26670,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -25789,6 +26697,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xf3, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -25815,6 +26724,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -25843,6 +26753,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -25871,6 +26782,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -25899,6 +26811,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -25927,6 +26840,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -25955,6 +26869,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -25983,6 +26898,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -26011,6 +26927,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xf3, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -26037,6 +26954,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -26066,6 +26984,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -26095,6 +27014,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -26124,6 +27044,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -26153,6 +27074,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -26182,6 +27104,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -26211,6 +27134,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_PF, .ModifiedFlags = 0, .SetFlags = 0, @@ -26240,6 +27164,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_PF, .ModifiedFlags = 0, .SetFlags = 0, @@ -26269,6 +27194,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xa2, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -26297,6 +27223,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xa2, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -26325,6 +27252,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xa2, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -26353,6 +27281,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xa2, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -26381,6 +27310,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xa2, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF, .SetFlags = 0, @@ -26410,6 +27340,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xa2, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF, .SetFlags = 0, @@ -26439,6 +27370,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xa2, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -26467,6 +27399,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xa2, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -26495,6 +27428,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xa2, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -26523,6 +27457,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xa2, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -26551,6 +27486,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xa2, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -26579,6 +27515,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xa2, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -26605,6 +27542,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xeb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -26631,6 +27569,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xf3, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -26657,6 +27596,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -26685,6 +27625,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -26713,6 +27654,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -26741,6 +27683,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -26769,6 +27712,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -26797,6 +27741,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -26825,6 +27770,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -26853,6 +27799,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -26881,6 +27828,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -26909,6 +27857,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -26937,6 +27886,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -26963,6 +27913,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xff, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -26990,6 +27941,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xff, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -27017,6 +27969,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -27045,6 +27998,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -27073,6 +28027,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xaa, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -27101,6 +28056,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xaa, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -27129,6 +28085,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xaa, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -27157,6 +28114,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xaa, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -27185,6 +28143,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -27213,6 +28172,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -27241,6 +28201,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -27269,6 +28230,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -27297,6 +28259,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -27325,6 +28288,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -27353,6 +28317,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -27381,6 +28346,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -27409,6 +28375,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -27437,6 +28404,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xf3, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -27463,6 +28431,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -27491,6 +28460,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -27519,6 +28489,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -27547,6 +28518,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -27575,6 +28547,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -27603,6 +28576,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xf3, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -27631,6 +28605,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xf3, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -27659,6 +28634,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xf3, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -27687,6 +28663,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -27715,6 +28692,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -27743,6 +28721,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -27771,6 +28750,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -27799,6 +28779,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -27827,6 +28808,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -27855,6 +28837,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -27883,6 +28866,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -27911,6 +28895,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -27937,6 +28922,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xff, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -27965,6 +28951,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xaa, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -27992,6 +28979,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -28018,6 +29006,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -28044,6 +29033,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -28070,6 +29060,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -28096,6 +29087,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -28122,6 +29114,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -28148,6 +29141,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -28176,6 +29170,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -28204,6 +29199,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -28232,6 +29228,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -28260,6 +29257,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -28288,6 +29286,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xff, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -28314,6 +29313,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xff, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -28340,6 +29340,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0x00, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -28368,6 +29369,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xff, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -28394,6 +29396,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xff, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -28420,6 +29423,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xff, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -28446,6 +29450,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0x00, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -28475,6 +29480,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xff, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -28503,6 +29509,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xff, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -28530,6 +29537,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xff, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -28557,6 +29565,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xff, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -28584,6 +29593,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -28610,6 +29620,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xaa, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -28636,6 +29647,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xaa, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -28662,6 +29674,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xeb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -28688,6 +29701,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xff, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -28714,6 +29728,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -28740,6 +29755,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xaa, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -28767,6 +29783,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -28793,6 +29810,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xeb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -28819,6 +29837,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xeb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -28845,6 +29864,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -28871,6 +29891,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -28899,6 +29920,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -28927,6 +29949,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -28955,6 +29978,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xff, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -28981,6 +30005,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -29009,6 +30034,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -29037,6 +30063,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -29065,6 +30092,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -29093,6 +30121,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -29121,6 +30150,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -29149,6 +30179,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xff, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -29177,6 +30208,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xff, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -29203,6 +30235,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -29231,6 +30264,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -29259,6 +30293,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -29287,6 +30322,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -29315,6 +30351,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -29343,6 +30380,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -29371,6 +30409,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -29399,6 +30438,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -29427,6 +30467,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -29455,6 +30496,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -29483,6 +30525,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xa2, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -29509,6 +30552,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xaa, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -29537,6 +30581,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xa2, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF, .SetFlags = 0, @@ -29566,6 +30611,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xa2, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF, .SetFlags = 0, @@ -29595,6 +30641,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xaa, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -29623,6 +30670,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xaa, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -29649,6 +30697,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xaa, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -29675,6 +30724,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xf3, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -29703,6 +30753,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xf3, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -29731,6 +30782,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xf3, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -29759,6 +30811,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -29786,6 +30839,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -29813,6 +30867,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -29840,6 +30895,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -29867,6 +30923,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -29893,6 +30950,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -29919,6 +30977,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xfb, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -29945,6 +31004,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -29972,6 +31032,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -30000,6 +31061,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -30028,6 +31090,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -30055,6 +31118,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -30082,6 +31146,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -30109,6 +31174,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -30135,6 +31201,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -30162,6 +31229,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -30189,6 +31257,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -30216,6 +31285,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, @@ -30246,6 +31316,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, @@ -30275,6 +31346,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, @@ -30304,6 +31376,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -30333,6 +31406,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -30361,6 +31435,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -30389,6 +31464,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, @@ -30419,6 +31495,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, @@ -30448,6 +31525,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF, @@ -30477,6 +31555,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF, @@ -30506,6 +31585,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF, @@ -30535,6 +31615,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF, @@ -30564,6 +31645,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -30592,6 +31674,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -30620,6 +31703,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -30648,6 +31732,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -30676,6 +31761,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF, @@ -30705,6 +31791,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF, @@ -30734,6 +31821,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF, @@ -30763,6 +31851,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF, @@ -30792,6 +31881,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -30820,6 +31910,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -30848,6 +31939,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -30876,6 +31968,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -30904,6 +31997,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF, @@ -30932,6 +32026,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF, @@ -30960,6 +32055,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF, @@ -30989,6 +32085,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF, @@ -31018,6 +32115,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF, @@ -31047,6 +32145,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -31074,6 +32173,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -31101,6 +32201,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -31129,6 +32230,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -31157,6 +32259,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -31185,6 +32288,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF, @@ -31214,6 +32318,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF, @@ -31243,6 +32348,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -31271,6 +32377,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -31299,6 +32406,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF, @@ -31328,6 +32436,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF, @@ -31357,6 +32466,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF, @@ -31386,6 +32496,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF, @@ -31415,6 +32526,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF, @@ -31443,6 +32555,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_IOPL|NDR_RFLAG_VM, .ModifiedFlags = 0, .SetFlags = 0, @@ -31471,6 +32584,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_IOPL|NDR_RFLAG_VM, .ModifiedFlags = 0, .SetFlags = 0, @@ -31499,6 +32613,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_IOPL|NDR_RFLAG_VM, .ModifiedFlags = 0, .SetFlags = 0, @@ -31527,6 +32642,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_IOPL|NDR_RFLAG_VM, .ModifiedFlags = 0, .SetFlags = 0, @@ -31555,6 +32671,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -31582,6 +32699,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -31609,6 +32727,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -31636,6 +32755,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -31662,6 +32782,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -31688,6 +32809,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -31714,6 +32836,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -31742,6 +32865,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -31770,6 +32894,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -31798,6 +32923,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -31825,6 +32951,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -31852,6 +32979,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -31879,6 +33007,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -31906,6 +33035,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -31933,6 +33063,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -31960,6 +33091,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -31987,6 +33119,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -32014,6 +33147,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -32041,6 +33175,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -32068,6 +33203,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -32095,6 +33231,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -32122,6 +33259,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -32149,6 +33287,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -32177,6 +33316,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -32205,6 +33345,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_DF|NDR_RFLAG_IOPL|NDR_RFLAG_VM, .ModifiedFlags = 0, .SetFlags = 0, @@ -32234,6 +33375,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_DF|NDR_RFLAG_IOPL|NDR_RFLAG_VM, .ModifiedFlags = 0, .SetFlags = 0, @@ -32264,6 +33406,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_DF|NDR_RFLAG_IOPL|NDR_RFLAG_VM, .ModifiedFlags = 0, .SetFlags = 0, @@ -32293,6 +33436,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_DF|NDR_RFLAG_IOPL|NDR_RFLAG_VM, .ModifiedFlags = 0, .SetFlags = 0, @@ -32323,6 +33467,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -32351,6 +33496,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -32379,6 +33525,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -32408,6 +33555,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -32435,6 +33583,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_DF|NDR_RFLAG_IOPL|NDR_RFLAG_VM, .ModifiedFlags = 0, .SetFlags = 0, @@ -32464,6 +33613,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_DF|NDR_RFLAG_IOPL|NDR_RFLAG_VM, .ModifiedFlags = 0, .SetFlags = 0, @@ -32494,6 +33644,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_VM, .ModifiedFlags = 0|NDR_RFLAG_VM|NDR_RFLAG_IF|NDR_RFLAG_NT|NDR_RFLAG_AC|NDR_RFLAG_RF|NDR_RFLAG_TF, .SetFlags = 0, @@ -32525,6 +33676,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_VM, .ModifiedFlags = 0|NDR_RFLAG_VM|NDR_RFLAG_IF|NDR_RFLAG_NT|NDR_RFLAG_AC|NDR_RFLAG_RF|NDR_RFLAG_TF, .SetFlags = 0, @@ -32554,6 +33706,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_VM, .ModifiedFlags = 0|NDR_RFLAG_VM|NDR_RFLAG_IF|NDR_RFLAG_NT|NDR_RFLAG_AC|NDR_RFLAG_RF|NDR_RFLAG_TF, .SetFlags = 0, @@ -32584,6 +33737,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_VM, .ModifiedFlags = 0|NDR_RFLAG_VM|NDR_RFLAG_IF|NDR_RFLAG_NT|NDR_RFLAG_AC|NDR_RFLAG_RF|NDR_RFLAG_TF, .SetFlags = 0, @@ -32614,6 +33768,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -32640,6 +33795,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INVEPT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .SetFlags = 0, @@ -32668,6 +33824,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .SetFlags = 0, @@ -32696,6 +33853,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -32722,6 +33880,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -32749,6 +33908,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -32777,6 +33937,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INVPCID, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -32804,6 +33965,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -32831,6 +33993,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INVVPID, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .SetFlags = 0, @@ -32859,6 +34022,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .SetFlags = 0, @@ -32887,6 +34051,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -32917,6 +34082,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -32947,6 +34113,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -32977,6 +34144,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -33005,6 +34173,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -33033,6 +34202,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -33061,6 +34231,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -33089,6 +34260,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -33117,6 +34289,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -33145,6 +34318,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -33173,6 +34347,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -33201,6 +34376,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -33229,6 +34405,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -33257,6 +34434,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -33284,6 +34462,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -33311,6 +34490,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -33338,6 +34518,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -33365,6 +34546,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -33392,6 +34574,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -33419,6 +34602,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -33447,6 +34631,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -33475,6 +34660,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -33503,6 +34689,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -33531,6 +34718,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -33559,6 +34747,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -33587,6 +34776,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -33615,6 +34805,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -33643,6 +34834,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -33671,6 +34863,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -33699,6 +34892,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -33727,6 +34921,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -33755,6 +34950,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_PF, .ModifiedFlags = 0, .SetFlags = 0, @@ -33783,6 +34979,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_PF, .ModifiedFlags = 0, .SetFlags = 0, @@ -33811,6 +35008,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -33839,6 +35037,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -33867,6 +35066,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -33895,6 +35095,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -33923,6 +35124,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -33951,6 +35153,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -33979,6 +35182,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_PF, .ModifiedFlags = 0, .SetFlags = 0, @@ -34007,6 +35211,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_PF, .ModifiedFlags = 0, .SetFlags = 0, @@ -34035,6 +35240,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -34063,6 +35269,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -34091,6 +35298,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -34119,6 +35327,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -34147,6 +35356,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -34175,6 +35385,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -34203,6 +35414,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -34231,6 +35443,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -34259,6 +35472,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -34287,6 +35501,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -34315,6 +35530,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -34343,6 +35559,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -34371,6 +35588,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -34399,6 +35617,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -34427,6 +35646,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -34455,6 +35675,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -34483,6 +35704,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -34511,6 +35733,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -34538,6 +35761,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -34565,6 +35789,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_KMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -34592,6 +35817,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_KMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -34619,6 +35845,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_KMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -34646,6 +35873,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_KMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -34673,6 +35901,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_KMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -34700,6 +35929,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K21, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -34727,6 +35957,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -34754,6 +35985,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K21, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -34781,6 +36013,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -34808,6 +36041,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -34835,6 +36069,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_KMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -34862,6 +36097,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_KMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -34889,6 +36125,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_KMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -34916,6 +36153,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_KMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -34943,6 +36181,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_KMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -34970,6 +36209,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K21, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -34997,6 +36237,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -35024,6 +36265,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K21, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -35051,6 +36293,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -35078,6 +36321,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -35105,6 +36349,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_KMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -35132,6 +36377,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_KMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -35159,6 +36405,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_KMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -35186,6 +36433,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_KMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -35213,6 +36461,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_KMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -35240,6 +36489,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K21, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -35267,6 +36517,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -35294,6 +36545,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K21, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -35321,6 +36573,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -35348,6 +36601,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -35375,6 +36629,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_KMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -35402,6 +36657,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_KMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -35429,6 +36685,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_KMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -35456,6 +36713,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_KMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -35483,6 +36741,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_KMOV, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -35510,6 +36769,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K21, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -35537,6 +36797,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -35564,6 +36825,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K21, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -35591,6 +36853,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -35618,6 +36881,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -35645,6 +36909,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -35672,6 +36937,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -35699,6 +36965,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -35726,6 +36993,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -35753,6 +37021,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -35781,6 +37050,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -35809,6 +37079,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -35837,6 +37108,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .SetFlags = 0, @@ -35865,6 +37137,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .SetFlags = 0, @@ -35893,6 +37166,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .SetFlags = 0, @@ -35921,6 +37195,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .SetFlags = 0, @@ -35949,6 +37224,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -35977,6 +37253,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -36005,6 +37282,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -36033,6 +37311,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -36061,6 +37340,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -36089,6 +37369,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -36117,6 +37398,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -36145,6 +37427,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -36173,6 +37456,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -36201,6 +37485,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -36228,6 +37513,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -36255,6 +37541,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -36282,6 +37569,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -36309,6 +37597,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -36337,6 +37626,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -36365,6 +37655,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -36393,6 +37684,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -36421,6 +37713,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -36449,6 +37742,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -36477,6 +37771,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -36505,6 +37800,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -36533,6 +37829,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -36561,6 +37858,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -36589,6 +37887,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_K20, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -36617,6 +37916,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -36644,6 +37944,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_ZF, .SetFlags = 0, @@ -36672,6 +37973,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_ZF, .SetFlags = 0, @@ -36700,6 +38002,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -36727,6 +38030,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -36754,6 +38058,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -36782,6 +38087,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_AMX_EVEX_E1, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -36808,6 +38114,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_AMX_E1, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -36834,6 +38141,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -36861,6 +38169,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -36890,6 +38199,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -36918,6 +38228,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -36944,6 +38255,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -36972,6 +38284,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -36999,6 +38312,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -37027,6 +38341,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -37054,6 +38369,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -37081,6 +38397,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -37108,6 +38425,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -37135,6 +38453,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -37161,6 +38480,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -37188,6 +38508,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_ZF, .SetFlags = 0, @@ -37218,6 +38539,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_DF, .ModifiedFlags = 0, .SetFlags = 0, @@ -37247,6 +38569,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_DF, .ModifiedFlags = 0, .SetFlags = 0, @@ -37277,6 +38600,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_DF, .ModifiedFlags = 0, .SetFlags = 0, @@ -37306,6 +38630,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_DF, .ModifiedFlags = 0, .SetFlags = 0, @@ -37336,6 +38661,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_DF, .ModifiedFlags = 0, .SetFlags = 0, @@ -37365,6 +38691,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_DF, .ModifiedFlags = 0, .SetFlags = 0, @@ -37395,6 +38722,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_DF, .ModifiedFlags = 0, .SetFlags = 0, @@ -37424,6 +38752,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_DF, .ModifiedFlags = 0, .SetFlags = 0, @@ -37454,6 +38783,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -37483,6 +38813,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -37512,6 +38843,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -37541,6 +38873,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_ZF, .SetFlags = 0, @@ -37569,6 +38902,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_ZF, .SetFlags = 0, @@ -37597,6 +38931,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -37625,6 +38960,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -37652,6 +38988,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -37680,6 +39017,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -37708,6 +39046,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .SetFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_SF|NDR_RFLAG_OF, @@ -37736,6 +39075,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .SetFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_SF|NDR_RFLAG_OF, @@ -37764,6 +39104,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -37791,6 +39132,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -37818,6 +39160,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .SetFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_SF|NDR_RFLAG_OF, @@ -37846,6 +39189,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -37874,6 +39218,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -37902,6 +39247,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -37929,6 +39275,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -37956,6 +39303,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -37983,6 +39331,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -38010,6 +39359,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF, .SetFlags = 0, @@ -38036,6 +39386,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -38062,6 +39413,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -38089,6 +39441,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -38116,6 +39469,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -38143,6 +39497,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -38170,6 +39525,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -38198,6 +39554,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -38226,6 +39583,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -38253,6 +39611,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -38280,6 +39639,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -38307,6 +39667,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -38334,6 +39695,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -38361,6 +39723,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -38388,6 +39751,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -38415,6 +39779,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -38442,6 +39807,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -38469,6 +39835,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -38496,6 +39863,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -38523,6 +39891,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -38550,6 +39919,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -38577,6 +39947,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -38604,6 +39975,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -38631,6 +40003,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -38658,6 +40031,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -38685,6 +40059,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -38712,6 +40087,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -38739,6 +40115,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -38766,6 +40143,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -38793,6 +40171,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -38820,6 +40199,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -38847,6 +40227,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -38874,6 +40255,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -38901,6 +40283,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -38928,6 +40311,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -38955,6 +40339,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -38982,6 +40367,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -39009,6 +40395,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -39036,6 +40423,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -39063,6 +40451,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -39090,6 +40479,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -39117,6 +40507,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -39144,6 +40535,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -39171,6 +40563,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -39198,6 +40591,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_1, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -39225,6 +40619,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_1, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -39252,6 +40647,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_1, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -39279,6 +40675,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_1, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -39306,6 +40703,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -39333,6 +40731,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -39360,6 +40759,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -39387,6 +40787,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -39414,6 +40815,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -39441,6 +40843,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -39468,6 +40871,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -39495,6 +40899,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -39522,6 +40927,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -39549,6 +40955,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -39576,6 +40983,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -39603,6 +41011,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -39630,6 +41039,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -39657,6 +41067,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -39684,6 +41095,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -39711,6 +41123,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -39738,6 +41151,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -39765,6 +41179,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -39792,6 +41207,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_1, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -39819,6 +41235,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_1, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -39846,6 +41263,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -39873,6 +41291,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -39900,6 +41319,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -39927,6 +41347,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -39954,6 +41375,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -39981,6 +41403,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -40008,6 +41431,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -40035,6 +41459,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_7, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -40062,6 +41487,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -40089,6 +41515,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -40116,6 +41543,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -40143,6 +41571,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_7, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -40170,6 +41599,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_7, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -40197,6 +41627,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_1, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -40224,6 +41655,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_1, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -40251,6 +41683,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -40278,6 +41711,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_1, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -40305,6 +41739,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_1, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -40332,6 +41767,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -40359,6 +41795,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -40386,6 +41823,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -40413,6 +41851,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -40440,6 +41879,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -40467,6 +41907,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -40494,6 +41935,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -40521,6 +41963,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -40548,6 +41991,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -40575,6 +42019,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -40602,6 +42047,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -40629,6 +42075,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -40642,12 +42089,68 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1447 Instruction:"MOVSB Yb,Xb" Encoding:"0xA4"/"" + // Pos:1447 Instruction:"MOVRS Gb,Mb" Encoding:"0x0F 0x38 0x8A /r:mem"/"RM" + { + .Instruction = ND_INS_MOVRS, + .Category = ND_CAT_DATAXFER, + .IsaSet = ND_SET_MOVRS, + .Mnemonic = 520, + .ValidPrefixes = 0, + .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, + .ValidDecorators = 0, + .OpsCount = ND_OPS_CNT(2, 0), + .TupleType = 0, + .ExcType = 0, + .FpuFlags = 0, + .EvexMode = 0, + .SimdExc = 0, + .TestedFlags = 0, + .ModifiedFlags = 0, + .SetFlags = 0, + .ClearedFlags = 0, + .Attributes = ND_FLAG_NOREP|ND_FLAG_MODRM|ND_FLAG_O64, + .CpuidFlag = ND_CFF_MOVRS, + .Operands = + { + OP(ND_OPT_G, ND_OPS_b, 0, ND_OPA_W, 0, 0), + OP(ND_OPT_M, ND_OPS_b, 0, ND_OPA_R, 0, 0), + }, + }, + + // Pos:1448 Instruction:"MOVRS Gv,Mv" Encoding:"0x0F 0x38 0x8B /r:mem"/"RM" + { + .Instruction = ND_INS_MOVRS, + .Category = ND_CAT_DATAXFER, + .IsaSet = ND_SET_MOVRS, + .Mnemonic = 520, + .ValidPrefixes = 0, + .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, + .ValidDecorators = 0, + .OpsCount = ND_OPS_CNT(2, 0), + .TupleType = 0, + .ExcType = 0, + .FpuFlags = 0, + .EvexMode = 0, + .SimdExc = 0, + .TestedFlags = 0, + .ModifiedFlags = 0, + .SetFlags = 0, + .ClearedFlags = 0, + .Attributes = ND_FLAG_NOREP|ND_FLAG_MODRM|ND_FLAG_O64, + .CpuidFlag = ND_CFF_MOVRS, + .Operands = + { + OP(ND_OPT_G, ND_OPS_v, 0, ND_OPA_W, 0, 0), + OP(ND_OPT_M, ND_OPS_v, 0, ND_OPA_R, 0, 0), + }, + }, + + // Pos:1449 Instruction:"MOVSB Yb,Xb" Encoding:"0xA4"/"" { .Instruction = ND_INS_MOVS, .Category = ND_CAT_STRINGOP, .IsaSet = ND_SET_I86, - .Mnemonic = 520, + .Mnemonic = 521, .ValidPrefixes = ND_PREF_REP, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -40656,6 +42159,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_DF, .ModifiedFlags = 0, .SetFlags = 0, @@ -40672,12 +42176,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1448 Instruction:"MOVSB Yb,Xb" Encoding:"rep 0xA4"/"" + // Pos:1450 Instruction:"MOVSB Yb,Xb" Encoding:"rep 0xA4"/"" { .Instruction = ND_INS_MOVS, .Category = ND_CAT_STRINGOP, .IsaSet = ND_SET_I86, - .Mnemonic = 520, + .Mnemonic = 521, .ValidPrefixes = ND_PREF_REP, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -40686,6 +42190,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_DF, .ModifiedFlags = 0, .SetFlags = 0, @@ -40703,12 +42208,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1449 Instruction:"MOVSD Yv,Xv" Encoding:"ds32 0xA5"/"" + // Pos:1451 Instruction:"MOVSD Yv,Xv" Encoding:"ds32 0xA5"/"" { .Instruction = ND_INS_MOVS, .Category = ND_CAT_STRINGOP, .IsaSet = ND_SET_I86, - .Mnemonic = 521, + .Mnemonic = 522, .ValidPrefixes = ND_PREF_REP, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -40717,6 +42222,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_DF, .ModifiedFlags = 0, .SetFlags = 0, @@ -40733,12 +42239,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1450 Instruction:"MOVSD Yv,Xv" Encoding:"rep ds32 0xA5"/"" + // Pos:1452 Instruction:"MOVSD Yv,Xv" Encoding:"rep ds32 0xA5"/"" { .Instruction = ND_INS_MOVS, .Category = ND_CAT_STRINGOP, .IsaSet = ND_SET_I86, - .Mnemonic = 521, + .Mnemonic = 522, .ValidPrefixes = ND_PREF_REP, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -40747,6 +42253,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_DF, .ModifiedFlags = 0, .SetFlags = 0, @@ -40764,12 +42271,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1451 Instruction:"MOVSD Vsd,Wsd" Encoding:"0xF2 0x0F 0x10 /r"/"RM" + // Pos:1453 Instruction:"MOVSD Vsd,Wsd" Encoding:"0xF2 0x0F 0x10 /r"/"RM" { .Instruction = ND_INS_MOVSD, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_SSE2, - .Mnemonic = 521, + .Mnemonic = 522, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -40778,6 +42285,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -40791,12 +42299,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1452 Instruction:"MOVSD Wsd,Vsd" Encoding:"0xF2 0x0F 0x11 /r"/"MR" + // Pos:1454 Instruction:"MOVSD Wsd,Vsd" Encoding:"0xF2 0x0F 0x11 /r"/"MR" { .Instruction = ND_INS_MOVSD, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_SSE2, - .Mnemonic = 521, + .Mnemonic = 522, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -40805,6 +42313,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -40818,12 +42327,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1453 Instruction:"MOVSHDUP Vx,Wx" Encoding:"0xF3 0x0F 0x16 /r"/"RM" + // Pos:1455 Instruction:"MOVSHDUP Vx,Wx" Encoding:"0xF3 0x0F 0x16 /r"/"RM" { .Instruction = ND_INS_MOVSHDUP, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_SSE3, - .Mnemonic = 522, + .Mnemonic = 523, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -40832,6 +42341,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -40845,12 +42355,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1454 Instruction:"MOVSLDUP Vx,Wx" Encoding:"0xF3 0x0F 0x12 /r"/"RM" + // Pos:1456 Instruction:"MOVSLDUP Vx,Wx" Encoding:"0xF3 0x0F 0x12 /r"/"RM" { .Instruction = ND_INS_MOVSLDUP, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_SSE3, - .Mnemonic = 523, + .Mnemonic = 524, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -40859,6 +42369,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -40872,12 +42383,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1455 Instruction:"MOVSQ Yv,Xv" Encoding:"ds64 0xA5"/"" + // Pos:1457 Instruction:"MOVSQ Yv,Xv" Encoding:"ds64 0xA5"/"" { .Instruction = ND_INS_MOVS, .Category = ND_CAT_STRINGOP, .IsaSet = ND_SET_I86, - .Mnemonic = 524, + .Mnemonic = 525, .ValidPrefixes = ND_PREF_REP, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -40886,6 +42397,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_DF, .ModifiedFlags = 0, .SetFlags = 0, @@ -40902,12 +42414,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1456 Instruction:"MOVSQ Yv,Xv" Encoding:"rep ds64 0xA5"/"" + // Pos:1458 Instruction:"MOVSQ Yv,Xv" Encoding:"rep ds64 0xA5"/"" { .Instruction = ND_INS_MOVS, .Category = ND_CAT_STRINGOP, .IsaSet = ND_SET_I86, - .Mnemonic = 524, + .Mnemonic = 525, .ValidPrefixes = ND_PREF_REP, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -40916,6 +42428,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_DF, .ModifiedFlags = 0, .SetFlags = 0, @@ -40933,12 +42446,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1457 Instruction:"MOVSS Vss,Wss" Encoding:"0xF3 0x0F 0x10 /r"/"RM" + // Pos:1459 Instruction:"MOVSS Vss,Wss" Encoding:"0xF3 0x0F 0x10 /r"/"RM" { .Instruction = ND_INS_MOVSS, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_SSE, - .Mnemonic = 525, + .Mnemonic = 526, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -40947,6 +42460,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -40960,12 +42474,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1458 Instruction:"MOVSS Wss,Vss" Encoding:"0xF3 0x0F 0x11 /r"/"MR" + // Pos:1460 Instruction:"MOVSS Wss,Vss" Encoding:"0xF3 0x0F 0x11 /r"/"MR" { .Instruction = ND_INS_MOVSS, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_SSE, - .Mnemonic = 525, + .Mnemonic = 526, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -40974,6 +42488,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -40987,12 +42502,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1459 Instruction:"MOVSW Yv,Xv" Encoding:"ds16 0xA5"/"" + // Pos:1461 Instruction:"MOVSW Yv,Xv" Encoding:"ds16 0xA5"/"" { .Instruction = ND_INS_MOVS, .Category = ND_CAT_STRINGOP, .IsaSet = ND_SET_I86, - .Mnemonic = 526, + .Mnemonic = 527, .ValidPrefixes = ND_PREF_REP, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -41001,6 +42516,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_DF, .ModifiedFlags = 0, .SetFlags = 0, @@ -41017,12 +42533,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1460 Instruction:"MOVSW Yv,Xv" Encoding:"rep ds16 0xA5"/"" + // Pos:1462 Instruction:"MOVSW Yv,Xv" Encoding:"rep ds16 0xA5"/"" { .Instruction = ND_INS_MOVS, .Category = ND_CAT_STRINGOP, .IsaSet = ND_SET_I86, - .Mnemonic = 526, + .Mnemonic = 527, .ValidPrefixes = ND_PREF_REP, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -41031,6 +42547,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_DF, .ModifiedFlags = 0, .SetFlags = 0, @@ -41048,12 +42565,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1461 Instruction:"MOVSX Gv,Eb" Encoding:"0x0F 0xBE /r"/"RM" + // Pos:1463 Instruction:"MOVSX Gv,Eb" Encoding:"0x0F 0xBE /r"/"RM" { .Instruction = ND_INS_MOVSX, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_I386, - .Mnemonic = 527, + .Mnemonic = 528, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -41062,6 +42579,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -41075,12 +42593,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1462 Instruction:"MOVSX Gv,Ew" Encoding:"0x0F 0xBF /r"/"RM" + // Pos:1464 Instruction:"MOVSX Gv,Ew" Encoding:"0x0F 0xBF /r"/"RM" { .Instruction = ND_INS_MOVSX, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_I386, - .Mnemonic = 527, + .Mnemonic = 528, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -41089,6 +42607,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -41102,12 +42621,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1463 Instruction:"MOVSXD Gv,Ez" Encoding:"mo64 0x63 /r"/"RM" + // Pos:1465 Instruction:"MOVSXD Gv,Ez" Encoding:"mo64 0x63 /r"/"RM" { .Instruction = ND_INS_MOVSXD, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_LONGMODE, - .Mnemonic = 528, + .Mnemonic = 529, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -41116,6 +42635,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -41129,12 +42649,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1464 Instruction:"MOVUPD Vpd,Wpd" Encoding:"0x66 0x0F 0x10 /r"/"RM" + // Pos:1466 Instruction:"MOVUPD Vpd,Wpd" Encoding:"0x66 0x0F 0x10 /r"/"RM" { .Instruction = ND_INS_MOVUPD, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_SSE2, - .Mnemonic = 529, + .Mnemonic = 530, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -41143,6 +42663,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -41156,12 +42677,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1465 Instruction:"MOVUPD Wpd,Vpd" Encoding:"0x66 0x0F 0x11 /r"/"MR" + // Pos:1467 Instruction:"MOVUPD Wpd,Vpd" Encoding:"0x66 0x0F 0x11 /r"/"MR" { .Instruction = ND_INS_MOVUPD, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_SSE2, - .Mnemonic = 529, + .Mnemonic = 530, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -41170,6 +42691,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -41183,12 +42705,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1466 Instruction:"MOVUPS Vps,Wps" Encoding:"NP 0x0F 0x10 /r"/"RM" + // Pos:1468 Instruction:"MOVUPS Vps,Wps" Encoding:"NP 0x0F 0x10 /r"/"RM" { .Instruction = ND_INS_MOVUPS, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_SSE, - .Mnemonic = 530, + .Mnemonic = 531, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -41197,6 +42719,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -41210,12 +42733,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1467 Instruction:"MOVUPS Wps,Vps" Encoding:"NP 0x0F 0x11 /r"/"MR" + // Pos:1469 Instruction:"MOVUPS Wps,Vps" Encoding:"NP 0x0F 0x11 /r"/"MR" { .Instruction = ND_INS_MOVUPS, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_SSE, - .Mnemonic = 530, + .Mnemonic = 531, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -41224,6 +42747,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -41237,12 +42761,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1468 Instruction:"MOVZX Gv,Eb" Encoding:"0x0F 0xB6 /r"/"RM" + // Pos:1470 Instruction:"MOVZX Gv,Eb" Encoding:"0x0F 0xB6 /r"/"RM" { .Instruction = ND_INS_MOVZX, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_I386, - .Mnemonic = 531, + .Mnemonic = 532, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -41251,6 +42775,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -41264,12 +42789,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1469 Instruction:"MOVZX Gv,Ew" Encoding:"0x0F 0xB7 /r"/"RM" + // Pos:1471 Instruction:"MOVZX Gv,Ew" Encoding:"0x0F 0xB7 /r"/"RM" { .Instruction = ND_INS_MOVZX, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_I386, - .Mnemonic = 531, + .Mnemonic = 532, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -41278,6 +42803,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -41291,12 +42817,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1470 Instruction:"MPSADBW Vdq,Wdq,Ib" Encoding:"0x66 0x0F 0x3A 0x42 /r ib"/"RMI" + // Pos:1472 Instruction:"MPSADBW Vdq,Wdq,Ib" Encoding:"0x66 0x0F 0x3A 0x42 /r ib"/"RMI" { .Instruction = ND_INS_MPSADBW, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE4, - .Mnemonic = 532, + .Mnemonic = 533, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -41305,6 +42831,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -41319,12 +42846,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1471 Instruction:"MUL Eb" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xF6 /4"/"M" + // Pos:1473 Instruction:"MUL Eb" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xF6 /4"/"M" { .Instruction = ND_INS_MUL, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 533, + .Mnemonic = 534, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -41333,6 +42860,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF, @@ -41348,12 +42876,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1472 Instruction:"MUL Ev" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xF7 /4"/"M" + // Pos:1474 Instruction:"MUL Ev" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xF7 /4"/"M" { .Instruction = ND_INS_MUL, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 533, + .Mnemonic = 534, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -41362,6 +42890,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF, @@ -41377,12 +42906,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1473 Instruction:"MUL Ev" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xF7 /4"/"M" + // Pos:1475 Instruction:"MUL Ev" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xF7 /4"/"M" { .Instruction = ND_INS_MUL, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 533, + .Mnemonic = 534, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -41391,6 +42920,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF, @@ -41406,12 +42936,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1474 Instruction:"MUL Eb" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xF6 /4"/"M" + // Pos:1476 Instruction:"MUL Eb" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xF6 /4"/"M" { .Instruction = ND_INS_MUL, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 533, + .Mnemonic = 534, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -41420,6 +42950,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -41434,12 +42965,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1475 Instruction:"MUL Ev" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xF7 /4"/"M" + // Pos:1477 Instruction:"MUL Ev" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xF7 /4"/"M" { .Instruction = ND_INS_MUL, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 533, + .Mnemonic = 534, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -41448,6 +42979,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -41462,12 +42994,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1476 Instruction:"MUL Ev" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xF7 /4"/"M" + // Pos:1478 Instruction:"MUL Ev" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xF7 /4"/"M" { .Instruction = ND_INS_MUL, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 533, + .Mnemonic = 534, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -41476,6 +43008,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -41490,12 +43023,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1477 Instruction:"MUL Eb" Encoding:"0xF6 /4"/"M" + // Pos:1479 Instruction:"MUL Eb" Encoding:"0xF6 /4"/"M" { .Instruction = ND_INS_MUL, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_I86, - .Mnemonic = 533, + .Mnemonic = 534, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -41504,6 +43037,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF, @@ -41519,12 +43053,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1478 Instruction:"MUL Ev" Encoding:"0xF7 /4"/"M" + // Pos:1480 Instruction:"MUL Ev" Encoding:"0xF7 /4"/"M" { .Instruction = ND_INS_MUL, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_I86, - .Mnemonic = 533, + .Mnemonic = 534, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -41533,6 +43067,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF, @@ -41548,12 +43083,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1479 Instruction:"MULPD Vpd,Wpd" Encoding:"0x66 0x0F 0x59 /r"/"RM" + // Pos:1481 Instruction:"MULPD Vpd,Wpd" Encoding:"0x66 0x0F 0x59 /r"/"RM" { .Instruction = ND_INS_MULPD, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 534, + .Mnemonic = 535, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -41562,6 +43097,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -41575,12 +43111,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1480 Instruction:"MULPS Vps,Wps" Encoding:"NP 0x0F 0x59 /r"/"RM" + // Pos:1482 Instruction:"MULPS Vps,Wps" Encoding:"NP 0x0F 0x59 /r"/"RM" { .Instruction = ND_INS_MULPS, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE, - .Mnemonic = 535, + .Mnemonic = 536, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -41589,6 +43125,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -41602,12 +43139,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1481 Instruction:"MULSD Vsd,Wsd" Encoding:"0xF2 0x0F 0x59 /r"/"RM" + // Pos:1483 Instruction:"MULSD Vsd,Wsd" Encoding:"0xF2 0x0F 0x59 /r"/"RM" { .Instruction = ND_INS_MULSD, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 536, + .Mnemonic = 537, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -41616,6 +43153,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -41629,12 +43167,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1482 Instruction:"MULSS Vss,Wss" Encoding:"0xF3 0x0F 0x59 /r"/"RM" + // Pos:1484 Instruction:"MULSS Vss,Wss" Encoding:"0xF3 0x0F 0x59 /r"/"RM" { .Instruction = ND_INS_MULSS, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE, - .Mnemonic = 537, + .Mnemonic = 538, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -41643,6 +43181,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -41656,12 +43195,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1483 Instruction:"MULX Gy,By,Ey" Encoding:"evex m:2 p:3 l:0 nf:0 0xF6 /r"/"RVM" + // Pos:1485 Instruction:"MULX Gy,By,Ey" Encoding:"evex m:2 p:3 l:0 nf:0 0xF6 /r"/"RVM" { .Instruction = ND_INS_MULX, .Category = ND_CAT_BMI2, .IsaSet = ND_SET_APX_F, - .Mnemonic = 538, + .Mnemonic = 539, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -41670,6 +43209,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_BMI, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -41685,12 +43225,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1484 Instruction:"MULX Gy,By,Ey" Encoding:"vex m:2 p:3 l:0 w:x 0xF6 /r"/"RVM" + // Pos:1486 Instruction:"MULX Gy,By,Ey" Encoding:"vex m:2 p:3 l:0 w:x 0xF6 /r"/"RVM" { .Instruction = ND_INS_MULX, .Category = ND_CAT_BMI2, .IsaSet = ND_SET_BMI2, - .Mnemonic = 538, + .Mnemonic = 539, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -41699,6 +43239,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_13, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -41714,12 +43255,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1485 Instruction:"MWAIT" Encoding:"NP 0x0F 0x01 /0xC9"/"" + // Pos:1487 Instruction:"MWAIT" Encoding:"NP 0x0F 0x01 /0xC9"/"" { .Instruction = ND_INS_MWAIT, .Category = ND_CAT_MISC, .IsaSet = ND_SET_SSE3, - .Mnemonic = 539, + .Mnemonic = 540, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_REAL|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -41728,6 +43269,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -41741,12 +43283,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1486 Instruction:"MWAITX" Encoding:"NP 0x0F 0x01 /0xFB"/"" + // Pos:1488 Instruction:"MWAITX" Encoding:"NP 0x0F 0x01 /0xFB"/"" { .Instruction = ND_INS_MWAITX, .Category = ND_CAT_SYSTEM, .IsaSet = ND_SET_MWAITT, - .Mnemonic = 540, + .Mnemonic = 541, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_REAL|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -41755,6 +43297,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -41769,12 +43312,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1487 Instruction:"NEG Eb" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xF6 /3"/"M" + // Pos:1489 Instruction:"NEG Eb" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xF6 /3"/"M" { .Instruction = ND_INS_NEG, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 541, + .Mnemonic = 542, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -41783,6 +43326,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -41796,12 +43340,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1488 Instruction:"NEG Ev" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xF7 /3"/"M" + // Pos:1490 Instruction:"NEG Ev" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xF7 /3"/"M" { .Instruction = ND_INS_NEG, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 541, + .Mnemonic = 542, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -41810,6 +43354,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -41823,12 +43368,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1489 Instruction:"NEG Ev" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xF7 /3"/"M" + // Pos:1491 Instruction:"NEG Ev" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xF7 /3"/"M" { .Instruction = ND_INS_NEG, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 541, + .Mnemonic = 542, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -41837,6 +43382,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -41850,12 +43396,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1490 Instruction:"NEG Eb" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xF6 /3"/"M" + // Pos:1492 Instruction:"NEG Eb" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xF6 /3"/"M" { .Instruction = ND_INS_NEG, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 541, + .Mnemonic = 542, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -41864,6 +43410,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -41876,12 +43423,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1491 Instruction:"NEG Ev" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xF7 /3"/"M" + // Pos:1493 Instruction:"NEG Ev" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xF7 /3"/"M" { .Instruction = ND_INS_NEG, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 541, + .Mnemonic = 542, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -41890,6 +43437,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -41902,12 +43450,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1492 Instruction:"NEG Ev" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xF7 /3"/"M" + // Pos:1494 Instruction:"NEG Ev" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xF7 /3"/"M" { .Instruction = ND_INS_NEG, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 541, + .Mnemonic = 542, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -41916,6 +43464,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -41928,12 +43477,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1493 Instruction:"NEG Bb,Eb" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xF6 /3"/"VM" + // Pos:1495 Instruction:"NEG Bb,Eb" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xF6 /3"/"VM" { .Instruction = ND_INS_NEG, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 541, + .Mnemonic = 542, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -41942,6 +43491,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -41956,12 +43506,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1494 Instruction:"NEG Bv,Ev" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xF7 /3"/"VM" + // Pos:1496 Instruction:"NEG Bv,Ev" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xF7 /3"/"VM" { .Instruction = ND_INS_NEG, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 541, + .Mnemonic = 542, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -41970,6 +43520,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -41984,12 +43535,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1495 Instruction:"NEG Bv,Ev" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0xF7 /3"/"VM" + // Pos:1497 Instruction:"NEG Bv,Ev" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0xF7 /3"/"VM" { .Instruction = ND_INS_NEG, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 541, + .Mnemonic = 542, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -41998,6 +43549,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -42012,12 +43564,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1496 Instruction:"NEG Bb,Eb" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xF6 /3"/"VM" + // Pos:1498 Instruction:"NEG Bb,Eb" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xF6 /3"/"VM" { .Instruction = ND_INS_NEG, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 541, + .Mnemonic = 542, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -42026,6 +43578,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -42039,12 +43592,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1497 Instruction:"NEG Bv,Ev" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xF7 /3"/"VM" + // Pos:1499 Instruction:"NEG Bv,Ev" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xF7 /3"/"VM" { .Instruction = ND_INS_NEG, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 541, + .Mnemonic = 542, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -42053,6 +43606,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -42066,12 +43620,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1498 Instruction:"NEG Bv,Ev" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0xF7 /3"/"VM" + // Pos:1500 Instruction:"NEG Bv,Ev" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0xF7 /3"/"VM" { .Instruction = ND_INS_NEG, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 541, + .Mnemonic = 542, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -42080,6 +43634,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -42093,12 +43648,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1499 Instruction:"NEG Eb" Encoding:"0xF6 /3"/"M" + // Pos:1501 Instruction:"NEG Eb" Encoding:"0xF6 /3"/"M" { .Instruction = ND_INS_NEG, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_I86, - .Mnemonic = 541, + .Mnemonic = 542, .ValidPrefixes = ND_PREF_HLE|ND_PREF_LOCK, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -42107,6 +43662,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -42120,12 +43676,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1500 Instruction:"NEG Ev" Encoding:"0xF7 /3"/"M" + // Pos:1502 Instruction:"NEG Ev" Encoding:"0xF7 /3"/"M" { .Instruction = ND_INS_NEG, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_I86, - .Mnemonic = 541, + .Mnemonic = 542, .ValidPrefixes = ND_PREF_HLE|ND_PREF_LOCK, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -42134,6 +43690,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -42147,12 +43704,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1501 Instruction:"NOP" Encoding:"0x90"/"" + // Pos:1503 Instruction:"NOP" Encoding:"0x90"/"" { .Instruction = ND_INS_NOP, .Category = ND_CAT_NOP, .IsaSet = ND_SET_I86, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -42161,6 +43718,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -42173,12 +43731,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1502 Instruction:"NOP Ev,Gv" Encoding:"0x0F 0x0D /0:reg"/"MR" + // Pos:1504 Instruction:"NOP Ev,Gv" Encoding:"0x0F 0x0D /0:reg"/"MR" { .Instruction = ND_INS_NOP, .Category = ND_CAT_NOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -42187,6 +43745,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -42200,12 +43759,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1503 Instruction:"NOP Ev,Gv" Encoding:"0x0F 0x0D /1:reg"/"MR" + // Pos:1505 Instruction:"NOP Ev,Gv" Encoding:"0x0F 0x0D /1:reg"/"MR" { .Instruction = ND_INS_NOP, .Category = ND_CAT_NOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -42214,6 +43773,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -42227,12 +43787,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1504 Instruction:"NOP Ev,Gv" Encoding:"0x0F 0x0D /2:reg"/"MR" + // Pos:1506 Instruction:"NOP Ev,Gv" Encoding:"0x0F 0x0D /2:reg"/"MR" { .Instruction = ND_INS_NOP, .Category = ND_CAT_NOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -42241,6 +43801,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -42254,12 +43815,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1505 Instruction:"NOP Ev,Gv" Encoding:"0x0F 0x0D /3:reg"/"MR" + // Pos:1507 Instruction:"NOP Ev,Gv" Encoding:"0x0F 0x0D /3:reg"/"MR" { .Instruction = ND_INS_NOP, .Category = ND_CAT_NOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -42268,6 +43829,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -42281,12 +43843,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1506 Instruction:"NOP Ev,Gv" Encoding:"0x0F 0x0D /4:reg"/"MR" + // Pos:1508 Instruction:"NOP Ev,Gv" Encoding:"0x0F 0x0D /4:reg"/"MR" { .Instruction = ND_INS_NOP, .Category = ND_CAT_NOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -42295,6 +43857,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -42308,12 +43871,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1507 Instruction:"NOP Ev,Gv" Encoding:"0x0F 0x0D /5:reg"/"MR" + // Pos:1509 Instruction:"NOP Ev,Gv" Encoding:"0x0F 0x0D /5:reg"/"MR" { .Instruction = ND_INS_NOP, .Category = ND_CAT_NOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -42322,6 +43885,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -42335,12 +43899,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1508 Instruction:"NOP Ev,Gv" Encoding:"0x0F 0x0D /6:reg"/"MR" + // Pos:1510 Instruction:"NOP Ev,Gv" Encoding:"0x0F 0x0D /6:reg"/"MR" { .Instruction = ND_INS_NOP, .Category = ND_CAT_NOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -42349,6 +43913,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -42362,12 +43927,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1509 Instruction:"NOP Ev,Gv" Encoding:"0x0F 0x0D /7:reg"/"MR" + // Pos:1511 Instruction:"NOP Ev,Gv" Encoding:"0x0F 0x0D /7:reg"/"MR" { .Instruction = ND_INS_NOP, .Category = ND_CAT_NOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -42376,6 +43941,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -42389,12 +43955,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1510 Instruction:"NOP Ev" Encoding:"0x0F 0x18 /0:reg"/"M" + // Pos:1512 Instruction:"NOP Ev" Encoding:"0x0F 0x18 /0:reg"/"M" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -42403,6 +43969,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -42415,12 +43982,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1511 Instruction:"NOP Ev" Encoding:"0x0F 0x18 /1:reg"/"M" + // Pos:1513 Instruction:"NOP Ev" Encoding:"0x0F 0x18 /1:reg"/"M" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -42429,6 +43996,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -42441,12 +44009,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1512 Instruction:"NOP Ev" Encoding:"0x0F 0x18 /2:reg"/"M" + // Pos:1514 Instruction:"NOP Ev" Encoding:"0x0F 0x18 /2:reg"/"M" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -42455,6 +44023,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -42467,12 +44036,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1513 Instruction:"NOP Ev" Encoding:"0x0F 0x18 /3:reg"/"M" + // Pos:1515 Instruction:"NOP Ev" Encoding:"0x0F 0x18 /3:reg"/"M" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -42481,6 +44050,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -42493,12 +44063,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1514 Instruction:"NOP Ev" Encoding:"0x0F 0x18 /4"/"M" + // Pos:1516 Instruction:"NOP Ev" Encoding:"0x0F 0x18 /4:reg"/"M" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -42507,6 +44077,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -42519,12 +44090,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1515 Instruction:"NOP Ev" Encoding:"0x0F 0x18 /5"/"M" + // Pos:1517 Instruction:"NOP Ev" Encoding:"0x0F 0x18 /5"/"M" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -42533,6 +44104,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -42545,12 +44117,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1516 Instruction:"NOP Ev" Encoding:"0x0F 0x18 /6"/"M" + // Pos:1518 Instruction:"NOP Ev" Encoding:"0x0F 0x18 /6"/"M" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -42559,6 +44131,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -42571,12 +44144,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1517 Instruction:"NOP Ev" Encoding:"0x0F 0x18 /7"/"M" + // Pos:1519 Instruction:"NOP Ev" Encoding:"0x0F 0x18 /7"/"M" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -42585,6 +44158,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -42597,12 +44171,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1518 Instruction:"NOP Ev" Encoding:"0x0F 0x19 /r"/"M" + // Pos:1520 Instruction:"NOP Ev" Encoding:"0x0F 0x19 /r"/"M" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -42611,6 +44185,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -42623,12 +44198,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1519 Instruction:"NOP Ev" Encoding:"piti 0x0F 0x18 /0:reg"/"M" + // Pos:1521 Instruction:"NOP Ev" Encoding:"piti 0x0F 0x18 /0:reg"/"M" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -42637,6 +44212,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -42649,12 +44225,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1520 Instruction:"NOP Ev" Encoding:"piti 0x0F 0x18 /1:reg"/"M" + // Pos:1522 Instruction:"NOP Ev" Encoding:"piti 0x0F 0x18 /1:reg"/"M" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -42663,6 +44239,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -42675,12 +44252,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1521 Instruction:"NOP Ev" Encoding:"piti 0x0F 0x18 /2:reg"/"M" + // Pos:1523 Instruction:"NOP Ev" Encoding:"piti 0x0F 0x18 /2:reg"/"M" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -42689,6 +44266,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -42701,12 +44279,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1522 Instruction:"NOP Ev" Encoding:"piti 0x0F 0x18 /3:reg"/"M" + // Pos:1524 Instruction:"NOP Ev" Encoding:"piti 0x0F 0x18 /3:reg"/"M" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -42715,6 +44293,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -42727,12 +44306,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1523 Instruction:"NOP Ev" Encoding:"piti 0x0F 0x18 /4"/"M" + // Pos:1525 Instruction:"NOP Ev" Encoding:"piti 0x0F 0x18 /4:reg"/"M" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -42741,6 +44320,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -42753,12 +44333,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1524 Instruction:"NOP Ev" Encoding:"piti 0x0F 0x18 /5"/"M" + // Pos:1526 Instruction:"NOP Ev" Encoding:"piti 0x0F 0x18 /5"/"M" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -42767,6 +44347,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -42779,12 +44360,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1525 Instruction:"NOP Ev" Encoding:"piti 0x0F 0x18 /6:mem"/"M" + // Pos:1527 Instruction:"NOP Ev" Encoding:"piti 0x0F 0x18 /6:mem"/"M" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -42793,6 +44374,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -42805,12 +44387,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1526 Instruction:"NOP Ev" Encoding:"piti 0x0F 0x18 /6:reg"/"M" + // Pos:1528 Instruction:"NOP Ev" Encoding:"piti 0x0F 0x18 /6:reg"/"M" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -42819,6 +44401,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -42831,12 +44414,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1527 Instruction:"NOP Ev" Encoding:"piti 0x0F 0x18 /7:mem"/"M" + // Pos:1529 Instruction:"NOP Ev" Encoding:"piti 0x0F 0x18 /7:mem"/"M" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -42845,6 +44428,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -42857,12 +44441,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1528 Instruction:"NOP Ev" Encoding:"piti 0x0F 0x18 /7:reg"/"M" + // Pos:1530 Instruction:"NOP Ev" Encoding:"piti 0x0F 0x18 /7:reg"/"M" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -42871,6 +44455,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -42883,12 +44468,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1529 Instruction:"NOP Ev,Gv" Encoding:"0x0F 0x1A /r"/"MR" + // Pos:1531 Instruction:"NOP Ev,Gv" Encoding:"0x0F 0x1A /r"/"MR" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -42897,6 +44482,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -42910,12 +44496,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1530 Instruction:"NOP Gv,Ev" Encoding:"0x0F 0x1B /r"/"RM" + // Pos:1532 Instruction:"NOP Gv,Ev" Encoding:"0x0F 0x1B /r"/"RM" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -42924,6 +44510,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -42937,12 +44524,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1531 Instruction:"NOP Ev,Gv" Encoding:"0x0F 0x1C /r"/"MR" + // Pos:1533 Instruction:"NOP Ev,Gv" Encoding:"0x0F 0x1C /r"/"MR" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -42951,6 +44538,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -42964,12 +44552,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1532 Instruction:"NOP Ev,Gv" Encoding:"0x0F 0x1D /r"/"MR" + // Pos:1534 Instruction:"NOP Ev,Gv" Encoding:"0x0F 0x1D /r"/"MR" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -42978,6 +44566,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -42991,12 +44580,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1533 Instruction:"NOP Ev,Gv" Encoding:"0x0F 0x1E /r"/"MR" + // Pos:1535 Instruction:"NOP Ev,Gv" Encoding:"0x0F 0x1E /r"/"MR" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -43005,6 +44594,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -43018,12 +44608,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1534 Instruction:"NOP Ev,Gv" Encoding:"0x0F 0x1F /r"/"MR" + // Pos:1536 Instruction:"NOP Ev,Gv" Encoding:"0x0F 0x1F /r"/"MR" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -43032,6 +44622,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -43045,12 +44636,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1535 Instruction:"NOP Gv,Ev" Encoding:"mpx NP 0x0F 0x1A /r:reg"/"RM" + // Pos:1537 Instruction:"NOP Gv,Ev" Encoding:"mpx NP 0x0F 0x1A /r:reg"/"RM" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -43059,6 +44650,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -43072,12 +44664,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1536 Instruction:"NOP Gv,Ev" Encoding:"mpx NP 0x0F 0x1B /r:reg"/"RM" + // Pos:1538 Instruction:"NOP Gv,Ev" Encoding:"mpx NP 0x0F 0x1B /r:reg"/"RM" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -43086,6 +44678,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -43099,12 +44692,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1537 Instruction:"NOP Gv,Ev" Encoding:"mpx 0xF3 0x0F 0x1B /r:reg"/"RM" + // Pos:1539 Instruction:"NOP Gv,Ev" Encoding:"mpx 0xF3 0x0F 0x1B /r:reg"/"RM" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -43113,6 +44706,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -43126,12 +44720,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1538 Instruction:"NOP Ev,Gv" Encoding:"cldm 0x66 0x0F 0x1C /0:mem"/"MR" + // Pos:1540 Instruction:"NOP Ev,Gv" Encoding:"cldm 0x66 0x0F 0x1C /0:mem"/"MR" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -43140,6 +44734,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -43153,12 +44748,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1539 Instruction:"NOP Ev,Gv" Encoding:"cldm 0xF3 0x0F 0x1C /0:mem"/"MR" + // Pos:1541 Instruction:"NOP Ev,Gv" Encoding:"cldm 0xF3 0x0F 0x1C /0:mem"/"MR" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -43167,6 +44762,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -43180,12 +44776,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1540 Instruction:"NOP Ev,Gv" Encoding:"cldm 0xF2 0x0F 0x1C /0:mem"/"MR" + // Pos:1542 Instruction:"NOP Ev,Gv" Encoding:"cldm 0xF2 0x0F 0x1C /0:mem"/"MR" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -43194,6 +44790,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -43207,12 +44804,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1541 Instruction:"NOP Ev,Gv" Encoding:"cldm 0x0F 0x1C /0:reg"/"MR" + // Pos:1543 Instruction:"NOP Ev,Gv" Encoding:"cldm 0x0F 0x1C /0:reg"/"MR" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -43221,6 +44818,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -43234,12 +44832,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1542 Instruction:"NOP Ev,Gv" Encoding:"cldm 0x0F 0x1C /1"/"MR" + // Pos:1544 Instruction:"NOP Ev,Gv" Encoding:"cldm 0x0F 0x1C /1"/"MR" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -43248,6 +44846,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -43261,12 +44860,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1543 Instruction:"NOP Ev,Gv" Encoding:"cldm 0x0F 0x1C /2"/"MR" + // Pos:1545 Instruction:"NOP Ev,Gv" Encoding:"cldm 0x0F 0x1C /2"/"MR" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -43275,6 +44874,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -43288,12 +44888,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1544 Instruction:"NOP Ev,Gv" Encoding:"cldm 0x0F 0x1C /3"/"MR" + // Pos:1546 Instruction:"NOP Ev,Gv" Encoding:"cldm 0x0F 0x1C /3"/"MR" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -43302,6 +44902,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -43315,12 +44916,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1545 Instruction:"NOP Ev,Gv" Encoding:"cldm 0x0F 0x1C /4"/"MR" + // Pos:1547 Instruction:"NOP Ev,Gv" Encoding:"cldm 0x0F 0x1C /4"/"MR" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -43329,6 +44930,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -43342,12 +44944,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1546 Instruction:"NOP Ev,Gv" Encoding:"cldm 0x0F 0x1C /5"/"MR" + // Pos:1548 Instruction:"NOP Ev,Gv" Encoding:"cldm 0x0F 0x1C /5"/"MR" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -43356,6 +44958,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -43369,12 +44972,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1547 Instruction:"NOP Ev,Gv" Encoding:"cldm 0x0F 0x1C /6"/"MR" + // Pos:1549 Instruction:"NOP Ev,Gv" Encoding:"cldm 0x0F 0x1C /6"/"MR" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -43383,6 +44986,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -43396,12 +45000,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1548 Instruction:"NOP Ev,Gv" Encoding:"cldm 0x0F 0x1C /7"/"MR" + // Pos:1550 Instruction:"NOP Ev,Gv" Encoding:"cldm 0x0F 0x1C /7"/"MR" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -43410,6 +45014,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -43423,12 +45028,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1549 Instruction:"NOP Mv,Gv" Encoding:"cet 0x0F 0x1E /0:mem"/"MR" + // Pos:1551 Instruction:"NOP Mv,Gv" Encoding:"cet 0x0F 0x1E /0:mem"/"MR" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -43437,6 +45042,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -43450,12 +45056,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1550 Instruction:"NOP Rv,Gv" Encoding:"cet 0x0F 0x1E /0:reg"/"MR" + // Pos:1552 Instruction:"NOP Rv,Gv" Encoding:"cet 0x0F 0x1E /0:reg"/"MR" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -43464,6 +45070,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -43477,12 +45084,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1551 Instruction:"NOP Mv,Gv" Encoding:"cet 0x0F 0x1E /1:mem"/"MR" + // Pos:1553 Instruction:"NOP Mv,Gv" Encoding:"cet 0x0F 0x1E /1:mem"/"MR" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -43491,6 +45098,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -43504,12 +45112,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1552 Instruction:"NOP Rv,Gv" Encoding:"cet 0x0F 0x1E /1:reg"/"MR" + // Pos:1554 Instruction:"NOP Rv,Gv" Encoding:"cet 0x0F 0x1E /1:reg"/"MR" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -43518,6 +45126,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -43531,12 +45140,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1553 Instruction:"NOP Mv,Gv" Encoding:"cet 0x0F 0x1E /2:mem"/"MR" + // Pos:1555 Instruction:"NOP Mv,Gv" Encoding:"cet 0x0F 0x1E /2:mem"/"MR" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -43545,6 +45154,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -43558,12 +45168,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1554 Instruction:"NOP Rv,Gv" Encoding:"cet 0x0F 0x1E /2:reg"/"MR" + // Pos:1556 Instruction:"NOP Rv,Gv" Encoding:"cet 0x0F 0x1E /2:reg"/"MR" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -43572,6 +45182,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -43585,12 +45196,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1555 Instruction:"NOP Mv,Gv" Encoding:"cet 0x0F 0x1E /3:mem"/"MR" + // Pos:1557 Instruction:"NOP Mv,Gv" Encoding:"cet 0x0F 0x1E /3:mem"/"MR" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -43599,6 +45210,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -43612,12 +45224,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1556 Instruction:"NOP Rv,Gv" Encoding:"cet 0x0F 0x1E /3:reg"/"MR" + // Pos:1558 Instruction:"NOP Rv,Gv" Encoding:"cet 0x0F 0x1E /3:reg"/"MR" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -43626,6 +45238,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -43639,12 +45252,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1557 Instruction:"NOP Mv,Gv" Encoding:"cet 0x0F 0x1E /4:mem"/"MR" + // Pos:1559 Instruction:"NOP Mv,Gv" Encoding:"cet 0x0F 0x1E /4:mem"/"MR" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -43653,6 +45266,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -43666,12 +45280,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1558 Instruction:"NOP Rv,Gv" Encoding:"cet 0x0F 0x1E /4:reg"/"MR" + // Pos:1560 Instruction:"NOP Rv,Gv" Encoding:"cet 0x0F 0x1E /4:reg"/"MR" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -43680,6 +45294,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -43693,12 +45308,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1559 Instruction:"NOP Mv,Gv" Encoding:"cet 0x0F 0x1E /5:mem"/"MR" + // Pos:1561 Instruction:"NOP Mv,Gv" Encoding:"cet 0x0F 0x1E /5:mem"/"MR" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -43707,6 +45322,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -43720,12 +45336,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1560 Instruction:"NOP Rv,Gv" Encoding:"cet 0x0F 0x1E /5:reg"/"MR" + // Pos:1562 Instruction:"NOP Rv,Gv" Encoding:"cet 0x0F 0x1E /5:reg"/"MR" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -43734,6 +45350,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -43747,12 +45364,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1561 Instruction:"NOP Mv,Gv" Encoding:"cet 0x0F 0x1E /6:mem"/"MR" + // Pos:1563 Instruction:"NOP Mv,Gv" Encoding:"cet 0x0F 0x1E /6:mem"/"MR" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -43761,6 +45378,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -43774,12 +45392,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1562 Instruction:"NOP Rv,Gv" Encoding:"cet 0x0F 0x1E /6:reg"/"MR" + // Pos:1564 Instruction:"NOP Rv,Gv" Encoding:"cet 0x0F 0x1E /6:reg"/"MR" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -43788,6 +45406,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -43801,12 +45420,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1563 Instruction:"NOP Mv,Gv" Encoding:"cet 0x0F 0x1E /7:mem"/"MR" + // Pos:1565 Instruction:"NOP Mv,Gv" Encoding:"cet 0x0F 0x1E /7:mem"/"MR" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -43815,6 +45434,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -43828,12 +45448,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1564 Instruction:"NOP Rv,Gv" Encoding:"cet 0x0F 0x1E /0xF8"/"MR" + // Pos:1566 Instruction:"NOP Rv,Gv" Encoding:"cet 0x0F 0x1E /0xF8"/"MR" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -43842,6 +45462,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -43855,12 +45476,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1565 Instruction:"NOP Rv,Gv" Encoding:"cet 0x0F 0x1E /0xF9"/"MR" + // Pos:1567 Instruction:"NOP Rv,Gv" Encoding:"cet 0x0F 0x1E /0xF9"/"MR" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -43869,6 +45490,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -43882,12 +45504,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1566 Instruction:"NOP Rv,Gv" Encoding:"cet 0x0F 0x1E /0xFA"/"MR" + // Pos:1568 Instruction:"NOP Rv,Gv" Encoding:"cet 0x0F 0x1E /0xFA"/"MR" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -43896,6 +45518,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -43909,12 +45532,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1567 Instruction:"NOP Rv,Gv" Encoding:"cet 0x0F 0x1E /0xFB"/"MR" + // Pos:1569 Instruction:"NOP Rv,Gv" Encoding:"cet 0x0F 0x1E /0xFB"/"MR" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -43923,6 +45546,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -43936,12 +45560,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1568 Instruction:"NOP Rv,Gv" Encoding:"cet 0x0F 0x1E /0xFC"/"MR" + // Pos:1570 Instruction:"NOP Rv,Gv" Encoding:"cet 0x0F 0x1E /0xFC"/"MR" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -43950,6 +45574,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -43963,12 +45588,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1569 Instruction:"NOP Rv,Gv" Encoding:"cet 0x0F 0x1E /0xFD"/"MR" + // Pos:1571 Instruction:"NOP Rv,Gv" Encoding:"cet 0x0F 0x1E /0xFD"/"MR" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -43977,6 +45602,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -43990,12 +45616,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1570 Instruction:"NOP Rv,Gv" Encoding:"cet 0x0F 0x1E /0xFE"/"MR" + // Pos:1572 Instruction:"NOP Rv,Gv" Encoding:"cet 0x0F 0x1E /0xFE"/"MR" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -44004,6 +45630,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -44017,12 +45644,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1571 Instruction:"NOP Rv,Gv" Encoding:"cet 0x0F 0x1E /0xFF"/"MR" + // Pos:1573 Instruction:"NOP Rv,Gv" Encoding:"cet 0x0F 0x1E /0xFF"/"MR" { .Instruction = ND_INS_NOP, .Category = ND_CAT_WIDENOP, .IsaSet = ND_SET_PPRO, - .Mnemonic = 542, + .Mnemonic = 543, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -44031,6 +45658,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -44044,12 +45672,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1572 Instruction:"NOT Eb" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xF6 /2"/"M" + // Pos:1574 Instruction:"NOT Eb" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xF6 /2"/"M" { .Instruction = ND_INS_NOT, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 543, + .Mnemonic = 544, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -44058,6 +45686,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -44070,12 +45699,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1573 Instruction:"NOT Ev" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xF7 /2"/"M" + // Pos:1575 Instruction:"NOT Ev" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xF7 /2"/"M" { .Instruction = ND_INS_NOT, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 543, + .Mnemonic = 544, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -44084,6 +45713,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -44096,12 +45726,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1574 Instruction:"NOT Ev" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xF7 /2"/"M" + // Pos:1576 Instruction:"NOT Ev" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xF7 /2"/"M" { .Instruction = ND_INS_NOT, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 543, + .Mnemonic = 544, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -44110,6 +45740,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -44122,12 +45753,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1575 Instruction:"NOT Bb,Eb" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xF6 /2"/"VM" + // Pos:1577 Instruction:"NOT Bb,Eb" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xF6 /2"/"VM" { .Instruction = ND_INS_NOT, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 543, + .Mnemonic = 544, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -44136,6 +45767,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -44149,12 +45781,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1576 Instruction:"NOT Bv,Ev" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xF7 /2"/"VM" + // Pos:1578 Instruction:"NOT Bv,Ev" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xF7 /2"/"VM" { .Instruction = ND_INS_NOT, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 543, + .Mnemonic = 544, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -44163,6 +45795,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -44176,12 +45809,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1577 Instruction:"NOT Bv,Ev" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0xF7 /2"/"VM" + // Pos:1579 Instruction:"NOT Bv,Ev" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0xF7 /2"/"VM" { .Instruction = ND_INS_NOT, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 543, + .Mnemonic = 544, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -44190,6 +45823,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -44203,12 +45837,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1578 Instruction:"NOT Eb" Encoding:"0xF6 /2"/"M" + // Pos:1580 Instruction:"NOT Eb" Encoding:"0xF6 /2"/"M" { .Instruction = ND_INS_NOT, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_I86, - .Mnemonic = 543, + .Mnemonic = 544, .ValidPrefixes = ND_PREF_HLE|ND_PREF_LOCK, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -44217,6 +45851,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -44229,12 +45864,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1579 Instruction:"NOT Ev" Encoding:"0xF7 /2"/"M" + // Pos:1581 Instruction:"NOT Ev" Encoding:"0xF7 /2"/"M" { .Instruction = ND_INS_NOT, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_I86, - .Mnemonic = 543, + .Mnemonic = 544, .ValidPrefixes = ND_PREF_HLE|ND_PREF_LOCK, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -44243,6 +45878,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -44255,12 +45891,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1580 Instruction:"OR Eb,Gb" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x08 /r"/"MR" + // Pos:1582 Instruction:"OR Eb,Gb" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x08 /r"/"MR" { .Instruction = ND_INS_OR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 544, + .Mnemonic = 545, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -44269,6 +45905,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -44283,12 +45920,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1581 Instruction:"OR Ev,Gv" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x09 /r"/"MR" + // Pos:1583 Instruction:"OR Ev,Gv" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x09 /r"/"MR" { .Instruction = ND_INS_OR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 544, + .Mnemonic = 545, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -44297,6 +45934,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -44311,12 +45949,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1582 Instruction:"OR Ev,Gv" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0x09 /r"/"MR" + // Pos:1584 Instruction:"OR Ev,Gv" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0x09 /r"/"MR" { .Instruction = ND_INS_OR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 544, + .Mnemonic = 545, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -44325,6 +45963,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -44339,12 +45978,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1583 Instruction:"OR Gb,Eb" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x0A /r"/"RM" + // Pos:1585 Instruction:"OR Gb,Eb" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x0A /r"/"RM" { .Instruction = ND_INS_OR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 544, + .Mnemonic = 545, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -44353,6 +45992,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -44367,12 +46007,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1584 Instruction:"OR Gv,Ev" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x0B /r"/"RM" + // Pos:1586 Instruction:"OR Gv,Ev" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x0B /r"/"RM" { .Instruction = ND_INS_OR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 544, + .Mnemonic = 545, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -44381,6 +46021,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -44395,12 +46036,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1585 Instruction:"OR Gv,Ev" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0x0B /r"/"RM" + // Pos:1587 Instruction:"OR Gv,Ev" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0x0B /r"/"RM" { .Instruction = ND_INS_OR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 544, + .Mnemonic = 545, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -44409,6 +46050,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -44423,12 +46065,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1586 Instruction:"OR Eb,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x80 /1 ib"/"MI" + // Pos:1588 Instruction:"OR Eb,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x80 /1 ib"/"MI" { .Instruction = ND_INS_OR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 544, + .Mnemonic = 545, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -44437,6 +46079,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -44451,12 +46094,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1587 Instruction:"OR Ev,Iz" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x81 /1 iz"/"MI" + // Pos:1589 Instruction:"OR Ev,Iz" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x81 /1 iz"/"MI" { .Instruction = ND_INS_OR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 544, + .Mnemonic = 545, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -44465,6 +46108,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -44479,12 +46123,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1588 Instruction:"OR Ev,Iz" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0x81 /1 iz"/"MI" + // Pos:1590 Instruction:"OR Ev,Iz" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0x81 /1 iz"/"MI" { .Instruction = ND_INS_OR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 544, + .Mnemonic = 545, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -44493,6 +46137,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -44507,12 +46152,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1589 Instruction:"OR Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x83 /1 ib"/"MI" + // Pos:1591 Instruction:"OR Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x83 /1 ib"/"MI" { .Instruction = ND_INS_OR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 544, + .Mnemonic = 545, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -44521,6 +46166,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -44535,12 +46181,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1590 Instruction:"OR Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0x83 /1 ib"/"MI" + // Pos:1592 Instruction:"OR Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0x83 /1 ib"/"MI" { .Instruction = ND_INS_OR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 544, + .Mnemonic = 545, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -44549,6 +46195,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -44563,12 +46210,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1591 Instruction:"OR Eb,Gb" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0x08 /r"/"MR" + // Pos:1593 Instruction:"OR Eb,Gb" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0x08 /r"/"MR" { .Instruction = ND_INS_OR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 544, + .Mnemonic = 545, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -44577,6 +46224,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -44590,12 +46238,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1592 Instruction:"OR Ev,Gv" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0x09 /r"/"MR" + // Pos:1594 Instruction:"OR Ev,Gv" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0x09 /r"/"MR" { .Instruction = ND_INS_OR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 544, + .Mnemonic = 545, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -44604,6 +46252,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -44617,12 +46266,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1593 Instruction:"OR Ev,Gv" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0x09 /r"/"MR" + // Pos:1595 Instruction:"OR Ev,Gv" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0x09 /r"/"MR" { .Instruction = ND_INS_OR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 544, + .Mnemonic = 545, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -44631,6 +46280,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -44644,12 +46294,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1594 Instruction:"OR Gb,Eb" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0x0A /r"/"RM" + // Pos:1596 Instruction:"OR Gb,Eb" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0x0A /r"/"RM" { .Instruction = ND_INS_OR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 544, + .Mnemonic = 545, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -44658,6 +46308,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -44671,12 +46322,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1595 Instruction:"OR Gv,Ev" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0x0B /r"/"RM" + // Pos:1597 Instruction:"OR Gv,Ev" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0x0B /r"/"RM" { .Instruction = ND_INS_OR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 544, + .Mnemonic = 545, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -44685,6 +46336,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -44698,12 +46350,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1596 Instruction:"OR Gv,Ev" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0x0B /r"/"RM" + // Pos:1598 Instruction:"OR Gv,Ev" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0x0B /r"/"RM" { .Instruction = ND_INS_OR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 544, + .Mnemonic = 545, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -44712,6 +46364,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -44725,12 +46378,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1597 Instruction:"OR Eb,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0x80 /1 ib"/"MI" + // Pos:1599 Instruction:"OR Eb,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0x80 /1 ib"/"MI" { .Instruction = ND_INS_OR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 544, + .Mnemonic = 545, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -44739,6 +46392,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -44752,12 +46406,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1598 Instruction:"OR Ev,Iz" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0x81 /1 iz"/"MI" + // Pos:1600 Instruction:"OR Ev,Iz" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0x81 /1 iz"/"MI" { .Instruction = ND_INS_OR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 544, + .Mnemonic = 545, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -44766,6 +46420,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -44779,12 +46434,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1599 Instruction:"OR Ev,Iz" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0x81 /1 iz"/"MI" + // Pos:1601 Instruction:"OR Ev,Iz" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0x81 /1 iz"/"MI" { .Instruction = ND_INS_OR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 544, + .Mnemonic = 545, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -44793,6 +46448,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -44806,12 +46462,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1600 Instruction:"OR Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0x83 /1 ib"/"MI" + // Pos:1602 Instruction:"OR Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0x83 /1 ib"/"MI" { .Instruction = ND_INS_OR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 544, + .Mnemonic = 545, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -44820,6 +46476,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -44833,12 +46490,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1601 Instruction:"OR Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0x83 /1 ib"/"MI" + // Pos:1603 Instruction:"OR Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0x83 /1 ib"/"MI" { .Instruction = ND_INS_OR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 544, + .Mnemonic = 545, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -44847,6 +46504,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -44860,12 +46518,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1602 Instruction:"OR Bb,Eb,Gb" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x08 /r"/"VMR" + // Pos:1604 Instruction:"OR Bb,Eb,Gb" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x08 /r"/"VMR" { .Instruction = ND_INS_OR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 544, + .Mnemonic = 545, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -44874,6 +46532,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -44889,12 +46548,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1603 Instruction:"OR Bv,Ev,Gv" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x09 /r"/"VMR" + // Pos:1605 Instruction:"OR Bv,Ev,Gv" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x09 /r"/"VMR" { .Instruction = ND_INS_OR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 544, + .Mnemonic = 545, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -44903,6 +46562,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -44918,12 +46578,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1604 Instruction:"OR Bv,Ev,Gv" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0x09 /r"/"VMR" + // Pos:1606 Instruction:"OR Bv,Ev,Gv" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0x09 /r"/"VMR" { .Instruction = ND_INS_OR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 544, + .Mnemonic = 545, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -44932,6 +46592,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -44947,12 +46608,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1605 Instruction:"OR Bb,Gb,Eb" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x0A /r"/"VRM" + // Pos:1607 Instruction:"OR Bb,Gb,Eb" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x0A /r"/"VRM" { .Instruction = ND_INS_OR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 544, + .Mnemonic = 545, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -44961,6 +46622,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -44976,12 +46638,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1606 Instruction:"OR Bv,Gv,Ev" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x0B /r"/"VRM" + // Pos:1608 Instruction:"OR Bv,Gv,Ev" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x0B /r"/"VRM" { .Instruction = ND_INS_OR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 544, + .Mnemonic = 545, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -44990,6 +46652,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -45005,12 +46668,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1607 Instruction:"OR Bv,Gv,Ev" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0x0B /r"/"VRM" + // Pos:1609 Instruction:"OR Bv,Gv,Ev" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0x0B /r"/"VRM" { .Instruction = ND_INS_OR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 544, + .Mnemonic = 545, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -45019,6 +46682,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -45034,12 +46698,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1608 Instruction:"OR Bb,Eb,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x80 /1 ib"/"VMI" + // Pos:1610 Instruction:"OR Bb,Eb,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x80 /1 ib"/"VMI" { .Instruction = ND_INS_OR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 544, + .Mnemonic = 545, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -45048,6 +46712,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -45063,12 +46728,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1609 Instruction:"OR Bv,Ev,Iz" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x81 /1 iz"/"VMI" + // Pos:1611 Instruction:"OR Bv,Ev,Iz" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x81 /1 iz"/"VMI" { .Instruction = ND_INS_OR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 544, + .Mnemonic = 545, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -45077,6 +46742,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -45092,12 +46758,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1610 Instruction:"OR Bv,Ev,Iz" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0x81 /1 iz"/"VMI" + // Pos:1612 Instruction:"OR Bv,Ev,Iz" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0x81 /1 iz"/"VMI" { .Instruction = ND_INS_OR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 544, + .Mnemonic = 545, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -45106,6 +46772,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -45121,12 +46788,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1611 Instruction:"OR Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x83 /1 ib"/"VMI" + // Pos:1613 Instruction:"OR Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x83 /1 ib"/"VMI" { .Instruction = ND_INS_OR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 544, + .Mnemonic = 545, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -45135,6 +46802,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -45150,12 +46818,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1612 Instruction:"OR Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0x83 /1 ib"/"VMI" + // Pos:1614 Instruction:"OR Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0x83 /1 ib"/"VMI" { .Instruction = ND_INS_OR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 544, + .Mnemonic = 545, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -45164,6 +46832,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -45179,12 +46848,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1613 Instruction:"OR Bb,Eb,Gb" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0x08 /r"/"VMR" + // Pos:1615 Instruction:"OR Bb,Eb,Gb" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0x08 /r"/"VMR" { .Instruction = ND_INS_OR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 544, + .Mnemonic = 545, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -45193,6 +46862,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -45207,12 +46877,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1614 Instruction:"OR Bv,Ev,Gv" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0x09 /r"/"VMR" + // Pos:1616 Instruction:"OR Bv,Ev,Gv" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0x09 /r"/"VMR" { .Instruction = ND_INS_OR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 544, + .Mnemonic = 545, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -45221,6 +46891,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -45235,12 +46906,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1615 Instruction:"OR Bv,Ev,Gv" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0x09 /r"/"VMR" + // Pos:1617 Instruction:"OR Bv,Ev,Gv" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0x09 /r"/"VMR" { .Instruction = ND_INS_OR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 544, + .Mnemonic = 545, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -45249,6 +46920,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -45263,12 +46935,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1616 Instruction:"OR Bb,Gb,Eb" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0x0A /r"/"VRM" + // Pos:1618 Instruction:"OR Bb,Gb,Eb" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0x0A /r"/"VRM" { .Instruction = ND_INS_OR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 544, + .Mnemonic = 545, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -45277,6 +46949,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -45291,12 +46964,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1617 Instruction:"OR Bv,Gv,Ev" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0x0B /r"/"VRM" + // Pos:1619 Instruction:"OR Bv,Gv,Ev" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0x0B /r"/"VRM" { .Instruction = ND_INS_OR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 544, + .Mnemonic = 545, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -45305,6 +46978,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -45319,12 +46993,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1618 Instruction:"OR Bv,Gv,Ev" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0x0B /r"/"VRM" + // Pos:1620 Instruction:"OR Bv,Gv,Ev" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0x0B /r"/"VRM" { .Instruction = ND_INS_OR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 544, + .Mnemonic = 545, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -45333,6 +47007,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -45347,12 +47022,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1619 Instruction:"OR Bb,Eb,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0x80 /1 ib"/"VMI" + // Pos:1621 Instruction:"OR Bb,Eb,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0x80 /1 ib"/"VMI" { .Instruction = ND_INS_OR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 544, + .Mnemonic = 545, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -45361,6 +47036,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -45375,12 +47051,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1620 Instruction:"OR Bv,Ev,Iz" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0x81 /1 iz"/"VMI" + // Pos:1622 Instruction:"OR Bv,Ev,Iz" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0x81 /1 iz"/"VMI" { .Instruction = ND_INS_OR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 544, + .Mnemonic = 545, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -45389,6 +47065,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -45403,12 +47080,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1621 Instruction:"OR Bv,Ev,Iz" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0x81 /1 iz"/"VMI" + // Pos:1623 Instruction:"OR Bv,Ev,Iz" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0x81 /1 iz"/"VMI" { .Instruction = ND_INS_OR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 544, + .Mnemonic = 545, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -45417,6 +47094,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -45431,12 +47109,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1622 Instruction:"OR Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0x83 /1 ib"/"VMI" + // Pos:1624 Instruction:"OR Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0x83 /1 ib"/"VMI" { .Instruction = ND_INS_OR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 544, + .Mnemonic = 545, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -45445,6 +47123,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -45459,12 +47138,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1623 Instruction:"OR Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0x83 /1 ib"/"VMI" + // Pos:1625 Instruction:"OR Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0x83 /1 ib"/"VMI" { .Instruction = ND_INS_OR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 544, + .Mnemonic = 545, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -45473,6 +47152,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -45487,12 +47167,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1624 Instruction:"OR Eb,Gb" Encoding:"0x08 /r"/"MR" + // Pos:1626 Instruction:"OR Eb,Gb" Encoding:"0x08 /r"/"MR" { .Instruction = ND_INS_OR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_I86, - .Mnemonic = 544, + .Mnemonic = 545, .ValidPrefixes = ND_PREF_HLE|ND_PREF_LOCK, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -45501,6 +47181,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -45515,12 +47196,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1625 Instruction:"OR Ev,Gv" Encoding:"0x09 /r"/"MR" + // Pos:1627 Instruction:"OR Ev,Gv" Encoding:"0x09 /r"/"MR" { .Instruction = ND_INS_OR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_I86, - .Mnemonic = 544, + .Mnemonic = 545, .ValidPrefixes = ND_PREF_HLE|ND_PREF_LOCK, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -45529,6 +47210,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -45543,12 +47225,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1626 Instruction:"OR Gb,Eb" Encoding:"0x0A /r"/"RM" + // Pos:1628 Instruction:"OR Gb,Eb" Encoding:"0x0A /r"/"RM" { .Instruction = ND_INS_OR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_I86, - .Mnemonic = 544, + .Mnemonic = 545, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -45557,6 +47239,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -45571,12 +47254,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1627 Instruction:"OR Gv,Ev" Encoding:"0x0B /r"/"RM" + // Pos:1629 Instruction:"OR Gv,Ev" Encoding:"0x0B /r"/"RM" { .Instruction = ND_INS_OR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_I86, - .Mnemonic = 544, + .Mnemonic = 545, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -45585,6 +47268,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -45599,12 +47283,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1628 Instruction:"OR AL,Ib" Encoding:"0x0C ib"/"I" + // Pos:1630 Instruction:"OR AL,Ib" Encoding:"0x0C ib"/"I" { .Instruction = ND_INS_OR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_I86, - .Mnemonic = 544, + .Mnemonic = 545, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -45613,6 +47297,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -45627,12 +47312,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1629 Instruction:"OR rAX,Iz" Encoding:"0x0D iz"/"I" + // Pos:1631 Instruction:"OR rAX,Iz" Encoding:"0x0D iz"/"I" { .Instruction = ND_INS_OR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_I86, - .Mnemonic = 544, + .Mnemonic = 545, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -45641,6 +47326,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -45655,12 +47341,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1630 Instruction:"OR Eb,Ib" Encoding:"0x80 /1 ib"/"MI" + // Pos:1632 Instruction:"OR Eb,Ib" Encoding:"0x80 /1 ib"/"MI" { .Instruction = ND_INS_OR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_I86, - .Mnemonic = 544, + .Mnemonic = 545, .ValidPrefixes = ND_PREF_HLE|ND_PREF_LOCK, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -45669,6 +47355,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -45683,12 +47370,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1631 Instruction:"OR Ev,Iz" Encoding:"0x81 /1 iz"/"MI" + // Pos:1633 Instruction:"OR Ev,Iz" Encoding:"0x81 /1 iz"/"MI" { .Instruction = ND_INS_OR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_I86, - .Mnemonic = 544, + .Mnemonic = 545, .ValidPrefixes = ND_PREF_HLE|ND_PREF_LOCK, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -45697,6 +47384,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -45711,12 +47399,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1632 Instruction:"OR Eb,Ib" Encoding:"0x82 /1 iz"/"MI" + // Pos:1634 Instruction:"OR Eb,Ib" Encoding:"0x82 /1 iz"/"MI" { .Instruction = ND_INS_OR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_I86, - .Mnemonic = 544, + .Mnemonic = 545, .ValidPrefixes = ND_PREF_HLE|ND_PREF_LOCK, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_REAL|ND_MOD_V8086|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -45725,6 +47413,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -45739,12 +47428,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1633 Instruction:"OR Ev,Ib" Encoding:"0x83 /1 ib"/"MI" + // Pos:1635 Instruction:"OR Ev,Ib" Encoding:"0x83 /1 ib"/"MI" { .Instruction = ND_INS_OR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_I86, - .Mnemonic = 544, + .Mnemonic = 545, .ValidPrefixes = ND_PREF_HLE|ND_PREF_LOCK, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -45753,6 +47442,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -45767,12 +47457,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1634 Instruction:"ORPD Vpd,Wpd" Encoding:"0x66 0x0F 0x56 /r"/"RM" + // Pos:1636 Instruction:"ORPD Vpd,Wpd" Encoding:"0x66 0x0F 0x56 /r"/"RM" { .Instruction = ND_INS_ORPD, .Category = ND_CAT_LOGICAL_FP, .IsaSet = ND_SET_SSE2, - .Mnemonic = 545, + .Mnemonic = 546, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -45781,6 +47471,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -45794,12 +47485,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1635 Instruction:"ORPS Vps,Wps" Encoding:"NP 0x0F 0x56 /r"/"RM" + // Pos:1637 Instruction:"ORPS Vps,Wps" Encoding:"NP 0x0F 0x56 /r"/"RM" { .Instruction = ND_INS_ORPS, .Category = ND_CAT_LOGICAL_FP, .IsaSet = ND_SET_SSE, - .Mnemonic = 546, + .Mnemonic = 547, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -45808,6 +47499,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -45821,12 +47513,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1636 Instruction:"OUT Ib,AL" Encoding:"0xE6 ib"/"I" + // Pos:1638 Instruction:"OUT Ib,AL" Encoding:"0xE6 ib"/"I" { .Instruction = ND_INS_OUT, .Category = ND_CAT_IO, .IsaSet = ND_SET_I86, - .Mnemonic = 547, + .Mnemonic = 548, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_REAL|ND_MOD_V8086|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -45835,6 +47527,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_IOPL|NDR_RFLAG_VM, .ModifiedFlags = 0, .SetFlags = 0, @@ -45849,12 +47542,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1637 Instruction:"OUT Ib,eAX" Encoding:"0xE7 ib"/"I" + // Pos:1639 Instruction:"OUT Ib,eAX" Encoding:"0xE7 ib"/"I" { .Instruction = ND_INS_OUT, .Category = ND_CAT_IO, .IsaSet = ND_SET_I86, - .Mnemonic = 547, + .Mnemonic = 548, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_REAL|ND_MOD_V8086|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -45863,6 +47556,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_IOPL|NDR_RFLAG_VM, .ModifiedFlags = 0, .SetFlags = 0, @@ -45877,12 +47571,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1638 Instruction:"OUT DX,AL" Encoding:"0xEE"/"" + // Pos:1640 Instruction:"OUT DX,AL" Encoding:"0xEE"/"" { .Instruction = ND_INS_OUT, .Category = ND_CAT_IO, .IsaSet = ND_SET_I86, - .Mnemonic = 547, + .Mnemonic = 548, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_REAL|ND_MOD_V8086|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -45891,6 +47585,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_IOPL|NDR_RFLAG_VM, .ModifiedFlags = 0, .SetFlags = 0, @@ -45905,12 +47600,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1639 Instruction:"OUT DX,eAX" Encoding:"0xEF"/"" + // Pos:1641 Instruction:"OUT DX,eAX" Encoding:"0xEF"/"" { .Instruction = ND_INS_OUT, .Category = ND_CAT_IO, .IsaSet = ND_SET_I86, - .Mnemonic = 547, + .Mnemonic = 548, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_REAL|ND_MOD_V8086|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -45919,6 +47614,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_IOPL|NDR_RFLAG_VM, .ModifiedFlags = 0, .SetFlags = 0, @@ -45933,12 +47629,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1640 Instruction:"OUTSB DX,Xb" Encoding:"0x6E"/"" + // Pos:1642 Instruction:"OUTSB DX,Xb" Encoding:"0x6E"/"" { .Instruction = ND_INS_OUTS, .Category = ND_CAT_IOSTRINGOP, .IsaSet = ND_SET_I86, - .Mnemonic = 548, + .Mnemonic = 549, .ValidPrefixes = ND_PREF_REP, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_REAL|ND_MOD_V8086|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -45947,6 +47643,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_DF|NDR_RFLAG_IOPL|NDR_RFLAG_VM, .ModifiedFlags = 0, .SetFlags = 0, @@ -45962,12 +47659,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1641 Instruction:"OUTSB DX,Xb" Encoding:"rep 0x6E"/"" + // Pos:1643 Instruction:"OUTSB DX,Xb" Encoding:"rep 0x6E"/"" { .Instruction = ND_INS_OUTS, .Category = ND_CAT_IOSTRINGOP, .IsaSet = ND_SET_I86, - .Mnemonic = 548, + .Mnemonic = 549, .ValidPrefixes = ND_PREF_REP, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_REAL|ND_MOD_V8086|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -45976,6 +47673,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_DF|NDR_RFLAG_IOPL|NDR_RFLAG_VM, .ModifiedFlags = 0, .SetFlags = 0, @@ -45992,12 +47690,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1642 Instruction:"OUTSD DX,Xz" Encoding:"0x6F"/"" + // Pos:1644 Instruction:"OUTSD DX,Xz" Encoding:"0x6F"/"" { .Instruction = ND_INS_OUTS, .Category = ND_CAT_IOSTRINGOP, .IsaSet = ND_SET_I86, - .Mnemonic = 549, + .Mnemonic = 550, .ValidPrefixes = ND_PREF_REP, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_REAL|ND_MOD_V8086|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -46006,6 +47704,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_DF|NDR_RFLAG_IOPL|NDR_RFLAG_VM, .ModifiedFlags = 0, .SetFlags = 0, @@ -46021,12 +47720,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1643 Instruction:"OUTSD DX,Xz" Encoding:"rep 0x6F"/"" + // Pos:1645 Instruction:"OUTSD DX,Xz" Encoding:"rep 0x6F"/"" { .Instruction = ND_INS_OUTS, .Category = ND_CAT_IOSTRINGOP, .IsaSet = ND_SET_I86, - .Mnemonic = 549, + .Mnemonic = 550, .ValidPrefixes = ND_PREF_REP, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_REAL|ND_MOD_V8086|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -46035,6 +47734,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_DF|NDR_RFLAG_IOPL|NDR_RFLAG_VM, .ModifiedFlags = 0, .SetFlags = 0, @@ -46051,12 +47751,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1644 Instruction:"OUTSW DX,Xz" Encoding:"ds16 0x6F"/"" + // Pos:1646 Instruction:"OUTSW DX,Xz" Encoding:"ds16 0x6F"/"" { .Instruction = ND_INS_OUTS, .Category = ND_CAT_IOSTRINGOP, .IsaSet = ND_SET_I86, - .Mnemonic = 550, + .Mnemonic = 551, .ValidPrefixes = ND_PREF_REP, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_REAL|ND_MOD_V8086|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -46065,6 +47765,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_DF|NDR_RFLAG_IOPL|NDR_RFLAG_VM, .ModifiedFlags = 0, .SetFlags = 0, @@ -46080,12 +47781,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1645 Instruction:"OUTSW DX,Xz" Encoding:"rep ds16 0x6F"/"" + // Pos:1647 Instruction:"OUTSW DX,Xz" Encoding:"rep ds16 0x6F"/"" { .Instruction = ND_INS_OUTS, .Category = ND_CAT_IOSTRINGOP, .IsaSet = ND_SET_I86, - .Mnemonic = 550, + .Mnemonic = 551, .ValidPrefixes = ND_PREF_REP, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_REAL|ND_MOD_V8086|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -46094,6 +47795,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_DF|NDR_RFLAG_IOPL|NDR_RFLAG_VM, .ModifiedFlags = 0, .SetFlags = 0, @@ -46110,12 +47812,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1646 Instruction:"PABSB Pq,Qq" Encoding:"NP 0x0F 0x38 0x1C /r"/"RM" + // Pos:1648 Instruction:"PABSB Pq,Qq" Encoding:"NP 0x0F 0x38 0x1C /r"/"RM" { .Instruction = ND_INS_PABSB, .Category = ND_CAT_MMX, .IsaSet = ND_SET_SSSE3, - .Mnemonic = 551, + .Mnemonic = 552, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -46124,6 +47826,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -46137,12 +47840,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1647 Instruction:"PABSB Vx,Wx" Encoding:"0x66 0x0F 0x38 0x1C /r"/"RM" + // Pos:1649 Instruction:"PABSB Vx,Wx" Encoding:"0x66 0x0F 0x38 0x1C /r"/"RM" { .Instruction = ND_INS_PABSB, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSSE3, - .Mnemonic = 551, + .Mnemonic = 552, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -46151,6 +47854,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -46164,12 +47868,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1648 Instruction:"PABSD Pq,Qq" Encoding:"NP 0x0F 0x38 0x1E /r"/"RM" + // Pos:1650 Instruction:"PABSD Pq,Qq" Encoding:"NP 0x0F 0x38 0x1E /r"/"RM" { .Instruction = ND_INS_PABSD, .Category = ND_CAT_MMX, .IsaSet = ND_SET_SSSE3, - .Mnemonic = 552, + .Mnemonic = 553, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -46178,6 +47882,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -46191,12 +47896,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1649 Instruction:"PABSD Vx,Wx" Encoding:"0x66 0x0F 0x38 0x1E /r"/"RM" + // Pos:1651 Instruction:"PABSD Vx,Wx" Encoding:"0x66 0x0F 0x38 0x1E /r"/"RM" { .Instruction = ND_INS_PABSD, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSSE3, - .Mnemonic = 552, + .Mnemonic = 553, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -46205,6 +47910,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -46218,12 +47924,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1650 Instruction:"PABSW Pq,Qq" Encoding:"NP 0x0F 0x38 0x1D /r"/"RM" + // Pos:1652 Instruction:"PABSW Pq,Qq" Encoding:"NP 0x0F 0x38 0x1D /r"/"RM" { .Instruction = ND_INS_PABSW, .Category = ND_CAT_MMX, .IsaSet = ND_SET_SSSE3, - .Mnemonic = 553, + .Mnemonic = 554, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -46232,6 +47938,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -46245,12 +47952,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1651 Instruction:"PABSW Vx,Wx" Encoding:"0x66 0x0F 0x38 0x1D /r"/"RM" + // Pos:1653 Instruction:"PABSW Vx,Wx" Encoding:"0x66 0x0F 0x38 0x1D /r"/"RM" { .Instruction = ND_INS_PABSW, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSSE3, - .Mnemonic = 553, + .Mnemonic = 554, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -46259,6 +47966,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -46272,12 +47980,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1652 Instruction:"PACKSSDW Pq,Qq" Encoding:"NP 0x0F 0x6B /r"/"RM" + // Pos:1654 Instruction:"PACKSSDW Pq,Qq" Encoding:"NP 0x0F 0x6B /r"/"RM" { .Instruction = ND_INS_PACKSSDW, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 554, + .Mnemonic = 555, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -46286,6 +47994,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -46299,12 +48008,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1653 Instruction:"PACKSSDW Vx,Wx" Encoding:"0x66 0x0F 0x6B /r"/"RM" + // Pos:1655 Instruction:"PACKSSDW Vx,Wx" Encoding:"0x66 0x0F 0x6B /r"/"RM" { .Instruction = ND_INS_PACKSSDW, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 554, + .Mnemonic = 555, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -46313,6 +48022,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -46326,12 +48036,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1654 Instruction:"PACKSSWB Pq,Qq" Encoding:"NP 0x0F 0x63 /r"/"RM" + // Pos:1656 Instruction:"PACKSSWB Pq,Qq" Encoding:"NP 0x0F 0x63 /r"/"RM" { .Instruction = ND_INS_PACKSSWB, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 555, + .Mnemonic = 556, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -46340,6 +48050,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -46353,12 +48064,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1655 Instruction:"PACKSSWB Vx,Wx" Encoding:"0x66 0x0F 0x63 /r"/"RM" + // Pos:1657 Instruction:"PACKSSWB Vx,Wx" Encoding:"0x66 0x0F 0x63 /r"/"RM" { .Instruction = ND_INS_PACKSSWB, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 555, + .Mnemonic = 556, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -46367,6 +48078,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -46380,12 +48092,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1656 Instruction:"PACKUSDW Vx,Wx" Encoding:"0x66 0x0F 0x38 0x2B /r"/"RM" + // Pos:1658 Instruction:"PACKUSDW Vx,Wx" Encoding:"0x66 0x0F 0x38 0x2B /r"/"RM" { .Instruction = ND_INS_PACKUSDW, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE4, - .Mnemonic = 556, + .Mnemonic = 557, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -46394,6 +48106,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -46407,12 +48120,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1657 Instruction:"PACKUSWB Pq,Qq" Encoding:"NP 0x0F 0x67 /r"/"RM" + // Pos:1659 Instruction:"PACKUSWB Pq,Qq" Encoding:"NP 0x0F 0x67 /r"/"RM" { .Instruction = ND_INS_PACKUSWB, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 557, + .Mnemonic = 558, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -46421,6 +48134,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -46434,12 +48148,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1658 Instruction:"PACKUSWB Vx,Wx" Encoding:"0x66 0x0F 0x67 /r"/"RM" + // Pos:1660 Instruction:"PACKUSWB Vx,Wx" Encoding:"0x66 0x0F 0x67 /r"/"RM" { .Instruction = ND_INS_PACKUSWB, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 557, + .Mnemonic = 558, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -46448,6 +48162,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -46461,12 +48176,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1659 Instruction:"PADDB Pq,Qq" Encoding:"NP 0x0F 0xFC /r"/"RM" + // Pos:1661 Instruction:"PADDB Pq,Qq" Encoding:"NP 0x0F 0xFC /r"/"RM" { .Instruction = ND_INS_PADDB, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 558, + .Mnemonic = 559, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -46475,6 +48190,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -46488,12 +48204,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1660 Instruction:"PADDB Vx,Wx" Encoding:"0x66 0x0F 0xFC /r"/"RM" + // Pos:1662 Instruction:"PADDB Vx,Wx" Encoding:"0x66 0x0F 0xFC /r"/"RM" { .Instruction = ND_INS_PADDB, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 558, + .Mnemonic = 559, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -46502,6 +48218,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -46515,12 +48232,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1661 Instruction:"PADDD Pq,Qq" Encoding:"NP 0x0F 0xFE /r"/"RM" + // Pos:1663 Instruction:"PADDD Pq,Qq" Encoding:"NP 0x0F 0xFE /r"/"RM" { .Instruction = ND_INS_PADDD, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 559, + .Mnemonic = 560, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -46529,6 +48246,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -46542,12 +48260,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1662 Instruction:"PADDD Vx,Wx" Encoding:"0x66 0x0F 0xFE /r"/"RM" + // Pos:1664 Instruction:"PADDD Vx,Wx" Encoding:"0x66 0x0F 0xFE /r"/"RM" { .Instruction = ND_INS_PADDD, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 559, + .Mnemonic = 560, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -46556,6 +48274,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -46569,12 +48288,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1663 Instruction:"PADDQ Pq,Qq" Encoding:"NP 0x0F 0xD4 /r"/"RM" + // Pos:1665 Instruction:"PADDQ Pq,Qq" Encoding:"NP 0x0F 0xD4 /r"/"RM" { .Instruction = ND_INS_PADDQ, .Category = ND_CAT_MMX, .IsaSet = ND_SET_SSE2, - .Mnemonic = 560, + .Mnemonic = 561, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -46583,6 +48302,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -46596,12 +48316,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1664 Instruction:"PADDQ Vx,Wx" Encoding:"0x66 0x0F 0xD4 /r"/"RM" + // Pos:1666 Instruction:"PADDQ Vx,Wx" Encoding:"0x66 0x0F 0xD4 /r"/"RM" { .Instruction = ND_INS_PADDQ, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 560, + .Mnemonic = 561, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -46610,6 +48330,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -46623,12 +48344,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1665 Instruction:"PADDSB Pq,Qq" Encoding:"NP 0x0F 0xEC /r"/"RM" + // Pos:1667 Instruction:"PADDSB Pq,Qq" Encoding:"NP 0x0F 0xEC /r"/"RM" { .Instruction = ND_INS_PADDSB, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 561, + .Mnemonic = 562, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -46637,6 +48358,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -46650,12 +48372,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1666 Instruction:"PADDSB Vx,Wx" Encoding:"0x66 0x0F 0xEC /r"/"RM" + // Pos:1668 Instruction:"PADDSB Vx,Wx" Encoding:"0x66 0x0F 0xEC /r"/"RM" { .Instruction = ND_INS_PADDSB, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 561, + .Mnemonic = 562, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -46664,6 +48386,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -46677,12 +48400,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1667 Instruction:"PADDSW Pq,Qq" Encoding:"NP 0x0F 0xED /r"/"RM" + // Pos:1669 Instruction:"PADDSW Pq,Qq" Encoding:"NP 0x0F 0xED /r"/"RM" { .Instruction = ND_INS_PADDSW, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 562, + .Mnemonic = 563, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -46691,6 +48414,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -46704,12 +48428,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1668 Instruction:"PADDSW Vx,Wx" Encoding:"0x66 0x0F 0xED /r"/"RM" + // Pos:1670 Instruction:"PADDSW Vx,Wx" Encoding:"0x66 0x0F 0xED /r"/"RM" { .Instruction = ND_INS_PADDSW, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 562, + .Mnemonic = 563, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -46718,6 +48442,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -46731,12 +48456,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1669 Instruction:"PADDUSB Pq,Qq" Encoding:"NP 0x0F 0xDC /r"/"RM" + // Pos:1671 Instruction:"PADDUSB Pq,Qq" Encoding:"NP 0x0F 0xDC /r"/"RM" { .Instruction = ND_INS_PADDUSB, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 563, + .Mnemonic = 564, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -46745,6 +48470,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -46758,12 +48484,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1670 Instruction:"PADDUSB Vx,Wx" Encoding:"0x66 0x0F 0xDC /r"/"RM" + // Pos:1672 Instruction:"PADDUSB Vx,Wx" Encoding:"0x66 0x0F 0xDC /r"/"RM" { .Instruction = ND_INS_PADDUSB, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 563, + .Mnemonic = 564, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -46772,6 +48498,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -46785,12 +48512,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1671 Instruction:"PADDUSW Pq,Qq" Encoding:"NP 0x0F 0xDD /r"/"RM" + // Pos:1673 Instruction:"PADDUSW Pq,Qq" Encoding:"NP 0x0F 0xDD /r"/"RM" { .Instruction = ND_INS_PADDUSW, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 564, + .Mnemonic = 565, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -46799,6 +48526,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -46812,12 +48540,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1672 Instruction:"PADDUSW Vx,Wx" Encoding:"0x66 0x0F 0xDD /r"/"RM" + // Pos:1674 Instruction:"PADDUSW Vx,Wx" Encoding:"0x66 0x0F 0xDD /r"/"RM" { .Instruction = ND_INS_PADDUSW, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 564, + .Mnemonic = 565, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -46826,6 +48554,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -46839,12 +48568,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1673 Instruction:"PADDW Pq,Qq" Encoding:"NP 0x0F 0xFD /r"/"RM" + // Pos:1675 Instruction:"PADDW Pq,Qq" Encoding:"NP 0x0F 0xFD /r"/"RM" { .Instruction = ND_INS_PADDW, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 565, + .Mnemonic = 566, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -46853,6 +48582,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -46866,12 +48596,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1674 Instruction:"PADDW Vx,Wx" Encoding:"0x66 0x0F 0xFD /r"/"RM" + // Pos:1676 Instruction:"PADDW Vx,Wx" Encoding:"0x66 0x0F 0xFD /r"/"RM" { .Instruction = ND_INS_PADDW, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 565, + .Mnemonic = 566, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -46880,6 +48610,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -46893,12 +48624,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1675 Instruction:"PALIGNR Pq,Qq,Ib" Encoding:"NP 0x0F 0x3A 0x0F /r ib"/"RMI" + // Pos:1677 Instruction:"PALIGNR Pq,Qq,Ib" Encoding:"NP 0x0F 0x3A 0x0F /r ib"/"RMI" { .Instruction = ND_INS_PALIGNR, .Category = ND_CAT_MMX, .IsaSet = ND_SET_SSSE3, - .Mnemonic = 566, + .Mnemonic = 567, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -46907,6 +48638,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -46921,12 +48653,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1676 Instruction:"PALIGNR Vx,Wx,Ib" Encoding:"0x66 0x0F 0x3A 0x0F /r ib"/"RMI" + // Pos:1678 Instruction:"PALIGNR Vx,Wx,Ib" Encoding:"0x66 0x0F 0x3A 0x0F /r ib"/"RMI" { .Instruction = ND_INS_PALIGNR, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSSE3, - .Mnemonic = 566, + .Mnemonic = 567, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -46935,6 +48667,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -46949,12 +48682,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1677 Instruction:"PAND Pq,Qq" Encoding:"NP 0x0F 0xDB /r"/"RM" + // Pos:1679 Instruction:"PAND Pq,Qq" Encoding:"NP 0x0F 0xDB /r"/"RM" { .Instruction = ND_INS_PAND, .Category = ND_CAT_LOGICAL, .IsaSet = ND_SET_MMX, - .Mnemonic = 567, + .Mnemonic = 568, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -46963,6 +48696,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -46976,12 +48710,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1678 Instruction:"PAND Vx,Wx" Encoding:"0x66 0x0F 0xDB /r"/"RM" + // Pos:1680 Instruction:"PAND Vx,Wx" Encoding:"0x66 0x0F 0xDB /r"/"RM" { .Instruction = ND_INS_PAND, .Category = ND_CAT_LOGICAL, .IsaSet = ND_SET_SSE2, - .Mnemonic = 567, + .Mnemonic = 568, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -46990,6 +48724,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -47003,12 +48738,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1679 Instruction:"PANDN Pq,Qq" Encoding:"NP 0x0F 0xDF /r"/"RM" + // Pos:1681 Instruction:"PANDN Pq,Qq" Encoding:"NP 0x0F 0xDF /r"/"RM" { .Instruction = ND_INS_PANDN, .Category = ND_CAT_LOGICAL, .IsaSet = ND_SET_MMX, - .Mnemonic = 568, + .Mnemonic = 569, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -47017,6 +48752,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -47030,12 +48766,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1680 Instruction:"PANDN Vx,Wx" Encoding:"0x66 0x0F 0xDF /r"/"RM" + // Pos:1682 Instruction:"PANDN Vx,Wx" Encoding:"0x66 0x0F 0xDF /r"/"RM" { .Instruction = ND_INS_PANDN, .Category = ND_CAT_LOGICAL, .IsaSet = ND_SET_SSE2, - .Mnemonic = 568, + .Mnemonic = 569, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -47044,6 +48780,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -47057,12 +48794,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1681 Instruction:"PAUSE" Encoding:"repz 0x90"/"" + // Pos:1683 Instruction:"PAUSE" Encoding:"repz 0x90"/"" { .Instruction = ND_INS_PAUSE, .Category = ND_CAT_MISC, .IsaSet = ND_SET_PAUSE, - .Mnemonic = 569, + .Mnemonic = 570, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_REAL|ND_MOD_V8086|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -47071,6 +48808,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -47083,12 +48821,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1682 Instruction:"PAVGB Pq,Qq" Encoding:"NP 0x0F 0xE0 /r"/"RM" + // Pos:1684 Instruction:"PAVGB Pq,Qq" Encoding:"NP 0x0F 0xE0 /r"/"RM" { .Instruction = ND_INS_PAVGB, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 570, + .Mnemonic = 571, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -47097,6 +48835,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -47110,12 +48849,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1683 Instruction:"PAVGB Vx,Wx" Encoding:"0x66 0x0F 0xE0 /r"/"RM" + // Pos:1685 Instruction:"PAVGB Vx,Wx" Encoding:"0x66 0x0F 0xE0 /r"/"RM" { .Instruction = ND_INS_PAVGB, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 570, + .Mnemonic = 571, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -47124,6 +48863,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -47137,12 +48877,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1684 Instruction:"PAVGUSB Pq,Qq" Encoding:"0x0F 0x0F /r 0xBF"/"RM" + // Pos:1686 Instruction:"PAVGUSB Pq,Qq" Encoding:"0x0F 0x0F /r 0xBF"/"RM" { .Instruction = ND_INS_PAVGUSB, .Category = ND_CAT_3DNOW, .IsaSet = ND_SET_3DNOW, - .Mnemonic = 571, + .Mnemonic = 572, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -47151,6 +48891,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -47164,12 +48905,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1685 Instruction:"PAVGW Pq,Qq" Encoding:"NP 0x0F 0xE3 /r"/"RM" + // Pos:1687 Instruction:"PAVGW Pq,Qq" Encoding:"NP 0x0F 0xE3 /r"/"RM" { .Instruction = ND_INS_PAVGW, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 572, + .Mnemonic = 573, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -47178,6 +48919,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -47191,12 +48933,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1686 Instruction:"PAVGW Vx,Wx" Encoding:"0x66 0x0F 0xE3 /r"/"RM" + // Pos:1688 Instruction:"PAVGW Vx,Wx" Encoding:"0x66 0x0F 0xE3 /r"/"RM" { .Instruction = ND_INS_PAVGW, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 572, + .Mnemonic = 573, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -47205,6 +48947,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -47218,12 +48961,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1687 Instruction:"PBLENDVB Vdq,Wdq" Encoding:"0x66 0x0F 0x38 0x10 /r"/"RM" + // Pos:1689 Instruction:"PBLENDVB Vdq,Wdq" Encoding:"0x66 0x0F 0x38 0x10 /r"/"RM" { .Instruction = ND_INS_PBLENDVB, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE4, - .Mnemonic = 573, + .Mnemonic = 574, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -47232,6 +48975,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -47246,12 +48990,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1688 Instruction:"PBLENDW Vx,Wx,Ib" Encoding:"0x66 0x0F 0x3A 0x0E /r ib"/"RMI" + // Pos:1690 Instruction:"PBLENDW Vx,Wx,Ib" Encoding:"0x66 0x0F 0x3A 0x0E /r ib"/"RMI" { .Instruction = ND_INS_PBLENDW, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE4, - .Mnemonic = 574, + .Mnemonic = 575, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -47260,6 +49004,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -47274,12 +49019,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1689 Instruction:"PBNDKB" Encoding:"NP 0x0F 0x01 /0xC7"/"" + // Pos:1691 Instruction:"PBNDKB" Encoding:"NP 0x0F 0x01 /0xC7"/"" { .Instruction = ND_INS_PBNDKB, .Category = ND_CAT_SYSTEM, .IsaSet = ND_SET_TSE, - .Mnemonic = 575, + .Mnemonic = 576, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -47288,6 +49033,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_ZF, .SetFlags = 0, @@ -47303,12 +49049,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1690 Instruction:"PCLMULQDQ Vdq,Wdq,Ib" Encoding:"0x66 0x0F 0x3A 0x44 /r ib"/"RMI" + // Pos:1692 Instruction:"PCLMULQDQ Vdq,Wdq,Ib" Encoding:"0x66 0x0F 0x3A 0x44 /r ib"/"RMI" { .Instruction = ND_INS_PCLMULQDQ, .Category = ND_CAT_PCLMULQDQ, .IsaSet = ND_SET_PCLMULQDQ, - .Mnemonic = 576, + .Mnemonic = 577, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -47317,6 +49063,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -47331,12 +49078,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1691 Instruction:"PCMPEQB Pq,Qq" Encoding:"NP 0x0F 0x74 /r"/"RM" + // Pos:1693 Instruction:"PCMPEQB Pq,Qq" Encoding:"NP 0x0F 0x74 /r"/"RM" { .Instruction = ND_INS_PCMPEQB, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 577, + .Mnemonic = 578, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -47345,6 +49092,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -47358,12 +49106,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1692 Instruction:"PCMPEQB Vx,Wx" Encoding:"0x66 0x0F 0x74 /r"/"RM" + // Pos:1694 Instruction:"PCMPEQB Vx,Wx" Encoding:"0x66 0x0F 0x74 /r"/"RM" { .Instruction = ND_INS_PCMPEQB, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 577, + .Mnemonic = 578, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -47372,6 +49120,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -47385,12 +49134,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1693 Instruction:"PCMPEQD Pq,Qq" Encoding:"NP 0x0F 0x76 /r"/"RM" + // Pos:1695 Instruction:"PCMPEQD Pq,Qq" Encoding:"NP 0x0F 0x76 /r"/"RM" { .Instruction = ND_INS_PCMPEQD, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 578, + .Mnemonic = 579, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -47399,6 +49148,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -47412,12 +49162,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1694 Instruction:"PCMPEQD Vx,Wx" Encoding:"0x66 0x0F 0x76 /r"/"RM" + // Pos:1696 Instruction:"PCMPEQD Vx,Wx" Encoding:"0x66 0x0F 0x76 /r"/"RM" { .Instruction = ND_INS_PCMPEQD, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 578, + .Mnemonic = 579, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -47426,6 +49176,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -47439,12 +49190,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1695 Instruction:"PCMPEQQ Vx,Wx" Encoding:"0x66 0x0F 0x38 0x29 /r"/"RM" + // Pos:1697 Instruction:"PCMPEQQ Vx,Wx" Encoding:"0x66 0x0F 0x38 0x29 /r"/"RM" { .Instruction = ND_INS_PCMPEQQ, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE4, - .Mnemonic = 579, + .Mnemonic = 580, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -47453,6 +49204,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -47466,12 +49218,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1696 Instruction:"PCMPEQW Pq,Qq" Encoding:"NP 0x0F 0x75 /r"/"RM" + // Pos:1698 Instruction:"PCMPEQW Pq,Qq" Encoding:"NP 0x0F 0x75 /r"/"RM" { .Instruction = ND_INS_PCMPEQW, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 580, + .Mnemonic = 581, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -47480,6 +49232,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -47493,12 +49246,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1697 Instruction:"PCMPEQW Vx,Wx" Encoding:"0x66 0x0F 0x75 /r"/"RM" + // Pos:1699 Instruction:"PCMPEQW Vx,Wx" Encoding:"0x66 0x0F 0x75 /r"/"RM" { .Instruction = ND_INS_PCMPEQW, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 580, + .Mnemonic = 581, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -47507,6 +49260,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -47520,12 +49274,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1698 Instruction:"PCMPESTRI Vdq,Wdq,Ib" Encoding:"0x66 0x0F 0x3A 0x61 /r ib"/"RMI" + // Pos:1700 Instruction:"PCMPESTRI Vdq,Wdq,Ib" Encoding:"0x66 0x0F 0x3A 0x61 /r ib"/"RMI" { .Instruction = ND_INS_PCMPESTRI, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE42, - .Mnemonic = 581, + .Mnemonic = 582, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -47534,6 +49288,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -47552,12 +49307,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1699 Instruction:"PCMPESTRM Vdq,Wdq,Ib" Encoding:"0x66 0x0F 0x3A 0x60 /r ib"/"RMI" + // Pos:1701 Instruction:"PCMPESTRM Vdq,Wdq,Ib" Encoding:"0x66 0x0F 0x3A 0x60 /r ib"/"RMI" { .Instruction = ND_INS_PCMPESTRM, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE42, - .Mnemonic = 582, + .Mnemonic = 583, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -47566,6 +49321,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -47584,12 +49340,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1700 Instruction:"PCMPGTB Pq,Qq" Encoding:"NP 0x0F 0x64 /r"/"RM" + // Pos:1702 Instruction:"PCMPGTB Pq,Qq" Encoding:"NP 0x0F 0x64 /r"/"RM" { .Instruction = ND_INS_PCMPGTB, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 583, + .Mnemonic = 584, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -47598,6 +49354,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -47611,12 +49368,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1701 Instruction:"PCMPGTB Vx,Wx" Encoding:"0x66 0x0F 0x64 /r"/"RM" + // Pos:1703 Instruction:"PCMPGTB Vx,Wx" Encoding:"0x66 0x0F 0x64 /r"/"RM" { .Instruction = ND_INS_PCMPGTB, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 583, + .Mnemonic = 584, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -47625,6 +49382,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -47638,12 +49396,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1702 Instruction:"PCMPGTD Pq,Qq" Encoding:"NP 0x0F 0x66 /r"/"RM" + // Pos:1704 Instruction:"PCMPGTD Pq,Qq" Encoding:"NP 0x0F 0x66 /r"/"RM" { .Instruction = ND_INS_PCMPGTD, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 584, + .Mnemonic = 585, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -47652,6 +49410,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -47665,12 +49424,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1703 Instruction:"PCMPGTD Vx,Wx" Encoding:"0x66 0x0F 0x66 /r"/"RM" + // Pos:1705 Instruction:"PCMPGTD Vx,Wx" Encoding:"0x66 0x0F 0x66 /r"/"RM" { .Instruction = ND_INS_PCMPGTD, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 584, + .Mnemonic = 585, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -47679,6 +49438,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -47692,12 +49452,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1704 Instruction:"PCMPGTQ Vx,Wx" Encoding:"0x66 0x0F 0x38 0x37 /r"/"RM" + // Pos:1706 Instruction:"PCMPGTQ Vx,Wx" Encoding:"0x66 0x0F 0x38 0x37 /r"/"RM" { .Instruction = ND_INS_PCMPGTQ, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE42, - .Mnemonic = 585, + .Mnemonic = 586, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -47706,6 +49466,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -47719,12 +49480,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1705 Instruction:"PCMPGTW Pq,Qq" Encoding:"NP 0x0F 0x65 /r"/"RM" + // Pos:1707 Instruction:"PCMPGTW Pq,Qq" Encoding:"NP 0x0F 0x65 /r"/"RM" { .Instruction = ND_INS_PCMPGTW, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 586, + .Mnemonic = 587, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -47733,6 +49494,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -47746,12 +49508,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1706 Instruction:"PCMPGTW Vx,Wx" Encoding:"0x66 0x0F 0x65 /r"/"RM" + // Pos:1708 Instruction:"PCMPGTW Vx,Wx" Encoding:"0x66 0x0F 0x65 /r"/"RM" { .Instruction = ND_INS_PCMPGTW, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 586, + .Mnemonic = 587, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -47760,6 +49522,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -47773,12 +49536,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1707 Instruction:"PCMPISTRI Vdq,Wdq,Ib" Encoding:"0x66 0x0F 0x3A 0x63 /r ib"/"RMI" + // Pos:1709 Instruction:"PCMPISTRI Vdq,Wdq,Ib" Encoding:"0x66 0x0F 0x3A 0x63 /r ib"/"RMI" { .Instruction = ND_INS_PCMPISTRI, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE42, - .Mnemonic = 587, + .Mnemonic = 588, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -47787,6 +49550,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -47803,12 +49567,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1708 Instruction:"PCMPISTRM Vdq,Wdq,Ib" Encoding:"0x66 0x0F 0x3A 0x62 /r ib"/"RMI" + // Pos:1710 Instruction:"PCMPISTRM Vdq,Wdq,Ib" Encoding:"0x66 0x0F 0x3A 0x62 /r ib"/"RMI" { .Instruction = ND_INS_PCMPISTRM, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE42, - .Mnemonic = 588, + .Mnemonic = 589, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -47817,6 +49581,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -47833,12 +49598,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1709 Instruction:"PCONFIG" Encoding:"NP 0x0F 0x01 /0xC5"/"" + // Pos:1711 Instruction:"PCONFIG" Encoding:"NP 0x0F 0x01 /0xC5"/"" { .Instruction = ND_INS_PCONFIG, .Category = ND_CAT_PCONFIG, .IsaSet = ND_SET_PCONFIG, - .Mnemonic = 589, + .Mnemonic = 590, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_REAL|ND_MOD_V8086|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -47847,6 +49612,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_ZF, .SetFlags = 0, @@ -47863,12 +49629,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1710 Instruction:"PDEP Gy,By,Ey" Encoding:"evex m:2 p:3 l:0 nf:0 0xF5 /r"/"RVM" + // Pos:1712 Instruction:"PDEP Gy,By,Ey" Encoding:"evex m:2 p:3 l:0 nf:0 0xF5 /r"/"RVM" { .Instruction = ND_INS_PDEP, .Category = ND_CAT_BMI2, .IsaSet = ND_SET_APX_F, - .Mnemonic = 590, + .Mnemonic = 591, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -47877,6 +49643,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_BMI, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -47891,12 +49658,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1711 Instruction:"PDEP Gy,By,Ey" Encoding:"vex m:2 p:3 l:0 w:x 0xF5 /r"/"RVM" + // Pos:1713 Instruction:"PDEP Gy,By,Ey" Encoding:"vex m:2 p:3 l:0 w:x 0xF5 /r"/"RVM" { .Instruction = ND_INS_PDEP, .Category = ND_CAT_BMI2, .IsaSet = ND_SET_BMI2, - .Mnemonic = 590, + .Mnemonic = 591, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -47905,6 +49672,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_13, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -47919,12 +49687,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1712 Instruction:"PEXT Gy,By,Ey" Encoding:"evex m:2 p:2 l:0 nf:0 0xF5 /r"/"RVM" + // Pos:1714 Instruction:"PEXT Gy,By,Ey" Encoding:"evex m:2 p:2 l:0 nf:0 0xF5 /r"/"RVM" { .Instruction = ND_INS_PEXT, .Category = ND_CAT_BMI2, .IsaSet = ND_SET_APX_F, - .Mnemonic = 591, + .Mnemonic = 592, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -47933,6 +49701,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_BMI, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -47947,12 +49716,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1713 Instruction:"PEXT Gy,By,Ey" Encoding:"vex m:2 p:2 l:0 w:x 0xF5 /r"/"RVM" + // Pos:1715 Instruction:"PEXT Gy,By,Ey" Encoding:"vex m:2 p:2 l:0 w:x 0xF5 /r"/"RVM" { .Instruction = ND_INS_PEXT, .Category = ND_CAT_BMI2, .IsaSet = ND_SET_BMI2, - .Mnemonic = 591, + .Mnemonic = 592, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -47961,6 +49730,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_13, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -47975,12 +49745,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1714 Instruction:"PEXTRB Mb,Vdq,Ib" Encoding:"0x66 0x0F 0x3A 0x14 /r:mem ib"/"MRI" + // Pos:1716 Instruction:"PEXTRB Mb,Vdq,Ib" Encoding:"0x66 0x0F 0x3A 0x14 /r:mem ib"/"MRI" { .Instruction = ND_INS_PEXTRB, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE4, - .Mnemonic = 592, + .Mnemonic = 593, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -47989,6 +49759,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -48003,12 +49774,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1715 Instruction:"PEXTRB Ry,Vdq,Ib" Encoding:"0x66 0x0F 0x3A 0x14 /r:reg ib"/"MRI" + // Pos:1717 Instruction:"PEXTRB Ry,Vdq,Ib" Encoding:"0x66 0x0F 0x3A 0x14 /r:reg ib"/"MRI" { .Instruction = ND_INS_PEXTRB, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE4, - .Mnemonic = 592, + .Mnemonic = 593, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -48017,6 +49788,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -48031,12 +49803,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1716 Instruction:"PEXTRD Md,Vdq,Ib" Encoding:"0x66 0x0F 0x3A 0x16 /r:mem ib"/"MRI" + // Pos:1718 Instruction:"PEXTRD Md,Vdq,Ib" Encoding:"0x66 0x0F 0x3A 0x16 /r:mem ib"/"MRI" { .Instruction = ND_INS_PEXTRD, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE4, - .Mnemonic = 593, + .Mnemonic = 594, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -48045,6 +49817,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -48059,12 +49832,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1717 Instruction:"PEXTRD Ry,Vdq,Ib" Encoding:"0x66 0x0F 0x3A 0x16 /r:reg ib"/"MRI" + // Pos:1719 Instruction:"PEXTRD Ry,Vdq,Ib" Encoding:"0x66 0x0F 0x3A 0x16 /r:reg ib"/"MRI" { .Instruction = ND_INS_PEXTRD, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE4, - .Mnemonic = 593, + .Mnemonic = 594, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -48073,6 +49846,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -48087,12 +49861,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1718 Instruction:"PEXTRQ Mq,Vdq,Ib" Encoding:"rexw 0x66 0x0F 0x3A 0x16 /r:mem ib"/"MRI" + // Pos:1720 Instruction:"PEXTRQ Mq,Vdq,Ib" Encoding:"rexw 0x66 0x0F 0x3A 0x16 /r:mem ib"/"MRI" { .Instruction = ND_INS_PEXTRQ, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE4, - .Mnemonic = 594, + .Mnemonic = 595, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -48101,6 +49875,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -48115,12 +49890,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1719 Instruction:"PEXTRQ Ry,Vdq,Ib" Encoding:"rexw 0x66 0x0F 0x3A 0x16 /r:reg ib"/"MRI" + // Pos:1721 Instruction:"PEXTRQ Ry,Vdq,Ib" Encoding:"rexw 0x66 0x0F 0x3A 0x16 /r:reg ib"/"MRI" { .Instruction = ND_INS_PEXTRQ, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE4, - .Mnemonic = 594, + .Mnemonic = 595, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -48129,6 +49904,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -48143,12 +49919,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1720 Instruction:"PEXTRW Gy,Nq,Ib" Encoding:"NP 0x0F 0xC5 /r:reg ib"/"RMI" + // Pos:1722 Instruction:"PEXTRW Gy,Nq,Ib" Encoding:"NP 0x0F 0xC5 /r:reg ib"/"RMI" { .Instruction = ND_INS_PEXTRW, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 595, + .Mnemonic = 596, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -48157,6 +49933,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -48171,12 +49948,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1721 Instruction:"PEXTRW Gy,Udq,Ib" Encoding:"0x66 0x0F 0xC5 /r:reg ib"/"RMI" + // Pos:1723 Instruction:"PEXTRW Gy,Udq,Ib" Encoding:"0x66 0x0F 0xC5 /r:reg ib"/"RMI" { .Instruction = ND_INS_PEXTRW, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 595, + .Mnemonic = 596, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -48185,6 +49962,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -48199,12 +49977,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1722 Instruction:"PEXTRW Mw,Vdq,Ib" Encoding:"0x66 0x0F 0x3A 0x15 /r:mem ib"/"MRI" + // Pos:1724 Instruction:"PEXTRW Mw,Vdq,Ib" Encoding:"0x66 0x0F 0x3A 0x15 /r:mem ib"/"MRI" { .Instruction = ND_INS_PEXTRW, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE4, - .Mnemonic = 595, + .Mnemonic = 596, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -48213,6 +49991,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -48227,12 +50006,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1723 Instruction:"PEXTRW Ry,Vdq,Ib" Encoding:"0x66 0x0F 0x3A 0x15 /r:reg ib"/"MRI" + // Pos:1725 Instruction:"PEXTRW Ry,Vdq,Ib" Encoding:"0x66 0x0F 0x3A 0x15 /r:reg ib"/"MRI" { .Instruction = ND_INS_PEXTRW, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE4, - .Mnemonic = 595, + .Mnemonic = 596, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -48241,6 +50020,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -48255,12 +50035,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1724 Instruction:"PF2ID Pq,Qq" Encoding:"0x0F 0x0F /r 0x1D"/"RM" + // Pos:1726 Instruction:"PF2ID Pq,Qq" Encoding:"0x0F 0x0F /r 0x1D"/"RM" { .Instruction = ND_INS_PF2ID, .Category = ND_CAT_3DNOW, .IsaSet = ND_SET_3DNOW, - .Mnemonic = 596, + .Mnemonic = 597, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -48269,6 +50049,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -48282,12 +50063,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1725 Instruction:"PF2IW Pq,Qq" Encoding:"0x0F 0x0F /r 0x1C"/"RM" + // Pos:1727 Instruction:"PF2IW Pq,Qq" Encoding:"0x0F 0x0F /r 0x1C"/"RM" { .Instruction = ND_INS_PF2IW, .Category = ND_CAT_3DNOW, .IsaSet = ND_SET_3DNOW, - .Mnemonic = 597, + .Mnemonic = 598, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -48296,6 +50077,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -48309,12 +50091,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1726 Instruction:"PFACC Pq,Qq" Encoding:"0x0F 0x0F /r 0xAE"/"RM" + // Pos:1728 Instruction:"PFACC Pq,Qq" Encoding:"0x0F 0x0F /r 0xAE"/"RM" { .Instruction = ND_INS_PFACC, .Category = ND_CAT_3DNOW, .IsaSet = ND_SET_3DNOW, - .Mnemonic = 598, + .Mnemonic = 599, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -48323,6 +50105,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -48336,12 +50119,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1727 Instruction:"PFADD Pq,Qq" Encoding:"0x0F 0x0F /r 0x9E"/"RM" + // Pos:1729 Instruction:"PFADD Pq,Qq" Encoding:"0x0F 0x0F /r 0x9E"/"RM" { .Instruction = ND_INS_PFADD, .Category = ND_CAT_3DNOW, .IsaSet = ND_SET_3DNOW, - .Mnemonic = 599, + .Mnemonic = 600, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -48350,6 +50133,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -48363,12 +50147,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1728 Instruction:"PFCMPEQ Pq,Qq" Encoding:"0x0F 0x0F /r 0xB0"/"RM" + // Pos:1730 Instruction:"PFCMPEQ Pq,Qq" Encoding:"0x0F 0x0F /r 0xB0"/"RM" { .Instruction = ND_INS_PFCMPEQ, .Category = ND_CAT_3DNOW, .IsaSet = ND_SET_3DNOW, - .Mnemonic = 600, + .Mnemonic = 601, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -48377,6 +50161,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -48390,12 +50175,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1729 Instruction:"PFCMPGE Pq,Qq" Encoding:"0x0F 0x0F /r 0x90"/"RM" + // Pos:1731 Instruction:"PFCMPGE Pq,Qq" Encoding:"0x0F 0x0F /r 0x90"/"RM" { .Instruction = ND_INS_PFCMPGE, .Category = ND_CAT_3DNOW, .IsaSet = ND_SET_3DNOW, - .Mnemonic = 601, + .Mnemonic = 602, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -48404,6 +50189,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -48417,12 +50203,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1730 Instruction:"PFCMPGT Pq,Qq" Encoding:"0x0F 0x0F /r 0xA0"/"RM" + // Pos:1732 Instruction:"PFCMPGT Pq,Qq" Encoding:"0x0F 0x0F /r 0xA0"/"RM" { .Instruction = ND_INS_PFCMPGT, .Category = ND_CAT_3DNOW, .IsaSet = ND_SET_3DNOW, - .Mnemonic = 602, + .Mnemonic = 603, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -48431,6 +50217,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -48444,12 +50231,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1731 Instruction:"PFMAX Pq,Qq" Encoding:"0x0F 0x0F /r 0xA4"/"RM" + // Pos:1733 Instruction:"PFMAX Pq,Qq" Encoding:"0x0F 0x0F /r 0xA4"/"RM" { .Instruction = ND_INS_PFMAX, .Category = ND_CAT_3DNOW, .IsaSet = ND_SET_3DNOW, - .Mnemonic = 603, + .Mnemonic = 604, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -48458,6 +50245,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -48471,12 +50259,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1732 Instruction:"PFMIN Pq,Qq" Encoding:"0x0F 0x0F /r 0x94"/"RM" + // Pos:1734 Instruction:"PFMIN Pq,Qq" Encoding:"0x0F 0x0F /r 0x94"/"RM" { .Instruction = ND_INS_PFMIN, .Category = ND_CAT_3DNOW, .IsaSet = ND_SET_3DNOW, - .Mnemonic = 604, + .Mnemonic = 605, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -48485,6 +50273,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -48498,12 +50287,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1733 Instruction:"PFMUL Pq,Qq" Encoding:"0x0F 0x0F /r 0xB4"/"RM" + // Pos:1735 Instruction:"PFMUL Pq,Qq" Encoding:"0x0F 0x0F /r 0xB4"/"RM" { .Instruction = ND_INS_PFMUL, .Category = ND_CAT_3DNOW, .IsaSet = ND_SET_3DNOW, - .Mnemonic = 605, + .Mnemonic = 606, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -48512,6 +50301,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -48525,12 +50315,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1734 Instruction:"PFNACC Pq,Qq" Encoding:"0x0F 0x0F /r 0x8A"/"RM" + // Pos:1736 Instruction:"PFNACC Pq,Qq" Encoding:"0x0F 0x0F /r 0x8A"/"RM" { .Instruction = ND_INS_PFNACC, .Category = ND_CAT_3DNOW, .IsaSet = ND_SET_3DNOW, - .Mnemonic = 606, + .Mnemonic = 607, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -48539,6 +50329,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -48552,12 +50343,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1735 Instruction:"PFPNACC Pq,Qq" Encoding:"0x0F 0x0F /r 0x8E"/"RM" + // Pos:1737 Instruction:"PFPNACC Pq,Qq" Encoding:"0x0F 0x0F /r 0x8E"/"RM" { .Instruction = ND_INS_PFPNACC, .Category = ND_CAT_3DNOW, .IsaSet = ND_SET_3DNOW, - .Mnemonic = 607, + .Mnemonic = 608, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -48566,6 +50357,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -48579,12 +50371,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1736 Instruction:"PFRCP Pq,Qq" Encoding:"0x0F 0x0F /r 0x96"/"RM" + // Pos:1738 Instruction:"PFRCP Pq,Qq" Encoding:"0x0F 0x0F /r 0x96"/"RM" { .Instruction = ND_INS_PFRCP, .Category = ND_CAT_3DNOW, .IsaSet = ND_SET_3DNOW, - .Mnemonic = 608, + .Mnemonic = 609, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -48593,6 +50385,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -48606,12 +50399,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1737 Instruction:"PFRCPIT1 Pq,Qq" Encoding:"0x0F 0x0F /r 0xA6"/"RM" + // Pos:1739 Instruction:"PFRCPIT1 Pq,Qq" Encoding:"0x0F 0x0F /r 0xA6"/"RM" { .Instruction = ND_INS_PFRCPIT1, .Category = ND_CAT_3DNOW, .IsaSet = ND_SET_3DNOW, - .Mnemonic = 609, + .Mnemonic = 610, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -48620,6 +50413,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -48633,12 +50427,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1738 Instruction:"PFRCPIT2 Pq,Qq" Encoding:"0x0F 0x0F /r 0xB6"/"RM" + // Pos:1740 Instruction:"PFRCPIT2 Pq,Qq" Encoding:"0x0F 0x0F /r 0xB6"/"RM" { .Instruction = ND_INS_PFRCPIT2, .Category = ND_CAT_3DNOW, .IsaSet = ND_SET_3DNOW, - .Mnemonic = 610, + .Mnemonic = 611, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -48647,6 +50441,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -48660,12 +50455,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1739 Instruction:"PFRCPV Pq,Qq" Encoding:"0x0F 0x0F /r 0x86"/"RM" + // Pos:1741 Instruction:"PFRCPV Pq,Qq" Encoding:"0x0F 0x0F /r 0x86"/"RM" { .Instruction = ND_INS_PFRCPV, .Category = ND_CAT_3DNOW, .IsaSet = ND_SET_3DNOW, - .Mnemonic = 611, + .Mnemonic = 612, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_REAL|ND_MOD_V8086|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -48674,6 +50469,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -48687,12 +50483,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1740 Instruction:"PFRSQIT1 Pq,Qq" Encoding:"0x0F 0x0F /r 0xA7"/"RM" + // Pos:1742 Instruction:"PFRSQIT1 Pq,Qq" Encoding:"0x0F 0x0F /r 0xA7"/"RM" { .Instruction = ND_INS_PFRSQIT1, .Category = ND_CAT_3DNOW, .IsaSet = ND_SET_3DNOW, - .Mnemonic = 612, + .Mnemonic = 613, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -48701,6 +50497,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -48714,12 +50511,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1741 Instruction:"PFRSQRT Pq,Qq" Encoding:"0x0F 0x0F /r 0x97"/"RM" + // Pos:1743 Instruction:"PFRSQRT Pq,Qq" Encoding:"0x0F 0x0F /r 0x97"/"RM" { .Instruction = ND_INS_PFRSQRT, .Category = ND_CAT_3DNOW, .IsaSet = ND_SET_3DNOW, - .Mnemonic = 613, + .Mnemonic = 614, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -48728,6 +50525,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -48741,12 +50539,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1742 Instruction:"PFRSQRTV Pq,Qq" Encoding:"0x0F 0x0F /r 0x87"/"RM" + // Pos:1744 Instruction:"PFRSQRTV Pq,Qq" Encoding:"0x0F 0x0F /r 0x87"/"RM" { .Instruction = ND_INS_PFRSQRTV, .Category = ND_CAT_3DNOW, .IsaSet = ND_SET_3DNOW, - .Mnemonic = 614, + .Mnemonic = 615, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_REAL|ND_MOD_V8086|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -48755,6 +50553,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -48768,12 +50567,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1743 Instruction:"PFSUB Pq,Qq" Encoding:"0x0F 0x0F /r 0x9A"/"RM" + // Pos:1745 Instruction:"PFSUB Pq,Qq" Encoding:"0x0F 0x0F /r 0x9A"/"RM" { .Instruction = ND_INS_PFSUB, .Category = ND_CAT_3DNOW, .IsaSet = ND_SET_3DNOW, - .Mnemonic = 615, + .Mnemonic = 616, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -48782,6 +50581,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -48795,12 +50595,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1744 Instruction:"PFSUBR Pq,Qq" Encoding:"0x0F 0x0F /r 0xAA"/"RM" + // Pos:1746 Instruction:"PFSUBR Pq,Qq" Encoding:"0x0F 0x0F /r 0xAA"/"RM" { .Instruction = ND_INS_PFSUBR, .Category = ND_CAT_3DNOW, .IsaSet = ND_SET_3DNOW, - .Mnemonic = 616, + .Mnemonic = 617, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -48809,6 +50609,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -48822,12 +50623,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1745 Instruction:"PHADDD Pq,Qq" Encoding:"NP 0x0F 0x38 0x02 /r"/"RM" + // Pos:1747 Instruction:"PHADDD Pq,Qq" Encoding:"NP 0x0F 0x38 0x02 /r"/"RM" { .Instruction = ND_INS_PHADDD, .Category = ND_CAT_MMX, .IsaSet = ND_SET_SSSE3, - .Mnemonic = 617, + .Mnemonic = 618, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -48836,6 +50637,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -48849,12 +50651,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1746 Instruction:"PHADDD Vx,Wx" Encoding:"0x66 0x0F 0x38 0x02 /r"/"RM" + // Pos:1748 Instruction:"PHADDD Vx,Wx" Encoding:"0x66 0x0F 0x38 0x02 /r"/"RM" { .Instruction = ND_INS_PHADDD, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSSE3, - .Mnemonic = 617, + .Mnemonic = 618, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -48863,6 +50665,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -48876,12 +50679,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1747 Instruction:"PHADDSW Pq,Qq" Encoding:"NP 0x0F 0x38 0x03 /r"/"RM" + // Pos:1749 Instruction:"PHADDSW Pq,Qq" Encoding:"NP 0x0F 0x38 0x03 /r"/"RM" { .Instruction = ND_INS_PHADDSW, .Category = ND_CAT_MMX, .IsaSet = ND_SET_SSSE3, - .Mnemonic = 618, + .Mnemonic = 619, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -48890,6 +50693,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -48903,12 +50707,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1748 Instruction:"PHADDSW Vx,Wx" Encoding:"0x66 0x0F 0x38 0x03 /r"/"RM" + // Pos:1750 Instruction:"PHADDSW Vx,Wx" Encoding:"0x66 0x0F 0x38 0x03 /r"/"RM" { .Instruction = ND_INS_PHADDSW, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSSE3, - .Mnemonic = 618, + .Mnemonic = 619, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -48917,6 +50721,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -48930,12 +50735,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1749 Instruction:"PHADDW Pq,Qq" Encoding:"NP 0x0F 0x38 0x01 /r"/"RM" + // Pos:1751 Instruction:"PHADDW Pq,Qq" Encoding:"NP 0x0F 0x38 0x01 /r"/"RM" { .Instruction = ND_INS_PHADDW, .Category = ND_CAT_MMX, .IsaSet = ND_SET_SSSE3, - .Mnemonic = 619, + .Mnemonic = 620, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -48944,6 +50749,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -48957,12 +50763,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1750 Instruction:"PHADDW Vx,Wx" Encoding:"0x66 0x0F 0x38 0x01 /r"/"RM" + // Pos:1752 Instruction:"PHADDW Vx,Wx" Encoding:"0x66 0x0F 0x38 0x01 /r"/"RM" { .Instruction = ND_INS_PHADDW, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSSE3, - .Mnemonic = 619, + .Mnemonic = 620, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -48971,6 +50777,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -48984,12 +50791,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1751 Instruction:"PHMINPOSUW Vdq,Wdq" Encoding:"0x66 0x0F 0x38 0x41 /r"/"RM" + // Pos:1753 Instruction:"PHMINPOSUW Vdq,Wdq" Encoding:"0x66 0x0F 0x38 0x41 /r"/"RM" { .Instruction = ND_INS_PHMINPOSUW, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE4, - .Mnemonic = 620, + .Mnemonic = 621, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -48998,6 +50805,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -49011,12 +50819,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1752 Instruction:"PHSUBD Pq,Qq" Encoding:"NP 0x0F 0x38 0x06 /r"/"RM" + // Pos:1754 Instruction:"PHSUBD Pq,Qq" Encoding:"NP 0x0F 0x38 0x06 /r"/"RM" { .Instruction = ND_INS_PHSUBD, .Category = ND_CAT_MMX, .IsaSet = ND_SET_SSSE3, - .Mnemonic = 621, + .Mnemonic = 622, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -49025,6 +50833,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -49038,12 +50847,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1753 Instruction:"PHSUBD Vx,Wx" Encoding:"0x66 0x0F 0x38 0x06 /r"/"RM" + // Pos:1755 Instruction:"PHSUBD Vx,Wx" Encoding:"0x66 0x0F 0x38 0x06 /r"/"RM" { .Instruction = ND_INS_PHSUBD, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSSE3, - .Mnemonic = 621, + .Mnemonic = 622, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -49052,6 +50861,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -49065,12 +50875,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1754 Instruction:"PHSUBSW Pq,Qq" Encoding:"NP 0x0F 0x38 0x07 /r"/"RM" + // Pos:1756 Instruction:"PHSUBSW Pq,Qq" Encoding:"NP 0x0F 0x38 0x07 /r"/"RM" { .Instruction = ND_INS_PHSUBSW, .Category = ND_CAT_MMX, .IsaSet = ND_SET_SSSE3, - .Mnemonic = 622, + .Mnemonic = 623, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -49079,6 +50889,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -49092,12 +50903,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1755 Instruction:"PHSUBSW Vx,Wx" Encoding:"0x66 0x0F 0x38 0x07 /r"/"RM" + // Pos:1757 Instruction:"PHSUBSW Vx,Wx" Encoding:"0x66 0x0F 0x38 0x07 /r"/"RM" { .Instruction = ND_INS_PHSUBSW, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSSE3, - .Mnemonic = 622, + .Mnemonic = 623, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -49106,6 +50917,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -49119,12 +50931,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1756 Instruction:"PHSUBW Pq,Qq" Encoding:"NP 0x0F 0x38 0x05 /r"/"RM" + // Pos:1758 Instruction:"PHSUBW Pq,Qq" Encoding:"NP 0x0F 0x38 0x05 /r"/"RM" { .Instruction = ND_INS_PHSUBW, .Category = ND_CAT_MMX, .IsaSet = ND_SET_SSSE3, - .Mnemonic = 623, + .Mnemonic = 624, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -49133,6 +50945,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -49146,12 +50959,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1757 Instruction:"PHSUBW Vx,Wx" Encoding:"0x66 0x0F 0x38 0x05 /r"/"RM" + // Pos:1759 Instruction:"PHSUBW Vx,Wx" Encoding:"0x66 0x0F 0x38 0x05 /r"/"RM" { .Instruction = ND_INS_PHSUBW, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSSE3, - .Mnemonic = 623, + .Mnemonic = 624, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -49160,6 +50973,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -49173,12 +50987,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1758 Instruction:"PI2FD Pq,Qq" Encoding:"0x0F 0x0F /r 0x0D"/"RM" + // Pos:1760 Instruction:"PI2FD Pq,Qq" Encoding:"0x0F 0x0F /r 0x0D"/"RM" { .Instruction = ND_INS_PI2FD, .Category = ND_CAT_3DNOW, .IsaSet = ND_SET_3DNOW, - .Mnemonic = 624, + .Mnemonic = 625, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -49187,6 +51001,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -49200,12 +51015,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1759 Instruction:"PI2FW Pq,Qq" Encoding:"0x0F 0x0F /r 0x0C"/"RM" + // Pos:1761 Instruction:"PI2FW Pq,Qq" Encoding:"0x0F 0x0F /r 0x0C"/"RM" { .Instruction = ND_INS_PI2FW, .Category = ND_CAT_3DNOW, .IsaSet = ND_SET_3DNOW, - .Mnemonic = 625, + .Mnemonic = 626, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -49214,6 +51029,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -49227,12 +51043,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1760 Instruction:"PINSRB Vdq,Mb,Ib" Encoding:"0x66 0x0F 0x3A 0x20 /r:mem ib"/"RMI" + // Pos:1762 Instruction:"PINSRB Vdq,Mb,Ib" Encoding:"0x66 0x0F 0x3A 0x20 /r:mem ib"/"RMI" { .Instruction = ND_INS_PINSRB, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE4, - .Mnemonic = 626, + .Mnemonic = 627, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -49241,6 +51057,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -49255,12 +51072,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1761 Instruction:"PINSRB Vdq,Ry,Ib" Encoding:"0x66 0x0F 0x3A 0x20 /r:reg ib"/"RMI" + // Pos:1763 Instruction:"PINSRB Vdq,Ry,Ib" Encoding:"0x66 0x0F 0x3A 0x20 /r:reg ib"/"RMI" { .Instruction = ND_INS_PINSRB, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE4, - .Mnemonic = 626, + .Mnemonic = 627, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -49269,6 +51086,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -49283,12 +51101,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1762 Instruction:"PINSRD Vdq,Ed,Ib" Encoding:"0x66 0x0F 0x3A 0x22 /r ib"/"RMI" + // Pos:1764 Instruction:"PINSRD Vdq,Ed,Ib" Encoding:"0x66 0x0F 0x3A 0x22 /r ib"/"RMI" { .Instruction = ND_INS_PINSRD, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE4, - .Mnemonic = 627, + .Mnemonic = 628, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -49297,6 +51115,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -49311,12 +51130,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1763 Instruction:"PINSRQ Vdq,Eq,Ib" Encoding:"rexw 0x66 0x0F 0x3A 0x22 /r ib"/"RMI" + // Pos:1765 Instruction:"PINSRQ Vdq,Eq,Ib" Encoding:"rexw 0x66 0x0F 0x3A 0x22 /r ib"/"RMI" { .Instruction = ND_INS_PINSRQ, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE4, - .Mnemonic = 628, + .Mnemonic = 629, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -49325,6 +51144,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -49339,12 +51159,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1764 Instruction:"PINSRW Pq,Rd,Ib" Encoding:"NP 0x0F 0xC4 /r:reg ib"/"RMI" + // Pos:1766 Instruction:"PINSRW Pq,Rd,Ib" Encoding:"NP 0x0F 0xC4 /r:reg ib"/"RMI" { .Instruction = ND_INS_PINSRW, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 629, + .Mnemonic = 630, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -49353,6 +51173,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -49367,12 +51188,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1765 Instruction:"PINSRW Pq,Mw,Ib" Encoding:"NP 0x0F 0xC4 /r:mem ib"/"RMI" + // Pos:1767 Instruction:"PINSRW Pq,Mw,Ib" Encoding:"NP 0x0F 0xC4 /r:mem ib"/"RMI" { .Instruction = ND_INS_PINSRW, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 629, + .Mnemonic = 630, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -49381,6 +51202,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -49395,12 +51217,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1766 Instruction:"PINSRW Vdq,Rd,Ib" Encoding:"0x66 0x0F 0xC4 /r:reg ib"/"RMI" + // Pos:1768 Instruction:"PINSRW Vdq,Rd,Ib" Encoding:"0x66 0x0F 0xC4 /r:reg ib"/"RMI" { .Instruction = ND_INS_PINSRW, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 629, + .Mnemonic = 630, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -49409,6 +51231,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -49423,12 +51246,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1767 Instruction:"PINSRW Vdq,Mw,Ib" Encoding:"0x66 0x0F 0xC4 /r:mem ib"/"RMI" + // Pos:1769 Instruction:"PINSRW Vdq,Mw,Ib" Encoding:"0x66 0x0F 0xC4 /r:mem ib"/"RMI" { .Instruction = ND_INS_PINSRW, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 629, + .Mnemonic = 630, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -49437,6 +51260,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -49451,12 +51275,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1768 Instruction:"PMADDUBSW Pq,Qq" Encoding:"NP 0x0F 0x38 0x04 /r"/"RM" + // Pos:1770 Instruction:"PMADDUBSW Pq,Qq" Encoding:"NP 0x0F 0x38 0x04 /r"/"RM" { .Instruction = ND_INS_PMADDUBSW, .Category = ND_CAT_MMX, .IsaSet = ND_SET_SSSE3, - .Mnemonic = 630, + .Mnemonic = 631, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -49465,6 +51289,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -49478,12 +51303,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1769 Instruction:"PMADDUBSW Vx,Wx" Encoding:"0x66 0x0F 0x38 0x04 /r"/"RM" + // Pos:1771 Instruction:"PMADDUBSW Vx,Wx" Encoding:"0x66 0x0F 0x38 0x04 /r"/"RM" { .Instruction = ND_INS_PMADDUBSW, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSSE3, - .Mnemonic = 630, + .Mnemonic = 631, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -49492,6 +51317,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -49505,12 +51331,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1770 Instruction:"PMADDWD Pq,Qq" Encoding:"NP 0x0F 0xF5 /r"/"RM" + // Pos:1772 Instruction:"PMADDWD Pq,Qq" Encoding:"NP 0x0F 0xF5 /r"/"RM" { .Instruction = ND_INS_PMADDWD, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 631, + .Mnemonic = 632, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -49519,6 +51345,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -49532,12 +51359,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1771 Instruction:"PMADDWD Vx,Wx" Encoding:"0x66 0x0F 0xF5 /r"/"RM" + // Pos:1773 Instruction:"PMADDWD Vx,Wx" Encoding:"0x66 0x0F 0xF5 /r"/"RM" { .Instruction = ND_INS_PMADDWD, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 631, + .Mnemonic = 632, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -49546,6 +51373,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -49559,12 +51387,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1772 Instruction:"PMAXSB Vx,Wx" Encoding:"0x66 0x0F 0x38 0x3C /r"/"RM" + // Pos:1774 Instruction:"PMAXSB Vx,Wx" Encoding:"0x66 0x0F 0x38 0x3C /r"/"RM" { .Instruction = ND_INS_PMAXSB, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE4, - .Mnemonic = 632, + .Mnemonic = 633, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -49573,6 +51401,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -49586,12 +51415,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1773 Instruction:"PMAXSD Vx,Wx" Encoding:"0x66 0x0F 0x38 0x3D /r"/"RM" + // Pos:1775 Instruction:"PMAXSD Vx,Wx" Encoding:"0x66 0x0F 0x38 0x3D /r"/"RM" { .Instruction = ND_INS_PMAXSD, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE4, - .Mnemonic = 633, + .Mnemonic = 634, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -49600,6 +51429,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -49613,12 +51443,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1774 Instruction:"PMAXSW Pq,Qq" Encoding:"NP 0x0F 0xEE /r"/"RM" + // Pos:1776 Instruction:"PMAXSW Pq,Qq" Encoding:"NP 0x0F 0xEE /r"/"RM" { .Instruction = ND_INS_PMAXSW, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 634, + .Mnemonic = 635, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -49627,6 +51457,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -49640,12 +51471,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1775 Instruction:"PMAXSW Vx,Wx" Encoding:"0x66 0x0F 0xEE /r"/"RM" + // Pos:1777 Instruction:"PMAXSW Vx,Wx" Encoding:"0x66 0x0F 0xEE /r"/"RM" { .Instruction = ND_INS_PMAXSW, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 634, + .Mnemonic = 635, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -49654,6 +51485,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -49667,12 +51499,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1776 Instruction:"PMAXUB Pq,Qq" Encoding:"NP 0x0F 0xDE /r"/"RM" + // Pos:1778 Instruction:"PMAXUB Pq,Qq" Encoding:"NP 0x0F 0xDE /r"/"RM" { .Instruction = ND_INS_PMAXUB, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 635, + .Mnemonic = 636, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -49681,6 +51513,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -49694,12 +51527,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1777 Instruction:"PMAXUB Vx,Wx" Encoding:"0x66 0x0F 0xDE /r"/"RM" + // Pos:1779 Instruction:"PMAXUB Vx,Wx" Encoding:"0x66 0x0F 0xDE /r"/"RM" { .Instruction = ND_INS_PMAXUB, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 635, + .Mnemonic = 636, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -49708,6 +51541,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -49721,12 +51555,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1778 Instruction:"PMAXUD Vx,Wx" Encoding:"0x66 0x0F 0x38 0x3F /r"/"RM" + // Pos:1780 Instruction:"PMAXUD Vx,Wx" Encoding:"0x66 0x0F 0x38 0x3F /r"/"RM" { .Instruction = ND_INS_PMAXUD, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE4, - .Mnemonic = 636, + .Mnemonic = 637, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -49735,6 +51569,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -49748,12 +51583,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1779 Instruction:"PMAXUW Vx,Wx" Encoding:"0x66 0x0F 0x38 0x3E /r"/"RM" + // Pos:1781 Instruction:"PMAXUW Vx,Wx" Encoding:"0x66 0x0F 0x38 0x3E /r"/"RM" { .Instruction = ND_INS_PMAXUW, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE4, - .Mnemonic = 637, + .Mnemonic = 638, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -49762,6 +51597,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -49775,12 +51611,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1780 Instruction:"PMINSB Vx,Wx" Encoding:"0x66 0x0F 0x38 0x38 /r"/"RM" + // Pos:1782 Instruction:"PMINSB Vx,Wx" Encoding:"0x66 0x0F 0x38 0x38 /r"/"RM" { .Instruction = ND_INS_PMINSB, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE4, - .Mnemonic = 638, + .Mnemonic = 639, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -49789,6 +51625,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -49802,12 +51639,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1781 Instruction:"PMINSD Vx,Wx" Encoding:"0x66 0x0F 0x38 0x39 /r"/"RM" + // Pos:1783 Instruction:"PMINSD Vx,Wx" Encoding:"0x66 0x0F 0x38 0x39 /r"/"RM" { .Instruction = ND_INS_PMINSD, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE4, - .Mnemonic = 639, + .Mnemonic = 640, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -49816,6 +51653,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -49829,12 +51667,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1782 Instruction:"PMINSW Pq,Qq" Encoding:"NP 0x0F 0xEA /r"/"RM" + // Pos:1784 Instruction:"PMINSW Pq,Qq" Encoding:"NP 0x0F 0xEA /r"/"RM" { .Instruction = ND_INS_PMINSW, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 640, + .Mnemonic = 641, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -49843,6 +51681,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -49856,12 +51695,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1783 Instruction:"PMINSW Vx,Wx" Encoding:"0x66 0x0F 0xEA /r"/"RM" + // Pos:1785 Instruction:"PMINSW Vx,Wx" Encoding:"0x66 0x0F 0xEA /r"/"RM" { .Instruction = ND_INS_PMINSW, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 640, + .Mnemonic = 641, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -49870,6 +51709,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -49883,12 +51723,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1784 Instruction:"PMINUB Pq,Qq" Encoding:"NP 0x0F 0xDA /r"/"RM" + // Pos:1786 Instruction:"PMINUB Pq,Qq" Encoding:"NP 0x0F 0xDA /r"/"RM" { .Instruction = ND_INS_PMINUB, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 641, + .Mnemonic = 642, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -49897,6 +51737,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -49910,12 +51751,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1785 Instruction:"PMINUB Vx,Wx" Encoding:"0x66 0x0F 0xDA /r"/"RM" + // Pos:1787 Instruction:"PMINUB Vx,Wx" Encoding:"0x66 0x0F 0xDA /r"/"RM" { .Instruction = ND_INS_PMINUB, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 641, + .Mnemonic = 642, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -49924,6 +51765,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -49937,12 +51779,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1786 Instruction:"PMINUD Vx,Wx" Encoding:"0x66 0x0F 0x38 0x3B /r"/"RM" + // Pos:1788 Instruction:"PMINUD Vx,Wx" Encoding:"0x66 0x0F 0x38 0x3B /r"/"RM" { .Instruction = ND_INS_PMINUD, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE4, - .Mnemonic = 642, + .Mnemonic = 643, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -49951,6 +51793,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -49964,12 +51807,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1787 Instruction:"PMINUW Vx,Wx" Encoding:"0x66 0x0F 0x38 0x3A /r"/"RM" + // Pos:1789 Instruction:"PMINUW Vx,Wx" Encoding:"0x66 0x0F 0x38 0x3A /r"/"RM" { .Instruction = ND_INS_PMINUW, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE4, - .Mnemonic = 643, + .Mnemonic = 644, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -49978,6 +51821,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -49991,12 +51835,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1788 Instruction:"PMOVMSKB Gy,Nq" Encoding:"NP 0x0F 0xD7 /r:reg"/"RM" + // Pos:1790 Instruction:"PMOVMSKB Gy,Nq" Encoding:"NP 0x0F 0xD7 /r:reg"/"RM" { .Instruction = ND_INS_PMOVMSKB, .Category = ND_CAT_MMX, .IsaSet = ND_SET_SSE, - .Mnemonic = 644, + .Mnemonic = 645, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -50005,6 +51849,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_7, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -50018,12 +51863,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1789 Instruction:"PMOVMSKB Gy,Ux" Encoding:"0x66 0x0F 0xD7 /r:reg"/"RM" + // Pos:1791 Instruction:"PMOVMSKB Gy,Ux" Encoding:"0x66 0x0F 0xD7 /r:reg"/"RM" { .Instruction = ND_INS_PMOVMSKB, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 644, + .Mnemonic = 645, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -50032,6 +51877,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_7, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -50045,12 +51891,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1790 Instruction:"PMOVSXBD Vdq,Wd" Encoding:"0x66 0x0F 0x38 0x21 /r"/"RM" + // Pos:1792 Instruction:"PMOVSXBD Vdq,Wd" Encoding:"0x66 0x0F 0x38 0x21 /r"/"RM" { .Instruction = ND_INS_PMOVSXBD, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE4, - .Mnemonic = 645, + .Mnemonic = 646, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -50059,6 +51905,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -50072,12 +51919,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1791 Instruction:"PMOVSXBQ Vdq,Ww" Encoding:"0x66 0x0F 0x38 0x22 /r"/"RM" + // Pos:1793 Instruction:"PMOVSXBQ Vdq,Ww" Encoding:"0x66 0x0F 0x38 0x22 /r"/"RM" { .Instruction = ND_INS_PMOVSXBQ, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE4, - .Mnemonic = 646, + .Mnemonic = 647, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -50086,6 +51933,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -50099,12 +51947,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1792 Instruction:"PMOVSXBW Vdq,Wq" Encoding:"0x66 0x0F 0x38 0x20 /r"/"RM" + // Pos:1794 Instruction:"PMOVSXBW Vdq,Wq" Encoding:"0x66 0x0F 0x38 0x20 /r"/"RM" { .Instruction = ND_INS_PMOVSXBW, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE4, - .Mnemonic = 647, + .Mnemonic = 648, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -50113,6 +51961,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -50126,12 +51975,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1793 Instruction:"PMOVSXDQ Vdq,Wq" Encoding:"0x66 0x0F 0x38 0x25 /r"/"RM" + // Pos:1795 Instruction:"PMOVSXDQ Vdq,Wq" Encoding:"0x66 0x0F 0x38 0x25 /r"/"RM" { .Instruction = ND_INS_PMOVSXDQ, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE4, - .Mnemonic = 648, + .Mnemonic = 649, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -50140,6 +51989,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -50153,12 +52003,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1794 Instruction:"PMOVSXWD Vdq,Wq" Encoding:"0x66 0x0F 0x38 0x23 /r"/"RM" + // Pos:1796 Instruction:"PMOVSXWD Vdq,Wq" Encoding:"0x66 0x0F 0x38 0x23 /r"/"RM" { .Instruction = ND_INS_PMOVSXWD, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE4, - .Mnemonic = 649, + .Mnemonic = 650, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -50167,6 +52017,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -50180,12 +52031,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1795 Instruction:"PMOVSXWQ Vdq,Wd" Encoding:"0x66 0x0F 0x38 0x24 /r"/"RM" + // Pos:1797 Instruction:"PMOVSXWQ Vdq,Wd" Encoding:"0x66 0x0F 0x38 0x24 /r"/"RM" { .Instruction = ND_INS_PMOVSXWQ, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE4, - .Mnemonic = 650, + .Mnemonic = 651, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -50194,6 +52045,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -50207,12 +52059,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1796 Instruction:"PMOVZXBD Vdq,Wd" Encoding:"0x66 0x0F 0x38 0x31 /r"/"RM" + // Pos:1798 Instruction:"PMOVZXBD Vdq,Wd" Encoding:"0x66 0x0F 0x38 0x31 /r"/"RM" { .Instruction = ND_INS_PMOVZXBD, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE4, - .Mnemonic = 651, + .Mnemonic = 652, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -50221,6 +52073,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -50234,12 +52087,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1797 Instruction:"PMOVZXBQ Vdq,Ww" Encoding:"0x66 0x0F 0x38 0x32 /r"/"RM" + // Pos:1799 Instruction:"PMOVZXBQ Vdq,Ww" Encoding:"0x66 0x0F 0x38 0x32 /r"/"RM" { .Instruction = ND_INS_PMOVZXBQ, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE4, - .Mnemonic = 652, + .Mnemonic = 653, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -50248,6 +52101,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -50261,12 +52115,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1798 Instruction:"PMOVZXBW Vdq,Wq" Encoding:"0x66 0x0F 0x38 0x30 /r"/"RM" + // Pos:1800 Instruction:"PMOVZXBW Vdq,Wq" Encoding:"0x66 0x0F 0x38 0x30 /r"/"RM" { .Instruction = ND_INS_PMOVZXBW, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE4, - .Mnemonic = 653, + .Mnemonic = 654, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -50275,6 +52129,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -50288,12 +52143,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1799 Instruction:"PMOVZXDQ Vdq,Wq" Encoding:"0x66 0x0F 0x38 0x35 /r"/"RM" + // Pos:1801 Instruction:"PMOVZXDQ Vdq,Wq" Encoding:"0x66 0x0F 0x38 0x35 /r"/"RM" { .Instruction = ND_INS_PMOVZXDQ, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE4, - .Mnemonic = 654, + .Mnemonic = 655, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -50302,6 +52157,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -50315,12 +52171,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1800 Instruction:"PMOVZXWD Vdq,Wq" Encoding:"0x66 0x0F 0x38 0x33 /r"/"RM" + // Pos:1802 Instruction:"PMOVZXWD Vdq,Wq" Encoding:"0x66 0x0F 0x38 0x33 /r"/"RM" { .Instruction = ND_INS_PMOVZXWD, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE4, - .Mnemonic = 655, + .Mnemonic = 656, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -50329,6 +52185,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -50342,12 +52199,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1801 Instruction:"PMOVZXWQ Vdq,Wd" Encoding:"0x66 0x0F 0x38 0x34 /r"/"RM" + // Pos:1803 Instruction:"PMOVZXWQ Vdq,Wd" Encoding:"0x66 0x0F 0x38 0x34 /r"/"RM" { .Instruction = ND_INS_PMOVZXWQ, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE4, - .Mnemonic = 656, + .Mnemonic = 657, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -50356,6 +52213,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -50369,12 +52227,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1802 Instruction:"PMULDQ Vx,Wx" Encoding:"0x66 0x0F 0x38 0x28 /r"/"RM" + // Pos:1804 Instruction:"PMULDQ Vx,Wx" Encoding:"0x66 0x0F 0x38 0x28 /r"/"RM" { .Instruction = ND_INS_PMULDQ, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE4, - .Mnemonic = 657, + .Mnemonic = 658, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -50383,6 +52241,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -50396,12 +52255,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1803 Instruction:"PMULHRSW Pq,Qq" Encoding:"NP 0x0F 0x38 0x0B /r"/"RM" + // Pos:1805 Instruction:"PMULHRSW Pq,Qq" Encoding:"NP 0x0F 0x38 0x0B /r"/"RM" { .Instruction = ND_INS_PMULHRSW, .Category = ND_CAT_MMX, .IsaSet = ND_SET_SSSE3, - .Mnemonic = 658, + .Mnemonic = 659, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -50410,6 +52269,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -50423,12 +52283,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1804 Instruction:"PMULHRSW Vx,Wx" Encoding:"0x66 0x0F 0x38 0x0B /r"/"RM" + // Pos:1806 Instruction:"PMULHRSW Vx,Wx" Encoding:"0x66 0x0F 0x38 0x0B /r"/"RM" { .Instruction = ND_INS_PMULHRSW, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSSE3, - .Mnemonic = 658, + .Mnemonic = 659, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -50437,6 +52297,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -50450,12 +52311,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1805 Instruction:"PMULHRW Pq,Qq" Encoding:"0x0F 0x0F /r 0xB7"/"RM" + // Pos:1807 Instruction:"PMULHRW Pq,Qq" Encoding:"0x0F 0x0F /r 0xB7"/"RM" { .Instruction = ND_INS_PMULHRW, .Category = ND_CAT_3DNOW, .IsaSet = ND_SET_3DNOW, - .Mnemonic = 659, + .Mnemonic = 660, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -50464,6 +52325,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -50477,12 +52339,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1806 Instruction:"PMULHUW Pq,Qq" Encoding:"NP 0x0F 0xE4 /r"/"RM" + // Pos:1808 Instruction:"PMULHUW Pq,Qq" Encoding:"NP 0x0F 0xE4 /r"/"RM" { .Instruction = ND_INS_PMULHUW, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 660, + .Mnemonic = 661, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -50491,6 +52353,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -50504,12 +52367,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1807 Instruction:"PMULHUW Vx,Wx" Encoding:"0x66 0x0F 0xE4 /r"/"RM" + // Pos:1809 Instruction:"PMULHUW Vx,Wx" Encoding:"0x66 0x0F 0xE4 /r"/"RM" { .Instruction = ND_INS_PMULHUW, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 660, + .Mnemonic = 661, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -50518,6 +52381,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -50531,12 +52395,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1808 Instruction:"PMULHW Pq,Qq" Encoding:"NP 0x0F 0xE5 /r"/"RM" + // Pos:1810 Instruction:"PMULHW Pq,Qq" Encoding:"NP 0x0F 0xE5 /r"/"RM" { .Instruction = ND_INS_PMULHW, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 661, + .Mnemonic = 662, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -50545,6 +52409,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -50558,12 +52423,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1809 Instruction:"PMULHW Vx,Wx" Encoding:"0x66 0x0F 0xE5 /r"/"RM" + // Pos:1811 Instruction:"PMULHW Vx,Wx" Encoding:"0x66 0x0F 0xE5 /r"/"RM" { .Instruction = ND_INS_PMULHW, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 661, + .Mnemonic = 662, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -50572,6 +52437,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -50585,12 +52451,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1810 Instruction:"PMULLD Vx,Wx" Encoding:"0x66 0x0F 0x38 0x40 /r"/"RM" + // Pos:1812 Instruction:"PMULLD Vx,Wx" Encoding:"0x66 0x0F 0x38 0x40 /r"/"RM" { .Instruction = ND_INS_PMULLD, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE4, - .Mnemonic = 662, + .Mnemonic = 663, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -50599,6 +52465,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -50612,12 +52479,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1811 Instruction:"PMULLW Pq,Qq" Encoding:"NP 0x0F 0xD5 /r"/"RM" + // Pos:1813 Instruction:"PMULLW Pq,Qq" Encoding:"NP 0x0F 0xD5 /r"/"RM" { .Instruction = ND_INS_PMULLW, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 663, + .Mnemonic = 664, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -50626,6 +52493,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -50639,12 +52507,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1812 Instruction:"PMULLW Vx,Wx" Encoding:"0x66 0x0F 0xD5 /r"/"RM" + // Pos:1814 Instruction:"PMULLW Vx,Wx" Encoding:"0x66 0x0F 0xD5 /r"/"RM" { .Instruction = ND_INS_PMULLW, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 663, + .Mnemonic = 664, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -50653,6 +52521,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -50666,12 +52535,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1813 Instruction:"PMULUDQ Pq,Qq" Encoding:"NP 0x0F 0xF4 /r"/"RM" + // Pos:1815 Instruction:"PMULUDQ Pq,Qq" Encoding:"NP 0x0F 0xF4 /r"/"RM" { .Instruction = ND_INS_PMULUDQ, .Category = ND_CAT_MMX, .IsaSet = ND_SET_SSE2, - .Mnemonic = 664, + .Mnemonic = 665, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -50680,6 +52549,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -50693,12 +52563,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1814 Instruction:"PMULUDQ Vx,Wx" Encoding:"0x66 0x0F 0xF4 /r"/"RM" + // Pos:1816 Instruction:"PMULUDQ Vx,Wx" Encoding:"0x66 0x0F 0xF4 /r"/"RM" { .Instruction = ND_INS_PMULUDQ, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 664, + .Mnemonic = 665, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -50707,6 +52577,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -50720,12 +52591,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1815 Instruction:"POP ES" Encoding:"0x07"/"" + // Pos:1817 Instruction:"POP ES" Encoding:"0x07"/"" { .Instruction = ND_INS_POP, .Category = ND_CAT_POP, .IsaSet = ND_SET_I86, - .Mnemonic = 665, + .Mnemonic = 666, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_REAL|ND_MOD_V8086|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -50734,6 +52605,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -50747,12 +52619,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1816 Instruction:"POP SS" Encoding:"0x17"/"" + // Pos:1818 Instruction:"POP SS" Encoding:"0x17"/"" { .Instruction = ND_INS_POP, .Category = ND_CAT_POP, .IsaSet = ND_SET_I86, - .Mnemonic = 665, + .Mnemonic = 666, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_REAL|ND_MOD_V8086|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -50761,6 +52633,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -50774,12 +52647,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1817 Instruction:"POP DS" Encoding:"0x1F"/"" + // Pos:1819 Instruction:"POP DS" Encoding:"0x1F"/"" { .Instruction = ND_INS_POP, .Category = ND_CAT_POP, .IsaSet = ND_SET_I86, - .Mnemonic = 665, + .Mnemonic = 666, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_REAL|ND_MOD_V8086|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -50788,6 +52661,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -50801,12 +52675,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1818 Instruction:"POP Zv" Encoding:"0x58"/"O" + // Pos:1820 Instruction:"POP Zv" Encoding:"0x58"/"O" { .Instruction = ND_INS_POP, .Category = ND_CAT_POP, .IsaSet = ND_SET_I86, - .Mnemonic = 665, + .Mnemonic = 666, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -50815,6 +52689,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -50828,12 +52703,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1819 Instruction:"POP Zv" Encoding:"0x59"/"O" + // Pos:1821 Instruction:"POP Zv" Encoding:"0x59"/"O" { .Instruction = ND_INS_POP, .Category = ND_CAT_POP, .IsaSet = ND_SET_I86, - .Mnemonic = 665, + .Mnemonic = 666, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -50842,6 +52717,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -50855,12 +52731,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1820 Instruction:"POP Zv" Encoding:"0x5A"/"O" + // Pos:1822 Instruction:"POP Zv" Encoding:"0x5A"/"O" { .Instruction = ND_INS_POP, .Category = ND_CAT_POP, .IsaSet = ND_SET_I86, - .Mnemonic = 665, + .Mnemonic = 666, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -50869,6 +52745,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -50882,12 +52759,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1821 Instruction:"POP Zv" Encoding:"0x5B"/"O" + // Pos:1823 Instruction:"POP Zv" Encoding:"0x5B"/"O" { .Instruction = ND_INS_POP, .Category = ND_CAT_POP, .IsaSet = ND_SET_I86, - .Mnemonic = 665, + .Mnemonic = 666, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -50896,6 +52773,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -50909,12 +52787,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1822 Instruction:"POP Zv" Encoding:"0x5C"/"O" + // Pos:1824 Instruction:"POP Zv" Encoding:"0x5C"/"O" { .Instruction = ND_INS_POP, .Category = ND_CAT_POP, .IsaSet = ND_SET_I86, - .Mnemonic = 665, + .Mnemonic = 666, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -50923,6 +52801,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -50936,12 +52815,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1823 Instruction:"POP Zv" Encoding:"0x5D"/"O" + // Pos:1825 Instruction:"POP Zv" Encoding:"0x5D"/"O" { .Instruction = ND_INS_POP, .Category = ND_CAT_POP, .IsaSet = ND_SET_I86, - .Mnemonic = 665, + .Mnemonic = 666, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -50950,6 +52829,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -50963,12 +52843,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1824 Instruction:"POP Zv" Encoding:"0x5E"/"O" + // Pos:1826 Instruction:"POP Zv" Encoding:"0x5E"/"O" { .Instruction = ND_INS_POP, .Category = ND_CAT_POP, .IsaSet = ND_SET_I86, - .Mnemonic = 665, + .Mnemonic = 666, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -50977,6 +52857,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -50990,12 +52871,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1825 Instruction:"POP Zv" Encoding:"0x5F"/"O" + // Pos:1827 Instruction:"POP Zv" Encoding:"0x5F"/"O" { .Instruction = ND_INS_POP, .Category = ND_CAT_POP, .IsaSet = ND_SET_I86, - .Mnemonic = 665, + .Mnemonic = 666, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -51004,6 +52885,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -51017,12 +52899,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1826 Instruction:"POP Ev" Encoding:"0x8F /0"/"M" + // Pos:1828 Instruction:"POP Ev" Encoding:"0x8F /0"/"M" { .Instruction = ND_INS_POP, .Category = ND_CAT_POP, .IsaSet = ND_SET_I86, - .Mnemonic = 665, + .Mnemonic = 666, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -51031,6 +52913,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -51044,12 +52927,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1827 Instruction:"POP FS" Encoding:"0x0F 0xA1"/"" + // Pos:1829 Instruction:"POP FS" Encoding:"0x0F 0xA1"/"" { .Instruction = ND_INS_POP, .Category = ND_CAT_POP, .IsaSet = ND_SET_I86, - .Mnemonic = 665, + .Mnemonic = 666, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_REAL|ND_MOD_V8086|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -51058,6 +52941,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -51071,12 +52955,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1828 Instruction:"POP GS" Encoding:"0x0F 0xA9"/"" + // Pos:1830 Instruction:"POP GS" Encoding:"0x0F 0xA9"/"" { .Instruction = ND_INS_POP, .Category = ND_CAT_POP, .IsaSet = ND_SET_I86, - .Mnemonic = 665, + .Mnemonic = 666, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_REAL|ND_MOD_V8086|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -51085,6 +52969,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -51098,12 +52983,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1829 Instruction:"POP2 Bv,Rv" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 w:0 0x8F /0:reg"/"VM" + // Pos:1831 Instruction:"POP2 Bv,Rv" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 w:0 0x8F /0:reg"/"VM" { .Instruction = ND_INS_POP2, .Category = ND_CAT_POP, .IsaSet = ND_SET_APX_F, - .Mnemonic = 666, + .Mnemonic = 667, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -51112,6 +52997,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_PP2, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -51126,12 +53012,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1830 Instruction:"POP2P Bv,Rv" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 w:1 0x8F /0:reg"/"VM" + // Pos:1832 Instruction:"POP2P Bv,Rv" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 w:1 0x8F /0:reg"/"VM" { .Instruction = ND_INS_POP2P, .Category = ND_CAT_POP, .IsaSet = ND_SET_APX_F, - .Mnemonic = 667, + .Mnemonic = 668, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -51140,6 +53026,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_PP2, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -51154,12 +53041,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1831 Instruction:"POPA" Encoding:"ds16 0x61"/"" + // Pos:1833 Instruction:"POPA" Encoding:"ds16 0x61"/"" { .Instruction = ND_INS_POPA, .Category = ND_CAT_POP, .IsaSet = ND_SET_I386, - .Mnemonic = 668, + .Mnemonic = 669, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_REAL|ND_MOD_V8086|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -51168,6 +53055,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -51181,12 +53069,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1832 Instruction:"POPAD" Encoding:"ds32 0x61"/"" + // Pos:1834 Instruction:"POPAD" Encoding:"ds32 0x61"/"" { .Instruction = ND_INS_POPAD, .Category = ND_CAT_POP, .IsaSet = ND_SET_I386, - .Mnemonic = 669, + .Mnemonic = 670, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_REAL|ND_MOD_V8086|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -51195,6 +53083,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -51208,12 +53097,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1833 Instruction:"POPCNT Gv,Ev" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x88 /r"/"RM" + // Pos:1835 Instruction:"POPCNT Gv,Ev" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x88 /r"/"RM" { .Instruction = ND_INS_POPCNT, .Category = ND_CAT_APX, .IsaSet = ND_SET_APX_F, - .Mnemonic = 670, + .Mnemonic = 671, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -51222,6 +53111,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_ZF, .SetFlags = 0, @@ -51236,12 +53126,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1834 Instruction:"POPCNT Gv,Ev" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0x88 /r"/"RM" + // Pos:1836 Instruction:"POPCNT Gv,Ev" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0x88 /r"/"RM" { .Instruction = ND_INS_POPCNT, .Category = ND_CAT_APX, .IsaSet = ND_SET_APX_F, - .Mnemonic = 670, + .Mnemonic = 671, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -51250,6 +53140,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_ZF, .SetFlags = 0, @@ -51264,12 +53155,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1835 Instruction:"POPCNT Gv,Ev" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0x88 /r"/"RM" + // Pos:1837 Instruction:"POPCNT Gv,Ev" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0x88 /r"/"RM" { .Instruction = ND_INS_POPCNT, .Category = ND_CAT_APX, .IsaSet = ND_SET_APX_F, - .Mnemonic = 670, + .Mnemonic = 671, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -51278,6 +53169,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -51291,12 +53183,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1836 Instruction:"POPCNT Gv,Ev" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0x88 /r"/"RM" + // Pos:1838 Instruction:"POPCNT Gv,Ev" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0x88 /r"/"RM" { .Instruction = ND_INS_POPCNT, .Category = ND_CAT_APX, .IsaSet = ND_SET_APX_F, - .Mnemonic = 670, + .Mnemonic = 671, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -51305,6 +53197,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -51318,12 +53211,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1837 Instruction:"POPCNT Gv,Ev" Encoding:"repz 0x0F 0xB8 /r"/"RM" + // Pos:1839 Instruction:"POPCNT Gv,Ev" Encoding:"repz 0x0F 0xB8 /r"/"RM" { .Instruction = ND_INS_POPCNT, .Category = ND_CAT_SSE, .IsaSet = ND_SET_POPCNT, - .Mnemonic = 670, + .Mnemonic = 671, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -51332,6 +53225,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_ZF, .SetFlags = 0, @@ -51346,12 +53240,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1838 Instruction:"POPFD Fv" Encoding:"ds32 0x9D"/"" + // Pos:1840 Instruction:"POPFD Fv" Encoding:"ds32 0x9D"/"" { .Instruction = ND_INS_POPF, .Category = ND_CAT_POP, .IsaSet = ND_SET_I86, - .Mnemonic = 671, + .Mnemonic = 672, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -51360,6 +53254,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -51373,12 +53268,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1839 Instruction:"POPFQ Fv" Encoding:"dds64 0x9D"/"" + // Pos:1841 Instruction:"POPFQ Fv" Encoding:"dds64 0x9D"/"" { .Instruction = ND_INS_POPF, .Category = ND_CAT_POP, .IsaSet = ND_SET_I86, - .Mnemonic = 672, + .Mnemonic = 673, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -51387,6 +53282,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -51400,12 +53296,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1840 Instruction:"POPFW Fv" Encoding:"ds16 0x9D"/"" + // Pos:1842 Instruction:"POPFW Fv" Encoding:"ds16 0x9D"/"" { .Instruction = ND_INS_POPF, .Category = ND_CAT_POP, .IsaSet = ND_SET_I86, - .Mnemonic = 673, + .Mnemonic = 674, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -51414,6 +53310,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -51427,12 +53324,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1841 Instruction:"POPP Zv" Encoding:"rex2w 0x58"/"O" + // Pos:1843 Instruction:"POPP Zv" Encoding:"rex2w 0x58"/"O" { .Instruction = ND_INS_POPP, .Category = ND_CAT_POP, .IsaSet = ND_SET_APX_F, - .Mnemonic = 674, + .Mnemonic = 675, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -51441,6 +53338,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -51454,12 +53352,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1842 Instruction:"POPP Zv" Encoding:"rex2w 0x59"/"O" + // Pos:1844 Instruction:"POPP Zv" Encoding:"rex2w 0x59"/"O" { .Instruction = ND_INS_POPP, .Category = ND_CAT_POP, .IsaSet = ND_SET_APX_F, - .Mnemonic = 674, + .Mnemonic = 675, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -51468,6 +53366,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -51481,12 +53380,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1843 Instruction:"POPP Zv" Encoding:"rex2w 0x5A"/"O" + // Pos:1845 Instruction:"POPP Zv" Encoding:"rex2w 0x5A"/"O" { .Instruction = ND_INS_POPP, .Category = ND_CAT_POP, .IsaSet = ND_SET_APX_F, - .Mnemonic = 674, + .Mnemonic = 675, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -51495,6 +53394,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -51508,12 +53408,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1844 Instruction:"POPP Zv" Encoding:"rex2w 0x5B"/"O" + // Pos:1846 Instruction:"POPP Zv" Encoding:"rex2w 0x5B"/"O" { .Instruction = ND_INS_POPP, .Category = ND_CAT_POP, .IsaSet = ND_SET_APX_F, - .Mnemonic = 674, + .Mnemonic = 675, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -51522,6 +53422,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -51535,12 +53436,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1845 Instruction:"POPP Zv" Encoding:"rex2w 0x5C"/"O" + // Pos:1847 Instruction:"POPP Zv" Encoding:"rex2w 0x5C"/"O" { .Instruction = ND_INS_POPP, .Category = ND_CAT_POP, .IsaSet = ND_SET_APX_F, - .Mnemonic = 674, + .Mnemonic = 675, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -51549,6 +53450,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -51562,12 +53464,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1846 Instruction:"POPP Zv" Encoding:"rex2w 0x5D"/"O" + // Pos:1848 Instruction:"POPP Zv" Encoding:"rex2w 0x5D"/"O" { .Instruction = ND_INS_POPP, .Category = ND_CAT_POP, .IsaSet = ND_SET_APX_F, - .Mnemonic = 674, + .Mnemonic = 675, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -51576,6 +53478,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -51589,12 +53492,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1847 Instruction:"POPP Zv" Encoding:"rex2w 0x5E"/"O" + // Pos:1849 Instruction:"POPP Zv" Encoding:"rex2w 0x5E"/"O" { .Instruction = ND_INS_POPP, .Category = ND_CAT_POP, .IsaSet = ND_SET_APX_F, - .Mnemonic = 674, + .Mnemonic = 675, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -51603,6 +53506,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -51616,12 +53520,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1848 Instruction:"POPP Zv" Encoding:"rex2w 0x5F"/"O" + // Pos:1850 Instruction:"POPP Zv" Encoding:"rex2w 0x5F"/"O" { .Instruction = ND_INS_POPP, .Category = ND_CAT_POP, .IsaSet = ND_SET_APX_F, - .Mnemonic = 674, + .Mnemonic = 675, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -51630,6 +53534,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -51643,12 +53548,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1849 Instruction:"POR Pq,Qq" Encoding:"NP 0x0F 0xEB /r"/"RM" + // Pos:1851 Instruction:"POR Pq,Qq" Encoding:"NP 0x0F 0xEB /r"/"RM" { .Instruction = ND_INS_POR, .Category = ND_CAT_LOGICAL, .IsaSet = ND_SET_MMX, - .Mnemonic = 675, + .Mnemonic = 676, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -51657,6 +53562,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -51670,12 +53576,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1850 Instruction:"POR Vx,Wx" Encoding:"0x66 0x0F 0xEB /r"/"RM" + // Pos:1852 Instruction:"POR Vx,Wx" Encoding:"0x66 0x0F 0xEB /r"/"RM" { .Instruction = ND_INS_POR, .Category = ND_CAT_LOGICAL, .IsaSet = ND_SET_SSE2, - .Mnemonic = 675, + .Mnemonic = 676, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -51684,6 +53590,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -51697,12 +53604,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1851 Instruction:"PREFETCH Mb" Encoding:"0x0F 0x0D /4:mem"/"M" + // Pos:1853 Instruction:"PREFETCH Mb" Encoding:"0x0F 0x0D /4:mem"/"M" { .Instruction = ND_INS_PREFETCH, .Category = ND_CAT_PREFETCH, .IsaSet = ND_SET_PREFETCH_NOP, - .Mnemonic = 676, + .Mnemonic = 677, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -51711,6 +53618,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -51723,12 +53631,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1852 Instruction:"PREFETCH Mb" Encoding:"0x0F 0x0D /5:mem"/"M" + // Pos:1854 Instruction:"PREFETCH Mb" Encoding:"0x0F 0x0D /5:mem"/"M" { .Instruction = ND_INS_PREFETCH, .Category = ND_CAT_PREFETCH, .IsaSet = ND_SET_PREFETCH_NOP, - .Mnemonic = 676, + .Mnemonic = 677, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -51737,6 +53645,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -51749,12 +53658,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1853 Instruction:"PREFETCH Mb" Encoding:"0x0F 0x0D /6:mem"/"M" + // Pos:1855 Instruction:"PREFETCH Mb" Encoding:"0x0F 0x0D /6:mem"/"M" { .Instruction = ND_INS_PREFETCH, .Category = ND_CAT_PREFETCH, .IsaSet = ND_SET_PREFETCH_NOP, - .Mnemonic = 676, + .Mnemonic = 677, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -51763,6 +53672,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -51775,12 +53685,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1854 Instruction:"PREFETCH Mb" Encoding:"0x0F 0x0D /7:mem"/"M" + // Pos:1856 Instruction:"PREFETCH Mb" Encoding:"0x0F 0x0D /7:mem"/"M" { .Instruction = ND_INS_PREFETCH, .Category = ND_CAT_PREFETCH, .IsaSet = ND_SET_PREFETCH_NOP, - .Mnemonic = 676, + .Mnemonic = 677, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -51789,6 +53699,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -51801,12 +53712,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1855 Instruction:"PREFETCHE Mb" Encoding:"0x0F 0x0D /0:mem"/"M" + // Pos:1857 Instruction:"PREFETCHE Mb" Encoding:"0x0F 0x0D /0:mem"/"M" { .Instruction = ND_INS_PREFETCHE, .Category = ND_CAT_PREFETCH, .IsaSet = ND_SET_PREFETCH_NOP, - .Mnemonic = 677, + .Mnemonic = 678, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -51815,6 +53726,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -51827,12 +53739,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1856 Instruction:"PREFETCHIT0 Mb" Encoding:"piti riprel 0x0F 0x18 /7:mem"/"M" + // Pos:1858 Instruction:"PREFETCHIT0 Mb" Encoding:"piti riprel 0x0F 0x18 /7:mem"/"M" { .Instruction = ND_INS_PREFETCHIT0, .Category = ND_CAT_PREFETCH, .IsaSet = ND_SET_PREFETCHITI, - .Mnemonic = 678, + .Mnemonic = 679, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -51841,6 +53753,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -51853,12 +53766,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1857 Instruction:"PREFETCHIT1 Mb" Encoding:"piti riprel 0x0F 0x18 /6:mem"/"M" + // Pos:1859 Instruction:"PREFETCHIT1 Mb" Encoding:"piti riprel 0x0F 0x18 /6:mem"/"M" { .Instruction = ND_INS_PREFETCHIT1, .Category = ND_CAT_PREFETCH, .IsaSet = ND_SET_PREFETCHITI, - .Mnemonic = 679, + .Mnemonic = 680, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -51867,6 +53780,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -51879,12 +53793,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1858 Instruction:"PREFETCHM Mb" Encoding:"0x0F 0x0D /3:mem"/"M" + // Pos:1860 Instruction:"PREFETCHM Mb" Encoding:"0x0F 0x0D /3:mem"/"M" { .Instruction = ND_INS_PREFETCHM, .Category = ND_CAT_PREFETCH, .IsaSet = ND_SET_PREFETCH_NOP, - .Mnemonic = 680, + .Mnemonic = 681, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -51893,6 +53807,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -51905,12 +53820,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1859 Instruction:"PREFETCHNTA Mb" Encoding:"0x0F 0x18 /0:mem"/"M" + // Pos:1861 Instruction:"PREFETCHNTA Mb" Encoding:"0x0F 0x18 /0:mem"/"M" { .Instruction = ND_INS_PREFETCHNTA, .Category = ND_CAT_PREFETCH, .IsaSet = ND_SET_SSE, - .Mnemonic = 681, + .Mnemonic = 682, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -51919,6 +53834,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -51931,12 +53847,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1860 Instruction:"PREFETCHNTA Mb" Encoding:"piti 0x0F 0x18 /0:mem"/"M" + // Pos:1862 Instruction:"PREFETCHNTA Mb" Encoding:"piti 0x0F 0x18 /0:mem"/"M" { .Instruction = ND_INS_PREFETCHNTA, .Category = ND_CAT_PREFETCH, .IsaSet = ND_SET_SSE, - .Mnemonic = 681, + .Mnemonic = 682, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -51945,6 +53861,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -51957,12 +53874,66 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1861 Instruction:"PREFETCHT0 Mb" Encoding:"0x0F 0x18 /1:mem"/"M" + // Pos:1863 Instruction:"PREFETCHRST2 Mb" Encoding:"0x0F 0x18 /4:mem"/"M" + { + .Instruction = ND_INS_PREFETCHRST2, + .Category = ND_CAT_PREFETCH, + .IsaSet = ND_SET_MOVRS, + .Mnemonic = 683, + .ValidPrefixes = 0, + .ValidModes = ND_MOD_ANY, + .ValidDecorators = 0, + .OpsCount = ND_OPS_CNT(1, 0), + .TupleType = 0, + .ExcType = 0, + .FpuFlags = 0, + .EvexMode = 0, + .SimdExc = 0, + .TestedFlags = 0, + .ModifiedFlags = 0, + .SetFlags = 0, + .ClearedFlags = 0, + .Attributes = ND_FLAG_MODRM, + .CpuidFlag = ND_CFF_MOVRS, + .Operands = + { + OP(ND_OPT_M, ND_OPS_b, 0, ND_OPA_P, 0, 0), + }, + }, + + // Pos:1864 Instruction:"PREFETCHRST2 Mb" Encoding:"piti 0x0F 0x18 /4:mem"/"M" + { + .Instruction = ND_INS_PREFETCHRST2, + .Category = ND_CAT_PREFETCH, + .IsaSet = ND_SET_MOVRS, + .Mnemonic = 683, + .ValidPrefixes = 0, + .ValidModes = ND_MOD_ANY, + .ValidDecorators = 0, + .OpsCount = ND_OPS_CNT(1, 0), + .TupleType = 0, + .ExcType = 0, + .FpuFlags = 0, + .EvexMode = 0, + .SimdExc = 0, + .TestedFlags = 0, + .ModifiedFlags = 0, + .SetFlags = 0, + .ClearedFlags = 0, + .Attributes = ND_FLAG_MODRM, + .CpuidFlag = ND_CFF_MOVRS, + .Operands = + { + OP(ND_OPT_M, ND_OPS_b, 0, ND_OPA_P, 0, 0), + }, + }, + + // Pos:1865 Instruction:"PREFETCHT0 Mb" Encoding:"0x0F 0x18 /1:mem"/"M" { .Instruction = ND_INS_PREFETCHT0, .Category = ND_CAT_PREFETCH, .IsaSet = ND_SET_SSE, - .Mnemonic = 682, + .Mnemonic = 684, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -51971,6 +53942,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -51983,12 +53955,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1862 Instruction:"PREFETCHT0 Mb" Encoding:"piti 0x0F 0x18 /1:mem"/"M" + // Pos:1866 Instruction:"PREFETCHT0 Mb" Encoding:"piti 0x0F 0x18 /1:mem"/"M" { .Instruction = ND_INS_PREFETCHT0, .Category = ND_CAT_PREFETCH, .IsaSet = ND_SET_SSE, - .Mnemonic = 682, + .Mnemonic = 684, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -51997,6 +53969,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -52009,12 +53982,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1863 Instruction:"PREFETCHT1 Mb" Encoding:"0x0F 0x18 /2:mem"/"M" + // Pos:1867 Instruction:"PREFETCHT1 Mb" Encoding:"0x0F 0x18 /2:mem"/"M" { .Instruction = ND_INS_PREFETCHT1, .Category = ND_CAT_PREFETCH, .IsaSet = ND_SET_SSE, - .Mnemonic = 683, + .Mnemonic = 685, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -52023,6 +53996,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -52035,12 +54009,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1864 Instruction:"PREFETCHT1 Mb" Encoding:"piti 0x0F 0x18 /2:mem"/"M" + // Pos:1868 Instruction:"PREFETCHT1 Mb" Encoding:"piti 0x0F 0x18 /2:mem"/"M" { .Instruction = ND_INS_PREFETCHT1, .Category = ND_CAT_PREFETCH, .IsaSet = ND_SET_SSE, - .Mnemonic = 683, + .Mnemonic = 685, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -52049,6 +54023,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -52061,12 +54036,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1865 Instruction:"PREFETCHT2 Mb" Encoding:"0x0F 0x18 /3:mem"/"M" + // Pos:1869 Instruction:"PREFETCHT2 Mb" Encoding:"0x0F 0x18 /3:mem"/"M" { .Instruction = ND_INS_PREFETCHT2, .Category = ND_CAT_PREFETCH, .IsaSet = ND_SET_SSE, - .Mnemonic = 684, + .Mnemonic = 686, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -52075,6 +54050,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -52087,12 +54063,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1866 Instruction:"PREFETCHT2 Mb" Encoding:"piti 0x0F 0x18 /3:mem"/"M" + // Pos:1870 Instruction:"PREFETCHT2 Mb" Encoding:"piti 0x0F 0x18 /3:mem"/"M" { .Instruction = ND_INS_PREFETCHT2, .Category = ND_CAT_PREFETCH, .IsaSet = ND_SET_SSE, - .Mnemonic = 684, + .Mnemonic = 686, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -52101,6 +54077,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -52113,12 +54090,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1867 Instruction:"PREFETCHW Mb" Encoding:"0x0F 0x0D /1:mem"/"M" + // Pos:1871 Instruction:"PREFETCHW Mb" Encoding:"0x0F 0x0D /1:mem"/"M" { .Instruction = ND_INS_PREFETCHW, .Category = ND_CAT_PREFETCH, .IsaSet = ND_SET_PREFETCH_NOP, - .Mnemonic = 685, + .Mnemonic = 687, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -52127,6 +54104,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -52139,12 +54117,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1868 Instruction:"PREFETCHWT1 Mb" Encoding:"0x0F 0x0D /2:mem"/"M" + // Pos:1872 Instruction:"PREFETCHWT1 Mb" Encoding:"0x0F 0x0D /2:mem"/"M" { .Instruction = ND_INS_PREFETCHWT1, .Category = ND_CAT_PREFETCH, .IsaSet = ND_SET_PREFETCH_NOP, - .Mnemonic = 686, + .Mnemonic = 688, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -52153,6 +54131,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -52165,12 +54144,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1869 Instruction:"PSADBW Pq,Qq" Encoding:"NP 0x0F 0xF6 /r"/"RM" + // Pos:1873 Instruction:"PSADBW Pq,Qq" Encoding:"NP 0x0F 0xF6 /r"/"RM" { .Instruction = ND_INS_PSADBW, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 687, + .Mnemonic = 689, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -52179,6 +54158,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -52192,12 +54172,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1870 Instruction:"PSADBW Vx,Wx" Encoding:"0x66 0x0F 0xF6 /r"/"RM" + // Pos:1874 Instruction:"PSADBW Vx,Wx" Encoding:"0x66 0x0F 0xF6 /r"/"RM" { .Instruction = ND_INS_PSADBW, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 687, + .Mnemonic = 689, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -52206,6 +54186,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -52219,12 +54200,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1871 Instruction:"PSHUFB Pq,Qq" Encoding:"NP 0x0F 0x38 0x00 /r"/"RM" + // Pos:1875 Instruction:"PSHUFB Pq,Qq" Encoding:"NP 0x0F 0x38 0x00 /r"/"RM" { .Instruction = ND_INS_PSHUFB, .Category = ND_CAT_MMX, .IsaSet = ND_SET_SSSE3, - .Mnemonic = 688, + .Mnemonic = 690, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -52233,6 +54214,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -52246,12 +54228,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1872 Instruction:"PSHUFB Vx,Wx" Encoding:"0x66 0x0F 0x38 0x00 /r"/"RM" + // Pos:1876 Instruction:"PSHUFB Vx,Wx" Encoding:"0x66 0x0F 0x38 0x00 /r"/"RM" { .Instruction = ND_INS_PSHUFB, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSSE3, - .Mnemonic = 688, + .Mnemonic = 690, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -52260,6 +54242,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -52273,12 +54256,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1873 Instruction:"PSHUFD Vx,Wx,Ib" Encoding:"0x66 0x0F 0x70 /r ib"/"RMI" + // Pos:1877 Instruction:"PSHUFD Vx,Wx,Ib" Encoding:"0x66 0x0F 0x70 /r ib"/"RMI" { .Instruction = ND_INS_PSHUFD, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 689, + .Mnemonic = 691, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -52287,6 +54270,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -52301,12 +54285,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1874 Instruction:"PSHUFHW Vx,Wx,Ib" Encoding:"0xF3 0x0F 0x70 /r ib"/"RMI" + // Pos:1878 Instruction:"PSHUFHW Vx,Wx,Ib" Encoding:"0xF3 0x0F 0x70 /r ib"/"RMI" { .Instruction = ND_INS_PSHUFHW, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 690, + .Mnemonic = 692, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -52315,6 +54299,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -52329,12 +54314,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1875 Instruction:"PSHUFLW Vx,Wx,Ib" Encoding:"0xF2 0x0F 0x70 /r ib"/"RMI" + // Pos:1879 Instruction:"PSHUFLW Vx,Wx,Ib" Encoding:"0xF2 0x0F 0x70 /r ib"/"RMI" { .Instruction = ND_INS_PSHUFLW, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 691, + .Mnemonic = 693, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -52343,6 +54328,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -52357,12 +54343,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1876 Instruction:"PSHUFW Pq,Qq,Ib" Encoding:"NP 0x0F 0x70 /r ib"/"RMI" + // Pos:1880 Instruction:"PSHUFW Pq,Qq,Ib" Encoding:"NP 0x0F 0x70 /r ib"/"RMI" { .Instruction = ND_INS_PSHUFW, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 692, + .Mnemonic = 694, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -52371,6 +54357,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -52385,12 +54372,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1877 Instruction:"PSIGNB Pq,Qq" Encoding:"NP 0x0F 0x38 0x08 /r"/"RM" + // Pos:1881 Instruction:"PSIGNB Pq,Qq" Encoding:"NP 0x0F 0x38 0x08 /r"/"RM" { .Instruction = ND_INS_PSIGNB, .Category = ND_CAT_MMX, .IsaSet = ND_SET_SSSE3, - .Mnemonic = 693, + .Mnemonic = 695, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -52399,6 +54386,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -52412,12 +54400,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1878 Instruction:"PSIGNB Vx,Wx" Encoding:"0x66 0x0F 0x38 0x08 /r"/"RM" + // Pos:1882 Instruction:"PSIGNB Vx,Wx" Encoding:"0x66 0x0F 0x38 0x08 /r"/"RM" { .Instruction = ND_INS_PSIGNB, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSSE3, - .Mnemonic = 693, + .Mnemonic = 695, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -52426,6 +54414,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -52439,12 +54428,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1879 Instruction:"PSIGND Pq,Qq" Encoding:"NP 0x0F 0x38 0x0A /r"/"RM" + // Pos:1883 Instruction:"PSIGND Pq,Qq" Encoding:"NP 0x0F 0x38 0x0A /r"/"RM" { .Instruction = ND_INS_PSIGND, .Category = ND_CAT_MMX, .IsaSet = ND_SET_SSSE3, - .Mnemonic = 694, + .Mnemonic = 696, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -52453,6 +54442,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -52466,12 +54456,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1880 Instruction:"PSIGND Vx,Wx" Encoding:"0x66 0x0F 0x38 0x0A /r"/"RM" + // Pos:1884 Instruction:"PSIGND Vx,Wx" Encoding:"0x66 0x0F 0x38 0x0A /r"/"RM" { .Instruction = ND_INS_PSIGND, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSSE3, - .Mnemonic = 694, + .Mnemonic = 696, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -52480,6 +54470,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -52493,12 +54484,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1881 Instruction:"PSIGNW Pq,Qq" Encoding:"NP 0x0F 0x38 0x09 /r"/"RM" + // Pos:1885 Instruction:"PSIGNW Pq,Qq" Encoding:"NP 0x0F 0x38 0x09 /r"/"RM" { .Instruction = ND_INS_PSIGNW, .Category = ND_CAT_MMX, .IsaSet = ND_SET_SSSE3, - .Mnemonic = 695, + .Mnemonic = 697, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -52507,6 +54498,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -52520,12 +54512,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1882 Instruction:"PSIGNW Vx,Wx" Encoding:"0x66 0x0F 0x38 0x09 /r"/"RM" + // Pos:1886 Instruction:"PSIGNW Vx,Wx" Encoding:"0x66 0x0F 0x38 0x09 /r"/"RM" { .Instruction = ND_INS_PSIGNW, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSSE3, - .Mnemonic = 695, + .Mnemonic = 697, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -52534,6 +54526,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -52547,12 +54540,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1883 Instruction:"PSLLD Nq,Ib" Encoding:"NP 0x0F 0x72 /6:reg ib"/"MI" + // Pos:1887 Instruction:"PSLLD Nq,Ib" Encoding:"NP 0x0F 0x72 /6:reg ib"/"MI" { .Instruction = ND_INS_PSLLD, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 696, + .Mnemonic = 698, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -52561,6 +54554,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -52574,12 +54568,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1884 Instruction:"PSLLD Ux,Ib" Encoding:"0x66 0x0F 0x72 /6:reg ib"/"MI" + // Pos:1888 Instruction:"PSLLD Ux,Ib" Encoding:"0x66 0x0F 0x72 /6:reg ib"/"MI" { .Instruction = ND_INS_PSLLD, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 696, + .Mnemonic = 698, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -52588,6 +54582,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -52601,12 +54596,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1885 Instruction:"PSLLD Pq,Qq" Encoding:"NP 0x0F 0xF2 /r"/"RM" + // Pos:1889 Instruction:"PSLLD Pq,Qq" Encoding:"NP 0x0F 0xF2 /r"/"RM" { .Instruction = ND_INS_PSLLD, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 696, + .Mnemonic = 698, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -52615,6 +54610,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -52628,12 +54624,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1886 Instruction:"PSLLD Vx,Wx" Encoding:"0x66 0x0F 0xF2 /r"/"RM" + // Pos:1890 Instruction:"PSLLD Vx,Wx" Encoding:"0x66 0x0F 0xF2 /r"/"RM" { .Instruction = ND_INS_PSLLD, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 696, + .Mnemonic = 698, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -52642,6 +54638,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -52655,12 +54652,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1887 Instruction:"PSLLDQ Ux,Ib" Encoding:"0x66 0x0F 0x73 /7:reg ib"/"MI" + // Pos:1891 Instruction:"PSLLDQ Ux,Ib" Encoding:"0x66 0x0F 0x73 /7:reg ib"/"MI" { .Instruction = ND_INS_PSLLDQ, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 697, + .Mnemonic = 699, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -52669,6 +54666,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_7, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -52682,12 +54680,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1888 Instruction:"PSLLQ Nq,Ib" Encoding:"NP 0x0F 0x73 /6:reg ib"/"MI" + // Pos:1892 Instruction:"PSLLQ Nq,Ib" Encoding:"NP 0x0F 0x73 /6:reg ib"/"MI" { .Instruction = ND_INS_PSLLQ, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 698, + .Mnemonic = 700, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -52696,6 +54694,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -52709,12 +54708,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1889 Instruction:"PSLLQ Ux,Ib" Encoding:"0x66 0x0F 0x73 /6:reg ib"/"MI" + // Pos:1893 Instruction:"PSLLQ Ux,Ib" Encoding:"0x66 0x0F 0x73 /6:reg ib"/"MI" { .Instruction = ND_INS_PSLLQ, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 698, + .Mnemonic = 700, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -52723,6 +54722,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -52736,12 +54736,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1890 Instruction:"PSLLQ Pq,Qq" Encoding:"NP 0x0F 0xF3 /r"/"RM" + // Pos:1894 Instruction:"PSLLQ Pq,Qq" Encoding:"NP 0x0F 0xF3 /r"/"RM" { .Instruction = ND_INS_PSLLQ, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 698, + .Mnemonic = 700, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -52750,6 +54750,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -52763,12 +54764,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1891 Instruction:"PSLLQ Vx,Wx" Encoding:"0x66 0x0F 0xF3 /r"/"RM" + // Pos:1895 Instruction:"PSLLQ Vx,Wx" Encoding:"0x66 0x0F 0xF3 /r"/"RM" { .Instruction = ND_INS_PSLLQ, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 698, + .Mnemonic = 700, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -52777,6 +54778,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -52790,12 +54792,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1892 Instruction:"PSLLW Nq,Ib" Encoding:"NP 0x0F 0x71 /6:reg ib"/"MI" + // Pos:1896 Instruction:"PSLLW Nq,Ib" Encoding:"NP 0x0F 0x71 /6:reg ib"/"MI" { .Instruction = ND_INS_PSLLW, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 699, + .Mnemonic = 701, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -52804,6 +54806,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -52817,12 +54820,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1893 Instruction:"PSLLW Ux,Ib" Encoding:"0x66 0x0F 0x71 /6:reg ib"/"MI" + // Pos:1897 Instruction:"PSLLW Ux,Ib" Encoding:"0x66 0x0F 0x71 /6:reg ib"/"MI" { .Instruction = ND_INS_PSLLW, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 699, + .Mnemonic = 701, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -52831,6 +54834,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -52844,12 +54848,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1894 Instruction:"PSLLW Pq,Qq" Encoding:"NP 0x0F 0xF1 /r"/"RM" + // Pos:1898 Instruction:"PSLLW Pq,Qq" Encoding:"NP 0x0F 0xF1 /r"/"RM" { .Instruction = ND_INS_PSLLW, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 699, + .Mnemonic = 701, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -52858,6 +54862,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -52871,12 +54876,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1895 Instruction:"PSLLW Vx,Wx" Encoding:"0x66 0x0F 0xF1 /r"/"RM" + // Pos:1899 Instruction:"PSLLW Vx,Wx" Encoding:"0x66 0x0F 0xF1 /r"/"RM" { .Instruction = ND_INS_PSLLW, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 699, + .Mnemonic = 701, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -52885,6 +54890,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -52898,12 +54904,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1896 Instruction:"PSMASH" Encoding:"0xF3 0x0F 0x01 /0xFF"/"" + // Pos:1900 Instruction:"PSMASH" Encoding:"0xF3 0x0F 0x01 /0xFF"/"" { .Instruction = ND_INS_PSMASH, .Category = ND_CAT_SYSTEM, .IsaSet = ND_SET_SNP, - .Mnemonic = 700, + .Mnemonic = 702, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -52912,6 +54918,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_OF|NDR_RFLAG_ZF|NDR_RFLAG_AF|NDR_RFLAG_PF|NDR_RFLAG_SF, .SetFlags = 0, @@ -52925,12 +54932,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1897 Instruction:"PSRAD Nq,Ib" Encoding:"NP 0x0F 0x72 /4:reg ib"/"MI" + // Pos:1901 Instruction:"PSRAD Nq,Ib" Encoding:"NP 0x0F 0x72 /4:reg ib"/"MI" { .Instruction = ND_INS_PSRAD, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 701, + .Mnemonic = 703, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -52939,6 +54946,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -52952,12 +54960,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1898 Instruction:"PSRAD Ux,Ib" Encoding:"0x66 0x0F 0x72 /4:reg ib"/"MI" + // Pos:1902 Instruction:"PSRAD Ux,Ib" Encoding:"0x66 0x0F 0x72 /4:reg ib"/"MI" { .Instruction = ND_INS_PSRAD, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 701, + .Mnemonic = 703, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -52966,6 +54974,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -52979,12 +54988,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1899 Instruction:"PSRAD Pq,Qq" Encoding:"NP 0x0F 0xE2 /r"/"RM" + // Pos:1903 Instruction:"PSRAD Pq,Qq" Encoding:"NP 0x0F 0xE2 /r"/"RM" { .Instruction = ND_INS_PSRAD, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 701, + .Mnemonic = 703, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -52993,6 +55002,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -53006,12 +55016,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1900 Instruction:"PSRAD Vx,Wx" Encoding:"0x66 0x0F 0xE2 /r"/"RM" + // Pos:1904 Instruction:"PSRAD Vx,Wx" Encoding:"0x66 0x0F 0xE2 /r"/"RM" { .Instruction = ND_INS_PSRAD, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 701, + .Mnemonic = 703, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -53020,6 +55030,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -53033,12 +55044,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1901 Instruction:"PSRAW Nq,Ib" Encoding:"NP 0x0F 0x71 /4:reg ib"/"MI" + // Pos:1905 Instruction:"PSRAW Nq,Ib" Encoding:"NP 0x0F 0x71 /4:reg ib"/"MI" { .Instruction = ND_INS_PSRAW, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 702, + .Mnemonic = 704, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -53047,6 +55058,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -53060,12 +55072,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1902 Instruction:"PSRAW Ux,Ib" Encoding:"0x66 0x0F 0x71 /4:reg ib"/"MI" + // Pos:1906 Instruction:"PSRAW Ux,Ib" Encoding:"0x66 0x0F 0x71 /4:reg ib"/"MI" { .Instruction = ND_INS_PSRAW, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 702, + .Mnemonic = 704, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -53074,6 +55086,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -53087,12 +55100,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1903 Instruction:"PSRAW Pq,Qq" Encoding:"NP 0x0F 0xE1 /r"/"RM" + // Pos:1907 Instruction:"PSRAW Pq,Qq" Encoding:"NP 0x0F 0xE1 /r"/"RM" { .Instruction = ND_INS_PSRAW, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 702, + .Mnemonic = 704, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -53101,6 +55114,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -53114,12 +55128,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1904 Instruction:"PSRAW Vx,Wx" Encoding:"0x66 0x0F 0xE1 /r"/"RM" + // Pos:1908 Instruction:"PSRAW Vx,Wx" Encoding:"0x66 0x0F 0xE1 /r"/"RM" { .Instruction = ND_INS_PSRAW, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 702, + .Mnemonic = 704, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -53128,6 +55142,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -53141,12 +55156,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1905 Instruction:"PSRLD Nq,Ib" Encoding:"NP 0x0F 0x72 /2:reg ib"/"MI" + // Pos:1909 Instruction:"PSRLD Nq,Ib" Encoding:"NP 0x0F 0x72 /2:reg ib"/"MI" { .Instruction = ND_INS_PSRLD, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 703, + .Mnemonic = 705, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -53155,6 +55170,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -53168,12 +55184,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1906 Instruction:"PSRLD Ux,Ib" Encoding:"0x66 0x0F 0x72 /2:reg ib"/"MI" + // Pos:1910 Instruction:"PSRLD Ux,Ib" Encoding:"0x66 0x0F 0x72 /2:reg ib"/"MI" { .Instruction = ND_INS_PSRLD, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 703, + .Mnemonic = 705, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -53182,6 +55198,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -53195,12 +55212,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1907 Instruction:"PSRLD Pq,Qq" Encoding:"NP 0x0F 0xD2 /r"/"RM" + // Pos:1911 Instruction:"PSRLD Pq,Qq" Encoding:"NP 0x0F 0xD2 /r"/"RM" { .Instruction = ND_INS_PSRLD, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 703, + .Mnemonic = 705, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -53209,6 +55226,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -53222,12 +55240,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1908 Instruction:"PSRLD Vx,Wx" Encoding:"0x66 0x0F 0xD2 /r"/"RM" + // Pos:1912 Instruction:"PSRLD Vx,Wx" Encoding:"0x66 0x0F 0xD2 /r"/"RM" { .Instruction = ND_INS_PSRLD, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 703, + .Mnemonic = 705, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -53236,6 +55254,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -53249,12 +55268,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1909 Instruction:"PSRLDQ Ux,Ib" Encoding:"0x66 0x0F 0x73 /3:reg ib"/"MI" + // Pos:1913 Instruction:"PSRLDQ Ux,Ib" Encoding:"0x66 0x0F 0x73 /3:reg ib"/"MI" { .Instruction = ND_INS_PSRLDQ, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 704, + .Mnemonic = 706, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -53263,6 +55282,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_7, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -53276,12 +55296,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1910 Instruction:"PSRLQ Nq,Ib" Encoding:"NP 0x0F 0x73 /2:reg ib"/"MI" + // Pos:1914 Instruction:"PSRLQ Nq,Ib" Encoding:"NP 0x0F 0x73 /2:reg ib"/"MI" { .Instruction = ND_INS_PSRLQ, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 705, + .Mnemonic = 707, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -53290,6 +55310,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -53303,12 +55324,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1911 Instruction:"PSRLQ Ux,Ib" Encoding:"0x66 0x0F 0x73 /2:reg ib"/"MI" + // Pos:1915 Instruction:"PSRLQ Ux,Ib" Encoding:"0x66 0x0F 0x73 /2:reg ib"/"MI" { .Instruction = ND_INS_PSRLQ, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 705, + .Mnemonic = 707, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -53317,6 +55338,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -53330,12 +55352,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1912 Instruction:"PSRLQ Pq,Qq" Encoding:"NP 0x0F 0xD3 /r"/"RM" + // Pos:1916 Instruction:"PSRLQ Pq,Qq" Encoding:"NP 0x0F 0xD3 /r"/"RM" { .Instruction = ND_INS_PSRLQ, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 705, + .Mnemonic = 707, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -53344,6 +55366,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -53357,12 +55380,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1913 Instruction:"PSRLQ Vx,Wx" Encoding:"0x66 0x0F 0xD3 /r"/"RM" + // Pos:1917 Instruction:"PSRLQ Vx,Wx" Encoding:"0x66 0x0F 0xD3 /r"/"RM" { .Instruction = ND_INS_PSRLQ, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 705, + .Mnemonic = 707, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -53371,6 +55394,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -53384,12 +55408,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1914 Instruction:"PSRLW Nq,Ib" Encoding:"NP 0x0F 0x71 /2:reg ib"/"MI" + // Pos:1918 Instruction:"PSRLW Nq,Ib" Encoding:"NP 0x0F 0x71 /2:reg ib"/"MI" { .Instruction = ND_INS_PSRLW, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 706, + .Mnemonic = 708, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -53398,6 +55422,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -53411,12 +55436,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1915 Instruction:"PSRLW Ux,Ib" Encoding:"0x66 0x0F 0x71 /2:reg ib"/"MI" + // Pos:1919 Instruction:"PSRLW Ux,Ib" Encoding:"0x66 0x0F 0x71 /2:reg ib"/"MI" { .Instruction = ND_INS_PSRLW, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 706, + .Mnemonic = 708, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -53425,6 +55450,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -53438,12 +55464,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1916 Instruction:"PSRLW Pq,Qq" Encoding:"NP 0x0F 0xD1 /r"/"RM" + // Pos:1920 Instruction:"PSRLW Pq,Qq" Encoding:"NP 0x0F 0xD1 /r"/"RM" { .Instruction = ND_INS_PSRLW, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 706, + .Mnemonic = 708, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -53452,6 +55478,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -53465,12 +55492,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1917 Instruction:"PSRLW Vx,Wx" Encoding:"0x66 0x0F 0xD1 /r"/"RM" + // Pos:1921 Instruction:"PSRLW Vx,Wx" Encoding:"0x66 0x0F 0xD1 /r"/"RM" { .Instruction = ND_INS_PSRLW, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 706, + .Mnemonic = 708, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -53479,6 +55506,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -53492,12 +55520,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1918 Instruction:"PSUBB Pq,Qq" Encoding:"NP 0x0F 0xF8 /r"/"RM" + // Pos:1922 Instruction:"PSUBB Pq,Qq" Encoding:"NP 0x0F 0xF8 /r"/"RM" { .Instruction = ND_INS_PSUBB, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 707, + .Mnemonic = 709, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -53506,6 +55534,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -53519,12 +55548,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1919 Instruction:"PSUBB Vx,Wx" Encoding:"0x66 0x0F 0xF8 /r"/"RM" + // Pos:1923 Instruction:"PSUBB Vx,Wx" Encoding:"0x66 0x0F 0xF8 /r"/"RM" { .Instruction = ND_INS_PSUBB, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 707, + .Mnemonic = 709, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -53533,6 +55562,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -53546,12 +55576,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1920 Instruction:"PSUBD Pq,Qq" Encoding:"NP 0x0F 0xFA /r"/"RM" + // Pos:1924 Instruction:"PSUBD Pq,Qq" Encoding:"NP 0x0F 0xFA /r"/"RM" { .Instruction = ND_INS_PSUBD, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 708, + .Mnemonic = 710, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -53560,6 +55590,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -53573,12 +55604,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1921 Instruction:"PSUBD Vx,Wx" Encoding:"0x66 0x0F 0xFA /r"/"RM" + // Pos:1925 Instruction:"PSUBD Vx,Wx" Encoding:"0x66 0x0F 0xFA /r"/"RM" { .Instruction = ND_INS_PSUBD, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 708, + .Mnemonic = 710, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -53587,6 +55618,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -53600,12 +55632,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1922 Instruction:"PSUBQ Pq,Qq" Encoding:"NP 0x0F 0xFB /r"/"RM" + // Pos:1926 Instruction:"PSUBQ Pq,Qq" Encoding:"NP 0x0F 0xFB /r"/"RM" { .Instruction = ND_INS_PSUBQ, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 709, + .Mnemonic = 711, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -53614,6 +55646,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -53627,12 +55660,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1923 Instruction:"PSUBQ Vx,Wx" Encoding:"0x66 0x0F 0xFB /r"/"RM" + // Pos:1927 Instruction:"PSUBQ Vx,Wx" Encoding:"0x66 0x0F 0xFB /r"/"RM" { .Instruction = ND_INS_PSUBQ, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 709, + .Mnemonic = 711, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -53641,6 +55674,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -53654,12 +55688,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1924 Instruction:"PSUBSB Pq,Qq" Encoding:"NP 0x0F 0xE8 /r"/"RM" + // Pos:1928 Instruction:"PSUBSB Pq,Qq" Encoding:"NP 0x0F 0xE8 /r"/"RM" { .Instruction = ND_INS_PSUBSB, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 710, + .Mnemonic = 712, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -53668,6 +55702,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -53681,12 +55716,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1925 Instruction:"PSUBSB Vx,Wx" Encoding:"0x66 0x0F 0xE8 /r"/"RM" + // Pos:1929 Instruction:"PSUBSB Vx,Wx" Encoding:"0x66 0x0F 0xE8 /r"/"RM" { .Instruction = ND_INS_PSUBSB, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 710, + .Mnemonic = 712, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -53695,6 +55730,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -53708,12 +55744,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1926 Instruction:"PSUBSW Pq,Qq" Encoding:"NP 0x0F 0xE9 /r"/"RM" + // Pos:1930 Instruction:"PSUBSW Pq,Qq" Encoding:"NP 0x0F 0xE9 /r"/"RM" { .Instruction = ND_INS_PSUBSW, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 711, + .Mnemonic = 713, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -53722,6 +55758,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -53735,12 +55772,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1927 Instruction:"PSUBSW Vx,Wx" Encoding:"0x66 0x0F 0xE9 /r"/"RM" + // Pos:1931 Instruction:"PSUBSW Vx,Wx" Encoding:"0x66 0x0F 0xE9 /r"/"RM" { .Instruction = ND_INS_PSUBSW, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 711, + .Mnemonic = 713, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -53749,6 +55786,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -53762,12 +55800,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1928 Instruction:"PSUBUSB Pq,Qq" Encoding:"NP 0x0F 0xD8 /r"/"RM" + // Pos:1932 Instruction:"PSUBUSB Pq,Qq" Encoding:"NP 0x0F 0xD8 /r"/"RM" { .Instruction = ND_INS_PSUBUSB, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 712, + .Mnemonic = 714, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -53776,6 +55814,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -53789,12 +55828,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1929 Instruction:"PSUBUSB Vx,Wx" Encoding:"0x66 0x0F 0xD8 /r"/"RM" + // Pos:1933 Instruction:"PSUBUSB Vx,Wx" Encoding:"0x66 0x0F 0xD8 /r"/"RM" { .Instruction = ND_INS_PSUBUSB, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 712, + .Mnemonic = 714, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -53803,6 +55842,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -53816,12 +55856,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1930 Instruction:"PSUBUSW Pq,Qq" Encoding:"NP 0x0F 0xD9 /r"/"RM" + // Pos:1934 Instruction:"PSUBUSW Pq,Qq" Encoding:"NP 0x0F 0xD9 /r"/"RM" { .Instruction = ND_INS_PSUBUSW, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 713, + .Mnemonic = 715, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -53830,6 +55870,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -53843,12 +55884,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1931 Instruction:"PSUBUSW Vx,Wx" Encoding:"0x66 0x0F 0xD9 /r"/"RM" + // Pos:1935 Instruction:"PSUBUSW Vx,Wx" Encoding:"0x66 0x0F 0xD9 /r"/"RM" { .Instruction = ND_INS_PSUBUSW, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 713, + .Mnemonic = 715, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -53857,6 +55898,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -53870,12 +55912,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1932 Instruction:"PSUBW Pq,Qq" Encoding:"NP 0x0F 0xF9 /r"/"RM" + // Pos:1936 Instruction:"PSUBW Pq,Qq" Encoding:"NP 0x0F 0xF9 /r"/"RM" { .Instruction = ND_INS_PSUBW, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 714, + .Mnemonic = 716, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -53884,6 +55926,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -53897,12 +55940,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1933 Instruction:"PSUBW Vx,Wx" Encoding:"0x66 0x0F 0xF9 /r"/"RM" + // Pos:1937 Instruction:"PSUBW Vx,Wx" Encoding:"0x66 0x0F 0xF9 /r"/"RM" { .Instruction = ND_INS_PSUBW, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 714, + .Mnemonic = 716, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -53911,6 +55954,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -53924,12 +55968,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1934 Instruction:"PSWAPD Pq,Qq" Encoding:"0x0F 0x0F /r 0xBB"/"RM" + // Pos:1938 Instruction:"PSWAPD Pq,Qq" Encoding:"0x0F 0x0F /r 0xBB"/"RM" { .Instruction = ND_INS_PSWAPD, .Category = ND_CAT_3DNOW, .IsaSet = ND_SET_3DNOW, - .Mnemonic = 715, + .Mnemonic = 717, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -53938,6 +55982,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -53951,12 +55996,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1935 Instruction:"PTEST Vdq,Wdq" Encoding:"0x66 0x0F 0x38 0x17 /r"/"RM" + // Pos:1939 Instruction:"PTEST Vdq,Wdq" Encoding:"0x66 0x0F 0x38 0x17 /r"/"RM" { .Instruction = ND_INS_PTEST, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE4, - .Mnemonic = 716, + .Mnemonic = 718, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -53965,6 +56010,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .SetFlags = 0, @@ -53979,12 +56025,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1936 Instruction:"PTWRITE Ey" Encoding:"0xF3 0x0F 0xAE /4"/"M" + // Pos:1940 Instruction:"PTWRITE Ey" Encoding:"0xF3 0x0F 0xAE /4"/"M" { .Instruction = ND_INS_PTWRITE, .Category = ND_CAT_PTWRITE, .IsaSet = ND_SET_PTWRITE, - .Mnemonic = 717, + .Mnemonic = 719, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -53993,6 +56039,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -54005,12 +56052,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1937 Instruction:"PUNPCKHBW Pq,Qq" Encoding:"NP 0x0F 0x68 /r"/"RM" + // Pos:1941 Instruction:"PUNPCKHBW Pq,Qq" Encoding:"NP 0x0F 0x68 /r"/"RM" { .Instruction = ND_INS_PUNPCKHBW, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 718, + .Mnemonic = 720, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -54019,6 +56066,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -54032,12 +56080,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1938 Instruction:"PUNPCKHBW Vx,Wx" Encoding:"0x66 0x0F 0x68 /r"/"RM" + // Pos:1942 Instruction:"PUNPCKHBW Vx,Wx" Encoding:"0x66 0x0F 0x68 /r"/"RM" { .Instruction = ND_INS_PUNPCKHBW, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 718, + .Mnemonic = 720, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -54046,6 +56094,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -54059,12 +56108,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1939 Instruction:"PUNPCKHDQ Pq,Qq" Encoding:"NP 0x0F 0x6A /r"/"RM" + // Pos:1943 Instruction:"PUNPCKHDQ Pq,Qq" Encoding:"NP 0x0F 0x6A /r"/"RM" { .Instruction = ND_INS_PUNPCKHDQ, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 719, + .Mnemonic = 721, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -54073,6 +56122,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -54086,12 +56136,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1940 Instruction:"PUNPCKHDQ Vx,Wx" Encoding:"0x66 0x0F 0x6A /r"/"RM" + // Pos:1944 Instruction:"PUNPCKHDQ Vx,Wx" Encoding:"0x66 0x0F 0x6A /r"/"RM" { .Instruction = ND_INS_PUNPCKHDQ, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 719, + .Mnemonic = 721, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -54100,6 +56150,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -54113,12 +56164,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1941 Instruction:"PUNPCKHQDQ Vx,Wx" Encoding:"0x66 0x0F 0x6D /r"/"RM" + // Pos:1945 Instruction:"PUNPCKHQDQ Vx,Wx" Encoding:"0x66 0x0F 0x6D /r"/"RM" { .Instruction = ND_INS_PUNPCKHQDQ, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 720, + .Mnemonic = 722, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -54127,6 +56178,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -54140,12 +56192,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1942 Instruction:"PUNPCKHWD Pq,Qq" Encoding:"NP 0x0F 0x69 /r"/"RM" + // Pos:1946 Instruction:"PUNPCKHWD Pq,Qq" Encoding:"NP 0x0F 0x69 /r"/"RM" { .Instruction = ND_INS_PUNPCKHWD, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 721, + .Mnemonic = 723, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -54154,6 +56206,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -54167,12 +56220,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1943 Instruction:"PUNPCKHWD Vx,Wx" Encoding:"0x66 0x0F 0x69 /r"/"RM" + // Pos:1947 Instruction:"PUNPCKHWD Vx,Wx" Encoding:"0x66 0x0F 0x69 /r"/"RM" { .Instruction = ND_INS_PUNPCKHWD, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 721, + .Mnemonic = 723, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -54181,6 +56234,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -54194,12 +56248,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1944 Instruction:"PUNPCKLBW Pq,Qd" Encoding:"NP 0x0F 0x60 /r"/"RM" + // Pos:1948 Instruction:"PUNPCKLBW Pq,Qd" Encoding:"NP 0x0F 0x60 /r"/"RM" { .Instruction = ND_INS_PUNPCKLBW, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 722, + .Mnemonic = 724, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -54208,6 +56262,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -54221,12 +56276,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1945 Instruction:"PUNPCKLBW Vx,Wx" Encoding:"0x66 0x0F 0x60 /r"/"RM" + // Pos:1949 Instruction:"PUNPCKLBW Vx,Wx" Encoding:"0x66 0x0F 0x60 /r"/"RM" { .Instruction = ND_INS_PUNPCKLBW, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 722, + .Mnemonic = 724, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -54235,6 +56290,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -54248,12 +56304,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1946 Instruction:"PUNPCKLDQ Pq,Qd" Encoding:"NP 0x0F 0x62 /r"/"RM" + // Pos:1950 Instruction:"PUNPCKLDQ Pq,Qd" Encoding:"NP 0x0F 0x62 /r"/"RM" { .Instruction = ND_INS_PUNPCKLDQ, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 723, + .Mnemonic = 725, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -54262,6 +56318,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -54275,12 +56332,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1947 Instruction:"PUNPCKLDQ Vx,Wx" Encoding:"0x66 0x0F 0x62 /r"/"RM" + // Pos:1951 Instruction:"PUNPCKLDQ Vx,Wx" Encoding:"0x66 0x0F 0x62 /r"/"RM" { .Instruction = ND_INS_PUNPCKLDQ, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 723, + .Mnemonic = 725, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -54289,6 +56346,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -54302,12 +56360,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1948 Instruction:"PUNPCKLQDQ Vx,Wx" Encoding:"0x66 0x0F 0x6C /r"/"RM" + // Pos:1952 Instruction:"PUNPCKLQDQ Vx,Wx" Encoding:"0x66 0x0F 0x6C /r"/"RM" { .Instruction = ND_INS_PUNPCKLQDQ, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 724, + .Mnemonic = 726, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -54316,6 +56374,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -54329,12 +56388,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1949 Instruction:"PUNPCKLWD Pq,Qd" Encoding:"NP 0x0F 0x61 /r"/"RM" + // Pos:1953 Instruction:"PUNPCKLWD Pq,Qd" Encoding:"NP 0x0F 0x61 /r"/"RM" { .Instruction = ND_INS_PUNPCKLWD, .Category = ND_CAT_MMX, .IsaSet = ND_SET_MMX, - .Mnemonic = 725, + .Mnemonic = 727, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -54343,6 +56402,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -54356,12 +56416,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1950 Instruction:"PUNPCKLWD Vx,Wx" Encoding:"0x66 0x0F 0x61 /r"/"RM" + // Pos:1954 Instruction:"PUNPCKLWD Vx,Wx" Encoding:"0x66 0x0F 0x61 /r"/"RM" { .Instruction = ND_INS_PUNPCKLWD, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 725, + .Mnemonic = 727, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -54370,6 +56430,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -54383,12 +56444,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1951 Instruction:"PUSH ES" Encoding:"0x06"/"" + // Pos:1955 Instruction:"PUSH ES" Encoding:"0x06"/"" { .Instruction = ND_INS_PUSH, .Category = ND_CAT_PUSH, .IsaSet = ND_SET_I86, - .Mnemonic = 726, + .Mnemonic = 728, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_REAL|ND_MOD_V8086|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -54397,6 +56458,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -54410,12 +56472,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1952 Instruction:"PUSH CS" Encoding:"0x0E"/"" + // Pos:1956 Instruction:"PUSH CS" Encoding:"0x0E"/"" { .Instruction = ND_INS_PUSH, .Category = ND_CAT_PUSH, .IsaSet = ND_SET_I86, - .Mnemonic = 726, + .Mnemonic = 728, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_REAL|ND_MOD_V8086|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -54424,6 +56486,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -54437,12 +56500,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1953 Instruction:"PUSH SS" Encoding:"0x16"/"" + // Pos:1957 Instruction:"PUSH SS" Encoding:"0x16"/"" { .Instruction = ND_INS_PUSH, .Category = ND_CAT_PUSH, .IsaSet = ND_SET_I86, - .Mnemonic = 726, + .Mnemonic = 728, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_REAL|ND_MOD_V8086|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -54451,6 +56514,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -54464,12 +56528,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1954 Instruction:"PUSH DS" Encoding:"0x1E"/"" + // Pos:1958 Instruction:"PUSH DS" Encoding:"0x1E"/"" { .Instruction = ND_INS_PUSH, .Category = ND_CAT_PUSH, .IsaSet = ND_SET_I86, - .Mnemonic = 726, + .Mnemonic = 728, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_REAL|ND_MOD_V8086|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -54478,6 +56542,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -54491,12 +56556,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1955 Instruction:"PUSH Zv" Encoding:"0x50"/"O" + // Pos:1959 Instruction:"PUSH Zv" Encoding:"0x50"/"O" { .Instruction = ND_INS_PUSH, .Category = ND_CAT_PUSH, .IsaSet = ND_SET_I86, - .Mnemonic = 726, + .Mnemonic = 728, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -54505,6 +56570,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -54518,12 +56584,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1956 Instruction:"PUSH Zv" Encoding:"0x51"/"O" + // Pos:1960 Instruction:"PUSH Zv" Encoding:"0x51"/"O" { .Instruction = ND_INS_PUSH, .Category = ND_CAT_PUSH, .IsaSet = ND_SET_I86, - .Mnemonic = 726, + .Mnemonic = 728, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -54532,6 +56598,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -54545,12 +56612,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1957 Instruction:"PUSH Zv" Encoding:"0x52"/"O" + // Pos:1961 Instruction:"PUSH Zv" Encoding:"0x52"/"O" { .Instruction = ND_INS_PUSH, .Category = ND_CAT_PUSH, .IsaSet = ND_SET_I86, - .Mnemonic = 726, + .Mnemonic = 728, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -54559,6 +56626,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -54572,12 +56640,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1958 Instruction:"PUSH Zv" Encoding:"0x53"/"O" + // Pos:1962 Instruction:"PUSH Zv" Encoding:"0x53"/"O" { .Instruction = ND_INS_PUSH, .Category = ND_CAT_PUSH, .IsaSet = ND_SET_I86, - .Mnemonic = 726, + .Mnemonic = 728, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -54586,6 +56654,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -54599,12 +56668,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1959 Instruction:"PUSH Zv" Encoding:"0x54"/"O" + // Pos:1963 Instruction:"PUSH Zv" Encoding:"0x54"/"O" { .Instruction = ND_INS_PUSH, .Category = ND_CAT_PUSH, .IsaSet = ND_SET_I86, - .Mnemonic = 726, + .Mnemonic = 728, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -54613,6 +56682,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -54626,12 +56696,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1960 Instruction:"PUSH Zv" Encoding:"0x55"/"O" + // Pos:1964 Instruction:"PUSH Zv" Encoding:"0x55"/"O" { .Instruction = ND_INS_PUSH, .Category = ND_CAT_PUSH, .IsaSet = ND_SET_I86, - .Mnemonic = 726, + .Mnemonic = 728, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -54640,6 +56710,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -54653,12 +56724,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1961 Instruction:"PUSH Zv" Encoding:"0x56"/"O" + // Pos:1965 Instruction:"PUSH Zv" Encoding:"0x56"/"O" { .Instruction = ND_INS_PUSH, .Category = ND_CAT_PUSH, .IsaSet = ND_SET_I86, - .Mnemonic = 726, + .Mnemonic = 728, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -54667,6 +56738,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -54680,12 +56752,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1962 Instruction:"PUSH Zv" Encoding:"0x57"/"O" + // Pos:1966 Instruction:"PUSH Zv" Encoding:"0x57"/"O" { .Instruction = ND_INS_PUSH, .Category = ND_CAT_PUSH, .IsaSet = ND_SET_I86, - .Mnemonic = 726, + .Mnemonic = 728, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -54694,6 +56766,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -54707,12 +56780,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1963 Instruction:"PUSH Iz" Encoding:"0x68 iz"/"I" + // Pos:1967 Instruction:"PUSH Iz" Encoding:"0x68 iz"/"I" { .Instruction = ND_INS_PUSH, .Category = ND_CAT_PUSH, .IsaSet = ND_SET_I86, - .Mnemonic = 726, + .Mnemonic = 728, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -54721,6 +56794,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -54734,12 +56808,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1964 Instruction:"PUSH Ib" Encoding:"0x6A ib"/"I" + // Pos:1968 Instruction:"PUSH Ib" Encoding:"0x6A ib"/"I" { .Instruction = ND_INS_PUSH, .Category = ND_CAT_PUSH, .IsaSet = ND_SET_I86, - .Mnemonic = 726, + .Mnemonic = 728, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -54748,6 +56822,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -54761,12 +56836,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1965 Instruction:"PUSH Ev" Encoding:"0xFF /6"/"M" + // Pos:1969 Instruction:"PUSH Ev" Encoding:"0xFF /6"/"M" { .Instruction = ND_INS_PUSH, .Category = ND_CAT_PUSH, .IsaSet = ND_SET_I86, - .Mnemonic = 726, + .Mnemonic = 728, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -54775,6 +56850,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -54788,12 +56864,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1966 Instruction:"PUSH FS" Encoding:"0x0F 0xA0"/"" + // Pos:1970 Instruction:"PUSH FS" Encoding:"0x0F 0xA0"/"" { .Instruction = ND_INS_PUSH, .Category = ND_CAT_PUSH, .IsaSet = ND_SET_I86, - .Mnemonic = 726, + .Mnemonic = 728, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_REAL|ND_MOD_V8086|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -54802,6 +56878,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -54815,12 +56892,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1967 Instruction:"PUSH GS" Encoding:"0x0F 0xA8"/"" + // Pos:1971 Instruction:"PUSH GS" Encoding:"0x0F 0xA8"/"" { .Instruction = ND_INS_PUSH, .Category = ND_CAT_PUSH, .IsaSet = ND_SET_I86, - .Mnemonic = 726, + .Mnemonic = 728, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_REAL|ND_MOD_V8086|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -54829,6 +56906,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -54842,12 +56920,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1968 Instruction:"PUSH2 Bv,Rv" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 w:0 0xFF /6:reg"/"VM" + // Pos:1972 Instruction:"PUSH2 Bv,Rv" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 w:0 0xFF /6:reg"/"VM" { .Instruction = ND_INS_PUSH2, .Category = ND_CAT_PUSH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 727, + .Mnemonic = 729, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -54856,6 +56934,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_PP2, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -54870,12 +56949,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1969 Instruction:"PUSH2P Bv,Rv" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 w:1 0xFF /6:reg"/"VM" + // Pos:1973 Instruction:"PUSH2P Bv,Rv" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 w:1 0xFF /6:reg"/"VM" { .Instruction = ND_INS_PUSH2P, .Category = ND_CAT_PUSH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 728, + .Mnemonic = 730, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -54884,6 +56963,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_PP2, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -54898,12 +56978,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1970 Instruction:"PUSHA" Encoding:"ds16 0x60"/"" + // Pos:1974 Instruction:"PUSHA" Encoding:"ds16 0x60"/"" { .Instruction = ND_INS_PUSHA, .Category = ND_CAT_PUSH, .IsaSet = ND_SET_I386, - .Mnemonic = 729, + .Mnemonic = 731, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_REAL|ND_MOD_V8086|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -54912,6 +56992,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -54925,12 +57006,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1971 Instruction:"PUSHAD" Encoding:"ds32 0x60"/"" + // Pos:1975 Instruction:"PUSHAD" Encoding:"ds32 0x60"/"" { .Instruction = ND_INS_PUSHAD, .Category = ND_CAT_PUSH, .IsaSet = ND_SET_I386, - .Mnemonic = 730, + .Mnemonic = 732, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_REAL|ND_MOD_V8086|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -54939,6 +57020,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -54952,12 +57034,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1972 Instruction:"PUSHFD Fv" Encoding:"ds32 0x9C"/"" + // Pos:1976 Instruction:"PUSHFD Fv" Encoding:"ds32 0x9C"/"" { .Instruction = ND_INS_PUSHF, .Category = ND_CAT_PUSH, .IsaSet = ND_SET_I86, - .Mnemonic = 731, + .Mnemonic = 733, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -54966,6 +57048,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -54979,12 +57062,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1973 Instruction:"PUSHFQ Fv" Encoding:"dds64 0x9C"/"" + // Pos:1977 Instruction:"PUSHFQ Fv" Encoding:"dds64 0x9C"/"" { .Instruction = ND_INS_PUSHF, .Category = ND_CAT_PUSH, .IsaSet = ND_SET_I86, - .Mnemonic = 732, + .Mnemonic = 734, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -54993,6 +57076,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -55006,12 +57090,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1974 Instruction:"PUSHFW Fv" Encoding:"ds16 0x9C"/"" + // Pos:1978 Instruction:"PUSHFW Fv" Encoding:"ds16 0x9C"/"" { .Instruction = ND_INS_PUSHF, .Category = ND_CAT_PUSH, .IsaSet = ND_SET_I86, - .Mnemonic = 733, + .Mnemonic = 735, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -55020,6 +57104,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -55033,12 +57118,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1975 Instruction:"PUSHP Zv" Encoding:"rex2w 0x50"/"O" + // Pos:1979 Instruction:"PUSHP Zv" Encoding:"rex2w 0x50"/"O" { .Instruction = ND_INS_PUSHP, .Category = ND_CAT_PUSH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 734, + .Mnemonic = 736, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -55047,6 +57132,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -55060,12 +57146,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1976 Instruction:"PUSHP Zv" Encoding:"rex2w 0x51"/"O" + // Pos:1980 Instruction:"PUSHP Zv" Encoding:"rex2w 0x51"/"O" { .Instruction = ND_INS_PUSHP, .Category = ND_CAT_PUSH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 734, + .Mnemonic = 736, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -55074,6 +57160,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -55087,12 +57174,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1977 Instruction:"PUSHP Zv" Encoding:"rex2w 0x52"/"O" + // Pos:1981 Instruction:"PUSHP Zv" Encoding:"rex2w 0x52"/"O" { .Instruction = ND_INS_PUSHP, .Category = ND_CAT_PUSH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 734, + .Mnemonic = 736, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -55101,6 +57188,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -55114,12 +57202,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1978 Instruction:"PUSHP Zv" Encoding:"rex2w 0x53"/"O" + // Pos:1982 Instruction:"PUSHP Zv" Encoding:"rex2w 0x53"/"O" { .Instruction = ND_INS_PUSHP, .Category = ND_CAT_PUSH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 734, + .Mnemonic = 736, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -55128,6 +57216,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -55141,12 +57230,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1979 Instruction:"PUSHP Zv" Encoding:"rex2w 0x54"/"O" + // Pos:1983 Instruction:"PUSHP Zv" Encoding:"rex2w 0x54"/"O" { .Instruction = ND_INS_PUSHP, .Category = ND_CAT_PUSH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 734, + .Mnemonic = 736, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -55155,6 +57244,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -55168,12 +57258,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1980 Instruction:"PUSHP Zv" Encoding:"rex2w 0x55"/"O" + // Pos:1984 Instruction:"PUSHP Zv" Encoding:"rex2w 0x55"/"O" { .Instruction = ND_INS_PUSHP, .Category = ND_CAT_PUSH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 734, + .Mnemonic = 736, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -55182,6 +57272,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -55195,12 +57286,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1981 Instruction:"PUSHP Zv" Encoding:"rex2w 0x56"/"O" + // Pos:1985 Instruction:"PUSHP Zv" Encoding:"rex2w 0x56"/"O" { .Instruction = ND_INS_PUSHP, .Category = ND_CAT_PUSH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 734, + .Mnemonic = 736, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -55209,6 +57300,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -55222,12 +57314,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1982 Instruction:"PUSHP Zv" Encoding:"rex2w 0x57"/"O" + // Pos:1986 Instruction:"PUSHP Zv" Encoding:"rex2w 0x57"/"O" { .Instruction = ND_INS_PUSHP, .Category = ND_CAT_PUSH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 734, + .Mnemonic = 736, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -55236,6 +57328,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -55249,12 +57342,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1983 Instruction:"PVALIDATE" Encoding:"0xF2 0x0F 0x01 /0xFF"/"" + // Pos:1987 Instruction:"PVALIDATE" Encoding:"0xF2 0x0F 0x01 /0xFF"/"" { .Instruction = ND_INS_PVALIDATE, .Category = ND_CAT_SYSTEM, .IsaSet = ND_SET_SNP, - .Mnemonic = 735, + .Mnemonic = 737, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_REAL|ND_MOD_V8086|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -55263,6 +57356,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_OF|NDR_RFLAG_ZF|NDR_RFLAG_AF|NDR_RFLAG_PF|NDR_RFLAG_SF|NDR_RFLAG_CF, .SetFlags = 0, @@ -55278,12 +57372,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1984 Instruction:"PXOR Pq,Qq" Encoding:"NP 0x0F 0xEF /r"/"RM" + // Pos:1988 Instruction:"PXOR Pq,Qq" Encoding:"NP 0x0F 0xEF /r"/"RM" { .Instruction = ND_INS_PXOR, .Category = ND_CAT_LOGICAL, .IsaSet = ND_SET_MMX, - .Mnemonic = 736, + .Mnemonic = 738, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -55292,6 +57386,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -55305,12 +57400,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1985 Instruction:"PXOR Vx,Wx" Encoding:"0x66 0x0F 0xEF /r"/"RM" + // Pos:1989 Instruction:"PXOR Vx,Wx" Encoding:"0x66 0x0F 0xEF /r"/"RM" { .Instruction = ND_INS_PXOR, .Category = ND_CAT_LOGICAL, .IsaSet = ND_SET_SSE2, - .Mnemonic = 736, + .Mnemonic = 738, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -55319,6 +57414,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -55332,12 +57428,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1986 Instruction:"RCL Eb,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xC0 /2 ib"/"MI" + // Pos:1990 Instruction:"RCL Eb,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xC0 /2 ib"/"MI" { .Instruction = ND_INS_RCL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 737, + .Mnemonic = 739, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -55346,6 +57442,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -55360,12 +57457,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1987 Instruction:"RCL Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xC1 /2 ib"/"MI" + // Pos:1991 Instruction:"RCL Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xC1 /2 ib"/"MI" { .Instruction = ND_INS_RCL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 737, + .Mnemonic = 739, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -55374,6 +57471,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -55388,12 +57486,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1988 Instruction:"RCL Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xC1 /2 ib"/"MI" + // Pos:1992 Instruction:"RCL Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xC1 /2 ib"/"MI" { .Instruction = ND_INS_RCL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 737, + .Mnemonic = 739, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -55402,6 +57500,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -55416,12 +57515,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1989 Instruction:"RCL Eb,1" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD0 /2"/"M1" + // Pos:1993 Instruction:"RCL Eb,1" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD0 /2"/"M1" { .Instruction = ND_INS_RCL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 737, + .Mnemonic = 739, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -55430,6 +57529,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -55444,12 +57544,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1990 Instruction:"RCL Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD1 /2"/"M1" + // Pos:1994 Instruction:"RCL Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD1 /2"/"M1" { .Instruction = ND_INS_RCL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 737, + .Mnemonic = 739, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -55458,6 +57558,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -55472,12 +57573,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1991 Instruction:"RCL Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xD1 /2"/"M1" + // Pos:1995 Instruction:"RCL Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xD1 /2"/"M1" { .Instruction = ND_INS_RCL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 737, + .Mnemonic = 739, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -55486,6 +57587,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -55500,12 +57602,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1992 Instruction:"RCL Eb,CL" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD2 /2"/"MC" + // Pos:1996 Instruction:"RCL Eb,CL" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD2 /2"/"MC" { .Instruction = ND_INS_RCL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 737, + .Mnemonic = 739, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -55514,6 +57616,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -55528,12 +57631,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1993 Instruction:"RCL Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD3 /2"/"MC" + // Pos:1997 Instruction:"RCL Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD3 /2"/"MC" { .Instruction = ND_INS_RCL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 737, + .Mnemonic = 739, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -55542,6 +57645,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -55556,12 +57660,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1994 Instruction:"RCL Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xD3 /2"/"MC" + // Pos:1998 Instruction:"RCL Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xD3 /2"/"MC" { .Instruction = ND_INS_RCL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 737, + .Mnemonic = 739, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -55570,6 +57674,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -55584,12 +57689,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1995 Instruction:"RCL Eb,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xC0 /2 ib"/"MI" + // Pos:1999 Instruction:"RCL Eb,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xC0 /2 ib"/"MI" { .Instruction = ND_INS_RCL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 737, + .Mnemonic = 739, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -55598,6 +57703,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -55611,12 +57717,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1996 Instruction:"RCL Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xC1 /2 ib"/"MI" + // Pos:2000 Instruction:"RCL Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xC1 /2 ib"/"MI" { .Instruction = ND_INS_RCL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 737, + .Mnemonic = 739, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -55625,6 +57731,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -55638,12 +57745,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1997 Instruction:"RCL Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xC1 /2 ib"/"MI" + // Pos:2001 Instruction:"RCL Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xC1 /2 ib"/"MI" { .Instruction = ND_INS_RCL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 737, + .Mnemonic = 739, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -55652,6 +57759,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -55665,12 +57773,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1998 Instruction:"RCL Eb,1" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD0 /2"/"M1" + // Pos:2002 Instruction:"RCL Eb,1" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD0 /2"/"M1" { .Instruction = ND_INS_RCL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 737, + .Mnemonic = 739, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -55679,6 +57787,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -55692,12 +57801,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:1999 Instruction:"RCL Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD1 /2"/"M1" + // Pos:2003 Instruction:"RCL Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD1 /2"/"M1" { .Instruction = ND_INS_RCL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 737, + .Mnemonic = 739, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -55706,6 +57815,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -55719,12 +57829,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2000 Instruction:"RCL Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xD1 /2"/"M1" + // Pos:2004 Instruction:"RCL Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xD1 /2"/"M1" { .Instruction = ND_INS_RCL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 737, + .Mnemonic = 739, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -55733,6 +57843,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -55746,12 +57857,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2001 Instruction:"RCL Eb,CL" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD2 /2"/"MC" + // Pos:2005 Instruction:"RCL Eb,CL" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD2 /2"/"MC" { .Instruction = ND_INS_RCL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 737, + .Mnemonic = 739, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -55760,6 +57871,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -55773,12 +57885,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2002 Instruction:"RCL Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD3 /2"/"MC" + // Pos:2006 Instruction:"RCL Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD3 /2"/"MC" { .Instruction = ND_INS_RCL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 737, + .Mnemonic = 739, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -55787,6 +57899,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -55800,12 +57913,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2003 Instruction:"RCL Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xD3 /2"/"MC" + // Pos:2007 Instruction:"RCL Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xD3 /2"/"MC" { .Instruction = ND_INS_RCL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 737, + .Mnemonic = 739, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -55814,6 +57927,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -55827,12 +57941,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2004 Instruction:"RCL Bb,Eb,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xC0 /2 ib"/"VMI" + // Pos:2008 Instruction:"RCL Bb,Eb,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xC0 /2 ib"/"VMI" { .Instruction = ND_INS_RCL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 737, + .Mnemonic = 739, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -55841,6 +57955,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -55856,12 +57971,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2005 Instruction:"RCL Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xC1 /2 ib"/"VMI" + // Pos:2009 Instruction:"RCL Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xC1 /2 ib"/"VMI" { .Instruction = ND_INS_RCL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 737, + .Mnemonic = 739, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -55870,6 +57985,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -55885,12 +58001,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2006 Instruction:"RCL Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0xC1 /2 ib"/"VMI" + // Pos:2010 Instruction:"RCL Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0xC1 /2 ib"/"VMI" { .Instruction = ND_INS_RCL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 737, + .Mnemonic = 739, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -55899,6 +58015,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -55914,12 +58031,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2007 Instruction:"RCL Bb,Eb,1" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD0 /2"/"VM1" + // Pos:2011 Instruction:"RCL Bb,Eb,1" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD0 /2"/"VM1" { .Instruction = ND_INS_RCL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 737, + .Mnemonic = 739, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -55928,6 +58045,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -55943,12 +58061,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2008 Instruction:"RCL Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD1 /2"/"VM1" + // Pos:2012 Instruction:"RCL Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD1 /2"/"VM1" { .Instruction = ND_INS_RCL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 737, + .Mnemonic = 739, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -55957,6 +58075,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -55972,12 +58091,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2009 Instruction:"RCL Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0xD1 /2"/"VM1" + // Pos:2013 Instruction:"RCL Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0xD1 /2"/"VM1" { .Instruction = ND_INS_RCL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 737, + .Mnemonic = 739, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -55986,6 +58105,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -56001,12 +58121,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2010 Instruction:"RCL Bb,Eb,CL" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD2 /2"/"VMC" + // Pos:2014 Instruction:"RCL Bb,Eb,CL" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD2 /2"/"VMC" { .Instruction = ND_INS_RCL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 737, + .Mnemonic = 739, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -56015,6 +58135,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -56030,12 +58151,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2011 Instruction:"RCL Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD3 /2"/"VMC" + // Pos:2015 Instruction:"RCL Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD3 /2"/"VMC" { .Instruction = ND_INS_RCL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 737, + .Mnemonic = 739, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -56044,6 +58165,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -56059,12 +58181,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2012 Instruction:"RCL Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0xD3 /2"/"VMC" + // Pos:2016 Instruction:"RCL Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0xD3 /2"/"VMC" { .Instruction = ND_INS_RCL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 737, + .Mnemonic = 739, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -56073,6 +58195,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -56088,12 +58211,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2013 Instruction:"RCL Bb,Eb,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xC0 /2 ib"/"VMI" + // Pos:2017 Instruction:"RCL Bb,Eb,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xC0 /2 ib"/"VMI" { .Instruction = ND_INS_RCL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 737, + .Mnemonic = 739, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -56102,6 +58225,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -56116,12 +58240,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2014 Instruction:"RCL Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xC1 /2 ib"/"VMI" + // Pos:2018 Instruction:"RCL Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xC1 /2 ib"/"VMI" { .Instruction = ND_INS_RCL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 737, + .Mnemonic = 739, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -56130,6 +58254,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -56144,12 +58269,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2015 Instruction:"RCL Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0xC1 /2 ib"/"VMI" + // Pos:2019 Instruction:"RCL Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0xC1 /2 ib"/"VMI" { .Instruction = ND_INS_RCL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 737, + .Mnemonic = 739, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -56158,6 +58283,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -56172,12 +58298,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2016 Instruction:"RCL Bb,Eb,1" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD0 /2"/"VM1" + // Pos:2020 Instruction:"RCL Bb,Eb,1" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD0 /2"/"VM1" { .Instruction = ND_INS_RCL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 737, + .Mnemonic = 739, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -56186,6 +58312,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -56200,12 +58327,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2017 Instruction:"RCL Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD1 /2"/"VM1" + // Pos:2021 Instruction:"RCL Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD1 /2"/"VM1" { .Instruction = ND_INS_RCL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 737, + .Mnemonic = 739, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -56214,6 +58341,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -56228,12 +58356,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2018 Instruction:"RCL Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0xD1 /2"/"VM1" + // Pos:2022 Instruction:"RCL Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0xD1 /2"/"VM1" { .Instruction = ND_INS_RCL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 737, + .Mnemonic = 739, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -56242,6 +58370,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -56256,12 +58385,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2019 Instruction:"RCL Bb,Eb,CL" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD2 /2"/"VMC" + // Pos:2023 Instruction:"RCL Bb,Eb,CL" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD2 /2"/"VMC" { .Instruction = ND_INS_RCL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 737, + .Mnemonic = 739, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -56270,6 +58399,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -56284,12 +58414,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2020 Instruction:"RCL Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD3 /2"/"VMC" + // Pos:2024 Instruction:"RCL Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD3 /2"/"VMC" { .Instruction = ND_INS_RCL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 737, + .Mnemonic = 739, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -56298,6 +58428,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -56312,12 +58443,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2021 Instruction:"RCL Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0xD3 /2"/"VMC" + // Pos:2025 Instruction:"RCL Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0xD3 /2"/"VMC" { .Instruction = ND_INS_RCL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 737, + .Mnemonic = 739, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -56326,6 +58457,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -56340,12 +58472,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2022 Instruction:"RCL Eb,Ib" Encoding:"0xC0 /2 ib"/"MI" + // Pos:2026 Instruction:"RCL Eb,Ib" Encoding:"0xC0 /2 ib"/"MI" { .Instruction = ND_INS_RCL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_I86, - .Mnemonic = 737, + .Mnemonic = 739, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -56354,6 +58486,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -56368,12 +58501,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2023 Instruction:"RCL Ev,Ib" Encoding:"0xC1 /2 ib"/"MI" + // Pos:2027 Instruction:"RCL Ev,Ib" Encoding:"0xC1 /2 ib"/"MI" { .Instruction = ND_INS_RCL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_I86, - .Mnemonic = 737, + .Mnemonic = 739, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -56382,6 +58515,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -56396,12 +58530,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2024 Instruction:"RCL Eb,1" Encoding:"0xD0 /2"/"M1" + // Pos:2028 Instruction:"RCL Eb,1" Encoding:"0xD0 /2"/"M1" { .Instruction = ND_INS_RCL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_I86, - .Mnemonic = 737, + .Mnemonic = 739, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -56410,6 +58544,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -56424,12 +58559,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2025 Instruction:"RCL Ev,1" Encoding:"0xD1 /2"/"M1" + // Pos:2029 Instruction:"RCL Ev,1" Encoding:"0xD1 /2"/"M1" { .Instruction = ND_INS_RCL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_I86, - .Mnemonic = 737, + .Mnemonic = 739, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -56438,6 +58573,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -56452,12 +58588,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2026 Instruction:"RCL Eb,CL" Encoding:"0xD2 /2"/"MC" + // Pos:2030 Instruction:"RCL Eb,CL" Encoding:"0xD2 /2"/"MC" { .Instruction = ND_INS_RCL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_I86, - .Mnemonic = 737, + .Mnemonic = 739, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -56466,6 +58602,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -56480,12 +58617,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2027 Instruction:"RCL Ev,CL" Encoding:"0xD3 /2"/"MC" + // Pos:2031 Instruction:"RCL Ev,CL" Encoding:"0xD3 /2"/"MC" { .Instruction = ND_INS_RCL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_I86, - .Mnemonic = 737, + .Mnemonic = 739, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -56494,6 +58631,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -56508,12 +58646,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2028 Instruction:"RCPPS Vps,Wps" Encoding:"NP 0x0F 0x53 /r"/"RM" + // Pos:2032 Instruction:"RCPPS Vps,Wps" Encoding:"NP 0x0F 0x53 /r"/"RM" { .Instruction = ND_INS_RCPPS, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE, - .Mnemonic = 738, + .Mnemonic = 740, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -56522,6 +58660,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -56535,12 +58674,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2029 Instruction:"RCPSS Vss,Wss" Encoding:"0xF3 0x0F 0x53 /r"/"RM" + // Pos:2033 Instruction:"RCPSS Vss,Wss" Encoding:"0xF3 0x0F 0x53 /r"/"RM" { .Instruction = ND_INS_RCPSS, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE, - .Mnemonic = 739, + .Mnemonic = 741, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -56549,6 +58688,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -56562,12 +58702,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2030 Instruction:"RCR Eb,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xC0 /3 ib"/"MI" + // Pos:2034 Instruction:"RCR Eb,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xC0 /3 ib"/"MI" { .Instruction = ND_INS_RCR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 740, + .Mnemonic = 742, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -56576,6 +58716,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -56590,12 +58731,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2031 Instruction:"RCR Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xC1 /3 ib"/"MI" + // Pos:2035 Instruction:"RCR Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xC1 /3 ib"/"MI" { .Instruction = ND_INS_RCR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 740, + .Mnemonic = 742, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -56604,6 +58745,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -56618,12 +58760,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2032 Instruction:"RCR Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xC1 /3 ib"/"MI" + // Pos:2036 Instruction:"RCR Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xC1 /3 ib"/"MI" { .Instruction = ND_INS_RCR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 740, + .Mnemonic = 742, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -56632,6 +58774,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -56646,12 +58789,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2033 Instruction:"RCR Eb,1" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD0 /3"/"M1" + // Pos:2037 Instruction:"RCR Eb,1" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD0 /3"/"M1" { .Instruction = ND_INS_RCR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 740, + .Mnemonic = 742, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -56660,6 +58803,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -56674,12 +58818,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2034 Instruction:"RCR Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD1 /3"/"M1" + // Pos:2038 Instruction:"RCR Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD1 /3"/"M1" { .Instruction = ND_INS_RCR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 740, + .Mnemonic = 742, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -56688,6 +58832,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -56702,12 +58847,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2035 Instruction:"RCR Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xD1 /3"/"M1" + // Pos:2039 Instruction:"RCR Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xD1 /3"/"M1" { .Instruction = ND_INS_RCR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 740, + .Mnemonic = 742, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -56716,6 +58861,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -56730,12 +58876,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2036 Instruction:"RCR Eb,CL" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD2 /3"/"MC" + // Pos:2040 Instruction:"RCR Eb,CL" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD2 /3"/"MC" { .Instruction = ND_INS_RCR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 740, + .Mnemonic = 742, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -56744,6 +58890,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -56758,12 +58905,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2037 Instruction:"RCR Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD3 /3"/"MC" + // Pos:2041 Instruction:"RCR Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD3 /3"/"MC" { .Instruction = ND_INS_RCR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 740, + .Mnemonic = 742, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -56772,6 +58919,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -56786,12 +58934,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2038 Instruction:"RCR Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xD3 /3"/"MC" + // Pos:2042 Instruction:"RCR Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xD3 /3"/"MC" { .Instruction = ND_INS_RCR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 740, + .Mnemonic = 742, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -56800,6 +58948,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -56814,12 +58963,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2039 Instruction:"RCR Eb,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xC0 /3 ib"/"MI" + // Pos:2043 Instruction:"RCR Eb,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xC0 /3 ib"/"MI" { .Instruction = ND_INS_RCR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 740, + .Mnemonic = 742, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -56828,6 +58977,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -56841,12 +58991,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2040 Instruction:"RCR Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xC1 /3 ib"/"MI" + // Pos:2044 Instruction:"RCR Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xC1 /3 ib"/"MI" { .Instruction = ND_INS_RCR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 740, + .Mnemonic = 742, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -56855,6 +59005,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -56868,12 +59019,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2041 Instruction:"RCR Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xC1 /3 ib"/"MI" + // Pos:2045 Instruction:"RCR Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xC1 /3 ib"/"MI" { .Instruction = ND_INS_RCR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 740, + .Mnemonic = 742, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -56882,6 +59033,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -56895,12 +59047,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2042 Instruction:"RCR Eb,1" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD0 /3"/"M1" + // Pos:2046 Instruction:"RCR Eb,1" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD0 /3"/"M1" { .Instruction = ND_INS_RCR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 740, + .Mnemonic = 742, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -56909,6 +59061,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -56922,12 +59075,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2043 Instruction:"RCR Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD1 /3"/"M1" + // Pos:2047 Instruction:"RCR Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD1 /3"/"M1" { .Instruction = ND_INS_RCR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 740, + .Mnemonic = 742, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -56936,6 +59089,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -56949,12 +59103,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2044 Instruction:"RCR Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xD1 /3"/"M1" + // Pos:2048 Instruction:"RCR Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xD1 /3"/"M1" { .Instruction = ND_INS_RCR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 740, + .Mnemonic = 742, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -56963,6 +59117,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -56976,12 +59131,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2045 Instruction:"RCR Eb,CL" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD2 /3"/"MC" + // Pos:2049 Instruction:"RCR Eb,CL" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD2 /3"/"MC" { .Instruction = ND_INS_RCR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 740, + .Mnemonic = 742, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -56990,6 +59145,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -57003,12 +59159,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2046 Instruction:"RCR Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD3 /3"/"MC" + // Pos:2050 Instruction:"RCR Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD3 /3"/"MC" { .Instruction = ND_INS_RCR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 740, + .Mnemonic = 742, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -57017,6 +59173,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -57030,12 +59187,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2047 Instruction:"RCR Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xD3 /3"/"MC" + // Pos:2051 Instruction:"RCR Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xD3 /3"/"MC" { .Instruction = ND_INS_RCR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 740, + .Mnemonic = 742, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -57044,6 +59201,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -57057,12 +59215,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2048 Instruction:"RCR Bb,Eb,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xC0 /3 ib"/"VMI" + // Pos:2052 Instruction:"RCR Bb,Eb,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xC0 /3 ib"/"VMI" { .Instruction = ND_INS_RCR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 740, + .Mnemonic = 742, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -57071,6 +59229,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -57086,12 +59245,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2049 Instruction:"RCR Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xC1 /3 ib"/"VMI" + // Pos:2053 Instruction:"RCR Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xC1 /3 ib"/"VMI" { .Instruction = ND_INS_RCR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 740, + .Mnemonic = 742, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -57100,6 +59259,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -57115,12 +59275,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2050 Instruction:"RCR Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0xC1 /3 ib"/"VMI" + // Pos:2054 Instruction:"RCR Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0xC1 /3 ib"/"VMI" { .Instruction = ND_INS_RCR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 740, + .Mnemonic = 742, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -57129,6 +59289,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -57144,12 +59305,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2051 Instruction:"RCR Bb,Eb,1" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD0 /3"/"VM1" + // Pos:2055 Instruction:"RCR Bb,Eb,1" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD0 /3"/"VM1" { .Instruction = ND_INS_RCR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 740, + .Mnemonic = 742, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -57158,6 +59319,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -57173,12 +59335,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2052 Instruction:"RCR Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD1 /3"/"VM1" + // Pos:2056 Instruction:"RCR Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD1 /3"/"VM1" { .Instruction = ND_INS_RCR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 740, + .Mnemonic = 742, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -57187,6 +59349,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -57202,12 +59365,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2053 Instruction:"RCR Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0xD1 /3"/"VM1" + // Pos:2057 Instruction:"RCR Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0xD1 /3"/"VM1" { .Instruction = ND_INS_RCR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 740, + .Mnemonic = 742, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -57216,6 +59379,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -57231,12 +59395,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2054 Instruction:"RCR Bb,Eb,CL" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD2 /3"/"VMC" + // Pos:2058 Instruction:"RCR Bb,Eb,CL" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD2 /3"/"VMC" { .Instruction = ND_INS_RCR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 740, + .Mnemonic = 742, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -57245,6 +59409,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -57260,12 +59425,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2055 Instruction:"RCR Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD3 /3"/"VMC" + // Pos:2059 Instruction:"RCR Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD3 /3"/"VMC" { .Instruction = ND_INS_RCR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 740, + .Mnemonic = 742, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -57274,6 +59439,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -57289,12 +59455,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2056 Instruction:"RCR Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0xD3 /3"/"VMC" + // Pos:2060 Instruction:"RCR Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0xD3 /3"/"VMC" { .Instruction = ND_INS_RCR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 740, + .Mnemonic = 742, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -57303,6 +59469,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -57318,12 +59485,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2057 Instruction:"RCR Bb,Eb,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xC0 /3 ib"/"VMI" + // Pos:2061 Instruction:"RCR Bb,Eb,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xC0 /3 ib"/"VMI" { .Instruction = ND_INS_RCR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 740, + .Mnemonic = 742, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -57332,6 +59499,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -57346,12 +59514,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2058 Instruction:"RCR Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xC1 /3 ib"/"VMI" + // Pos:2062 Instruction:"RCR Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xC1 /3 ib"/"VMI" { .Instruction = ND_INS_RCR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 740, + .Mnemonic = 742, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -57360,6 +59528,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -57374,12 +59543,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2059 Instruction:"RCR Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0xC1 /3 ib"/"VMI" + // Pos:2063 Instruction:"RCR Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0xC1 /3 ib"/"VMI" { .Instruction = ND_INS_RCR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 740, + .Mnemonic = 742, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -57388,6 +59557,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -57402,12 +59572,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2060 Instruction:"RCR Bb,Eb,1" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD0 /3"/"VM1" + // Pos:2064 Instruction:"RCR Bb,Eb,1" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD0 /3"/"VM1" { .Instruction = ND_INS_RCR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 740, + .Mnemonic = 742, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -57416,6 +59586,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -57430,12 +59601,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2061 Instruction:"RCR Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD1 /3"/"VM1" + // Pos:2065 Instruction:"RCR Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD1 /3"/"VM1" { .Instruction = ND_INS_RCR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 740, + .Mnemonic = 742, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -57444,6 +59615,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -57458,12 +59630,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2062 Instruction:"RCR Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0xD1 /3"/"VM1" + // Pos:2066 Instruction:"RCR Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0xD1 /3"/"VM1" { .Instruction = ND_INS_RCR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 740, + .Mnemonic = 742, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -57472,6 +59644,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -57486,12 +59659,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2063 Instruction:"RCR Bb,Eb,CL" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD2 /3"/"VMC" + // Pos:2067 Instruction:"RCR Bb,Eb,CL" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD2 /3"/"VMC" { .Instruction = ND_INS_RCR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 740, + .Mnemonic = 742, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -57500,6 +59673,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -57514,12 +59688,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2064 Instruction:"RCR Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD3 /3"/"VMC" + // Pos:2068 Instruction:"RCR Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD3 /3"/"VMC" { .Instruction = ND_INS_RCR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 740, + .Mnemonic = 742, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -57528,6 +59702,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -57542,12 +59717,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2065 Instruction:"RCR Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0xD3 /3"/"VMC" + // Pos:2069 Instruction:"RCR Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0xD3 /3"/"VMC" { .Instruction = ND_INS_RCR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 740, + .Mnemonic = 742, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -57556,6 +59731,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -57570,12 +59746,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2066 Instruction:"RCR Eb,Ib" Encoding:"0xC0 /3 ib"/"MI" + // Pos:2070 Instruction:"RCR Eb,Ib" Encoding:"0xC0 /3 ib"/"MI" { .Instruction = ND_INS_RCR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_I86, - .Mnemonic = 740, + .Mnemonic = 742, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -57584,6 +59760,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -57598,12 +59775,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2067 Instruction:"RCR Ev,Ib" Encoding:"0xC1 /3 ib"/"MI" + // Pos:2071 Instruction:"RCR Ev,Ib" Encoding:"0xC1 /3 ib"/"MI" { .Instruction = ND_INS_RCR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_I86, - .Mnemonic = 740, + .Mnemonic = 742, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -57612,6 +59789,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -57626,12 +59804,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2068 Instruction:"RCR Eb,1" Encoding:"0xD0 /3"/"M1" + // Pos:2072 Instruction:"RCR Eb,1" Encoding:"0xD0 /3"/"M1" { .Instruction = ND_INS_RCR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_I86, - .Mnemonic = 740, + .Mnemonic = 742, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -57640,6 +59818,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -57654,12 +59833,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2069 Instruction:"RCR Ev,1" Encoding:"0xD1 /3"/"M1" + // Pos:2073 Instruction:"RCR Ev,1" Encoding:"0xD1 /3"/"M1" { .Instruction = ND_INS_RCR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_I86, - .Mnemonic = 740, + .Mnemonic = 742, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -57668,6 +59847,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -57682,12 +59862,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2070 Instruction:"RCR Eb,CL" Encoding:"0xD2 /3"/"MC" + // Pos:2074 Instruction:"RCR Eb,CL" Encoding:"0xD2 /3"/"MC" { .Instruction = ND_INS_RCR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_I86, - .Mnemonic = 740, + .Mnemonic = 742, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -57696,6 +59876,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -57710,12 +59891,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2071 Instruction:"RCR Ev,CL" Encoding:"0xD3 /3"/"MC" + // Pos:2075 Instruction:"RCR Ev,CL" Encoding:"0xD3 /3"/"MC" { .Instruction = ND_INS_RCR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_I86, - .Mnemonic = 740, + .Mnemonic = 742, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -57724,6 +59905,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -57738,12 +59920,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2072 Instruction:"RDFSBASE Ry" Encoding:"mo64 0xF3 0x0F 0xAE /0:reg"/"M" + // Pos:2076 Instruction:"RDFSBASE Ry" Encoding:"mo64 0xF3 0x0F 0xAE /0:reg"/"M" { .Instruction = ND_INS_RDFSBASE, .Category = ND_CAT_RDWRFSGS, .IsaSet = ND_SET_RDWRFSGS, - .Mnemonic = 741, + .Mnemonic = 743, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -57752,6 +59934,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -57765,12 +59948,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2073 Instruction:"RDGSBASE Ry" Encoding:"mo64 0xF3 0x0F 0xAE /1:reg"/"M" + // Pos:2077 Instruction:"RDGSBASE Ry" Encoding:"mo64 0xF3 0x0F 0xAE /1:reg"/"M" { .Instruction = ND_INS_RDGSBASE, .Category = ND_CAT_RDWRFSGS, .IsaSet = ND_SET_RDWRFSGS, - .Mnemonic = 742, + .Mnemonic = 744, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -57779,6 +59962,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -57792,12 +59976,41 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2074 Instruction:"RDMSR" Encoding:"0x0F 0x32"/"" + // Pos:2078 Instruction:"RDMSR Rq,Id" Encoding:"evex m:7 nf:0 p:3 l:0 w:0 0xF6 /0:reg id"/"MI" + { + .Instruction = ND_INS_RDMSR, + .Category = ND_CAT_SYSTEM, + .IsaSet = ND_SET_MSR_IMM, + .Mnemonic = 745, + .ValidPrefixes = 0, + .ValidModes = ND_MOD_R0|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, + .ValidDecorators = 0, + .OpsCount = ND_OPS_CNT(2, 1), + .TupleType = 0, + .ExcType = 0, + .FpuFlags = 0, + .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, + .TestedFlags = 0, + .ModifiedFlags = 0, + .SetFlags = 0, + .ClearedFlags = 0, + .Attributes = ND_FLAG_MODRM|ND_FLAG_NOV|ND_FLAG_NOVP|ND_FLAG_O64, + .CpuidFlag = ND_CFF_MSR_IMM, + .Operands = + { + OP(ND_OPT_R, ND_OPS_q, 0, ND_OPA_W, 0, 0), + OP(ND_OPT_I, ND_OPS_d, 0, ND_OPA_R, 0, 0), + OP(ND_OPT_MSR, ND_OPS_q, ND_OPF_OPDEF, ND_OPA_R, 0, 0), + }, + }, + + // Pos:2079 Instruction:"RDMSR" Encoding:"0x0F 0x32"/"" { .Instruction = ND_INS_RDMSR, .Category = ND_CAT_SYSTEM, .IsaSet = ND_SET_PENTIUMREAL, - .Mnemonic = 743, + .Mnemonic = 745, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_REAL|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -57806,6 +60019,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -57821,12 +60035,41 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2075 Instruction:"RDMSRLIST" Encoding:"0xF2 0x0F 0x01 /0xC6"/"" + // Pos:2080 Instruction:"RDMSR Rq,Id" Encoding:"vex m:7 p:3 l:0 w:0 0xF6 /0:reg id"/"MI" + { + .Instruction = ND_INS_RDMSR, + .Category = ND_CAT_SYSTEM, + .IsaSet = ND_SET_MSR_IMM, + .Mnemonic = 745, + .ValidPrefixes = 0, + .ValidModes = ND_MOD_R0|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, + .ValidDecorators = 0, + .OpsCount = ND_OPS_CNT(2, 1), + .TupleType = 0, + .ExcType = 0, + .FpuFlags = 0, + .EvexMode = 0, + .SimdExc = 0, + .TestedFlags = 0, + .ModifiedFlags = 0, + .SetFlags = 0, + .ClearedFlags = 0, + .Attributes = ND_FLAG_MODRM|ND_FLAG_NOV|ND_FLAG_O64, + .CpuidFlag = ND_CFF_MSR_IMM, + .Operands = + { + OP(ND_OPT_R, ND_OPS_q, 0, ND_OPA_W, 0, 0), + OP(ND_OPT_I, ND_OPS_d, 0, ND_OPA_R, 0, 0), + OP(ND_OPT_MSR, ND_OPS_q, ND_OPF_OPDEF, ND_OPA_R, 0, 0), + }, + }, + + // Pos:2081 Instruction:"RDMSRLIST" Encoding:"0xF2 0x0F 0x01 /0xC6"/"" { .Instruction = ND_INS_RDMSRLIST, .Category = ND_CAT_SYSTEM, .IsaSet = ND_SET_MSRLIST, - .Mnemonic = 744, + .Mnemonic = 746, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -57835,6 +60078,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -57849,12 +60093,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2076 Instruction:"RDPID Ryf" Encoding:"0xF3 0x0F 0xC7 /7:reg"/"M" + // Pos:2082 Instruction:"RDPID Ryf" Encoding:"0xF3 0x0F 0xC7 /7:reg"/"M" { .Instruction = ND_INS_RDPID, .Category = ND_CAT_RDPID, .IsaSet = ND_SET_RDPID, - .Mnemonic = 745, + .Mnemonic = 747, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -57863,6 +60107,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -57876,12 +60121,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2077 Instruction:"RDPKRU" Encoding:"NP 0x0F 0x01 /0xEE"/"" + // Pos:2083 Instruction:"RDPKRU" Encoding:"NP 0x0F 0x01 /0xEE"/"" { .Instruction = ND_INS_RDPKRU, .Category = ND_CAT_MISC, .IsaSet = ND_SET_PKU, - .Mnemonic = 746, + .Mnemonic = 748, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -57890,6 +60135,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -57905,12 +60151,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2078 Instruction:"RDPMC" Encoding:"0x0F 0x33"/"" + // Pos:2084 Instruction:"RDPMC" Encoding:"0x0F 0x33"/"" { .Instruction = ND_INS_RDPMC, .Category = ND_CAT_SYSTEM, .IsaSet = ND_SET_RDPMC, - .Mnemonic = 747, + .Mnemonic = 749, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_REAL|ND_MOD_V8086|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -57919,6 +60165,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -57934,12 +60181,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2079 Instruction:"RDPRU" Encoding:"NP 0x0F 0x01 /0xFD"/"" + // Pos:2085 Instruction:"RDPRU" Encoding:"NP 0x0F 0x01 /0xFD"/"" { .Instruction = ND_INS_RDPRU, .Category = ND_CAT_MISC, .IsaSet = ND_SET_RDPRU, - .Mnemonic = 748, + .Mnemonic = 750, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -57948,6 +60195,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF, .SetFlags = 0, @@ -57963,12 +60211,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2080 Instruction:"RDRAND Rv" Encoding:"NP 0x0F 0xC7 /6:reg"/"M" + // Pos:2086 Instruction:"RDRAND Rv" Encoding:"NP 0x0F 0xC7 /6:reg"/"M" { .Instruction = ND_INS_RDRAND, .Category = ND_CAT_RDRAND, .IsaSet = ND_SET_RDRAND, - .Mnemonic = 749, + .Mnemonic = 751, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -57977,6 +60225,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF, .SetFlags = 0, @@ -57990,12 +60239,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2081 Instruction:"RDRAND Rv" Encoding:"0x66 0x0F 0xC7 /6:reg"/"M" + // Pos:2087 Instruction:"RDRAND Rv" Encoding:"0x66 0x0F 0xC7 /6:reg"/"M" { .Instruction = ND_INS_RDRAND, .Category = ND_CAT_RDRAND, .IsaSet = ND_SET_RDRAND, - .Mnemonic = 749, + .Mnemonic = 751, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -58004,6 +60253,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF, .SetFlags = 0, @@ -58017,12 +60267,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2082 Instruction:"RDSEED Rv" Encoding:"NP 0x0F 0xC7 /7:reg"/"M" + // Pos:2088 Instruction:"RDSEED Rv" Encoding:"NP 0x0F 0xC7 /7:reg"/"M" { .Instruction = ND_INS_RDSEED, .Category = ND_CAT_RDSEED, .IsaSet = ND_SET_RDSEED, - .Mnemonic = 750, + .Mnemonic = 752, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -58031,6 +60281,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF, .SetFlags = 0, @@ -58044,12 +60295,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2083 Instruction:"RDSEED Rv" Encoding:"0x66 0x0F 0xC7 /7:reg"/"M" + // Pos:2089 Instruction:"RDSEED Rv" Encoding:"0x66 0x0F 0xC7 /7:reg"/"M" { .Instruction = ND_INS_RDSEED, .Category = ND_CAT_RDSEED, .IsaSet = ND_SET_RDSEED, - .Mnemonic = 750, + .Mnemonic = 752, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -58058,6 +60309,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF, .SetFlags = 0, @@ -58071,12 +60323,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2084 Instruction:"RDSSPD Rd" Encoding:"cet repz 0x0F 0x1E /1:reg"/"M" + // Pos:2090 Instruction:"RDSSPD Rd" Encoding:"cet repz 0x0F 0x1E /1:reg"/"M" { .Instruction = ND_INS_RSSSP, .Category = ND_CAT_CET, .IsaSet = ND_SET_CET_SS, - .Mnemonic = 751, + .Mnemonic = 753, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -58085,6 +60337,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -58098,12 +60351,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2085 Instruction:"RDSSPQ Rq" Encoding:"cet repz rexw 0x0F 0x1E /1:reg"/"M" + // Pos:2091 Instruction:"RDSSPQ Rq" Encoding:"cet repz rexw 0x0F 0x1E /1:reg"/"M" { .Instruction = ND_INS_RSSSP, .Category = ND_CAT_CET, .IsaSet = ND_SET_CET_SS, - .Mnemonic = 752, + .Mnemonic = 754, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -58112,6 +60365,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -58125,12 +60379,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2086 Instruction:"RDTSC" Encoding:"0x0F 0x31"/"" + // Pos:2092 Instruction:"RDTSC" Encoding:"0x0F 0x31"/"" { .Instruction = ND_INS_RDTSC, .Category = ND_CAT_SYSTEM, .IsaSet = ND_SET_PENTIUMREAL, - .Mnemonic = 753, + .Mnemonic = 755, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -58139,6 +60393,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -58153,12 +60408,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2087 Instruction:"RDTSCP" Encoding:"0x0F 0x01 /0xF9"/"" + // Pos:2093 Instruction:"RDTSCP" Encoding:"0x0F 0x01 /0xF9"/"" { .Instruction = ND_INS_RDTSCP, .Category = ND_CAT_SYSTEM, .IsaSet = ND_SET_RDTSCP, - .Mnemonic = 754, + .Mnemonic = 756, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -58167,6 +60422,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -58183,12 +60439,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2088 Instruction:"RETF Iw" Encoding:"0xCA iw"/"I" + // Pos:2094 Instruction:"RETF Iw" Encoding:"0xCA iw"/"I" { .Instruction = ND_INS_RETF, .Category = ND_CAT_RET, .IsaSet = ND_SET_I86, - .Mnemonic = 755, + .Mnemonic = 757, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -58197,6 +60453,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -58213,12 +60470,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2089 Instruction:"RETF" Encoding:"0xCB"/"" + // Pos:2095 Instruction:"RETF" Encoding:"0xCB"/"" { .Instruction = ND_INS_RETF, .Category = ND_CAT_RET, .IsaSet = ND_SET_I86, - .Mnemonic = 755, + .Mnemonic = 757, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -58227,6 +60484,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -58242,12 +60500,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2090 Instruction:"RETN Iw" Encoding:"0xC2 iw"/"I" + // Pos:2096 Instruction:"RETN Iw" Encoding:"0xC2 iw"/"I" { .Instruction = ND_INS_RETN, .Category = ND_CAT_RET, .IsaSet = ND_SET_I86, - .Mnemonic = 756, + .Mnemonic = 758, .ValidPrefixes = ND_PREF_BND, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -58256,6 +60514,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -58272,12 +60531,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2091 Instruction:"RETN" Encoding:"0xC3"/"" + // Pos:2097 Instruction:"RETN" Encoding:"0xC3"/"" { .Instruction = ND_INS_RETN, .Category = ND_CAT_RET, .IsaSet = ND_SET_I86, - .Mnemonic = 756, + .Mnemonic = 758, .ValidPrefixes = ND_PREF_BND, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -58286,6 +60545,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -58300,12 +60560,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2092 Instruction:"RMPADJUST" Encoding:"0xF3 0x0F 0x01 /0xFE"/"" + // Pos:2098 Instruction:"RMPADJUST" Encoding:"0xF3 0x0F 0x01 /0xFE"/"" { .Instruction = ND_INS_RMPADJUST, .Category = ND_CAT_SYSTEM, .IsaSet = ND_SET_SNP, - .Mnemonic = 757, + .Mnemonic = 759, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -58314,6 +60574,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_OF|NDR_RFLAG_ZF|NDR_RFLAG_AF|NDR_RFLAG_PF|NDR_RFLAG_SF, .SetFlags = 0, @@ -58330,12 +60591,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2093 Instruction:"RMPQUERY" Encoding:"0xF3 0x0F 0x01 /0xFD"/"" + // Pos:2099 Instruction:"RMPQUERY" Encoding:"0xF3 0x0F 0x01 /0xFD"/"" { .Instruction = ND_INS_RMPQUERY, .Category = ND_CAT_SYSTEM, .IsaSet = ND_SET_SNP, - .Mnemonic = 758, + .Mnemonic = 760, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -58344,6 +60605,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_OF|NDR_RFLAG_ZF|NDR_RFLAG_AF|NDR_RFLAG_PF|NDR_RFLAG_SF, .SetFlags = 0, @@ -58360,12 +60622,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2094 Instruction:"RMPREAD" Encoding:"0xF2 0x0F 0x01 /0xFD"/"" + // Pos:2100 Instruction:"RMPREAD" Encoding:"0xF2 0x0F 0x01 /0xFD"/"" { .Instruction = ND_INS_RMPREAD, .Category = ND_CAT_SYSTEM, .IsaSet = ND_SET_SNP, - .Mnemonic = 759, + .Mnemonic = 761, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -58374,6 +60636,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_OF|NDR_RFLAG_ZF|NDR_RFLAG_AF|NDR_RFLAG_PF|NDR_RFLAG_SF, .SetFlags = 0, @@ -58388,12 +60651,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2095 Instruction:"RMPUPDATE" Encoding:"0xF2 0x0F 0x01 /0xFE"/"" + // Pos:2101 Instruction:"RMPUPDATE" Encoding:"0xF2 0x0F 0x01 /0xFE"/"" { .Instruction = ND_INS_RMPUPDATE, .Category = ND_CAT_SYSTEM, .IsaSet = ND_SET_SNP, - .Mnemonic = 760, + .Mnemonic = 762, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -58402,6 +60665,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_OF|NDR_RFLAG_ZF|NDR_RFLAG_AF|NDR_RFLAG_PF|NDR_RFLAG_SF, .SetFlags = 0, @@ -58416,12 +60680,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2096 Instruction:"ROL Eb,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xC0 /0 ib"/"MI" + // Pos:2102 Instruction:"ROL Eb,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xC0 /0 ib"/"MI" { .Instruction = ND_INS_ROL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 761, + .Mnemonic = 763, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -58430,6 +60694,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -58444,12 +60709,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2097 Instruction:"ROL Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xC1 /0 ib"/"MI" + // Pos:2103 Instruction:"ROL Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xC1 /0 ib"/"MI" { .Instruction = ND_INS_ROL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 761, + .Mnemonic = 763, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -58458,6 +60723,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -58472,12 +60738,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2098 Instruction:"ROL Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xC1 /0 ib"/"MI" + // Pos:2104 Instruction:"ROL Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xC1 /0 ib"/"MI" { .Instruction = ND_INS_ROL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 761, + .Mnemonic = 763, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -58486,6 +60752,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -58500,12 +60767,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2099 Instruction:"ROL Eb,1" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD0 /0"/"M1" + // Pos:2105 Instruction:"ROL Eb,1" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD0 /0"/"M1" { .Instruction = ND_INS_ROL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 761, + .Mnemonic = 763, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -58514,6 +60781,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -58528,12 +60796,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2100 Instruction:"ROL Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD1 /0"/"M1" + // Pos:2106 Instruction:"ROL Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD1 /0"/"M1" { .Instruction = ND_INS_ROL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 761, + .Mnemonic = 763, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -58542,6 +60810,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -58556,12 +60825,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2101 Instruction:"ROL Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xD1 /0"/"M1" + // Pos:2107 Instruction:"ROL Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xD1 /0"/"M1" { .Instruction = ND_INS_ROL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 761, + .Mnemonic = 763, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -58570,6 +60839,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -58584,12 +60854,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2102 Instruction:"ROL Eb,CL" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD2 /0"/"MC" + // Pos:2108 Instruction:"ROL Eb,CL" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD2 /0"/"MC" { .Instruction = ND_INS_ROL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 761, + .Mnemonic = 763, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -58598,6 +60868,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -58612,12 +60883,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2103 Instruction:"ROL Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD3 /0"/"MC" + // Pos:2109 Instruction:"ROL Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD3 /0"/"MC" { .Instruction = ND_INS_ROL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 761, + .Mnemonic = 763, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -58626,6 +60897,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -58640,12 +60912,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2104 Instruction:"ROL Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xD3 /0"/"MC" + // Pos:2110 Instruction:"ROL Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xD3 /0"/"MC" { .Instruction = ND_INS_ROL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 761, + .Mnemonic = 763, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -58654,6 +60926,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -58668,12 +60941,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2105 Instruction:"ROL Eb,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xC0 /0 ib"/"MI" + // Pos:2111 Instruction:"ROL Eb,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xC0 /0 ib"/"MI" { .Instruction = ND_INS_ROL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 761, + .Mnemonic = 763, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -58682,6 +60955,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -58695,12 +60969,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2106 Instruction:"ROL Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xC1 /0 ib"/"MI" + // Pos:2112 Instruction:"ROL Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xC1 /0 ib"/"MI" { .Instruction = ND_INS_ROL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 761, + .Mnemonic = 763, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -58709,6 +60983,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -58722,12 +60997,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2107 Instruction:"ROL Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xC1 /0 ib"/"MI" + // Pos:2113 Instruction:"ROL Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xC1 /0 ib"/"MI" { .Instruction = ND_INS_ROL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 761, + .Mnemonic = 763, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -58736,6 +61011,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -58749,12 +61025,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2108 Instruction:"ROL Eb,1" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD0 /0"/"M1" + // Pos:2114 Instruction:"ROL Eb,1" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD0 /0"/"M1" { .Instruction = ND_INS_ROL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 761, + .Mnemonic = 763, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -58763,6 +61039,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -58776,12 +61053,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2109 Instruction:"ROL Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD1 /0"/"M1" + // Pos:2115 Instruction:"ROL Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD1 /0"/"M1" { .Instruction = ND_INS_ROL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 761, + .Mnemonic = 763, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -58790,6 +61067,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -58803,12 +61081,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2110 Instruction:"ROL Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xD1 /0"/"M1" + // Pos:2116 Instruction:"ROL Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xD1 /0"/"M1" { .Instruction = ND_INS_ROL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 761, + .Mnemonic = 763, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -58817,6 +61095,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -58830,12 +61109,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2111 Instruction:"ROL Eb,CL" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD2 /0"/"MC" + // Pos:2117 Instruction:"ROL Eb,CL" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD2 /0"/"MC" { .Instruction = ND_INS_ROL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 761, + .Mnemonic = 763, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -58844,6 +61123,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -58857,12 +61137,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2112 Instruction:"ROL Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD3 /0"/"MC" + // Pos:2118 Instruction:"ROL Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD3 /0"/"MC" { .Instruction = ND_INS_ROL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 761, + .Mnemonic = 763, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -58871,6 +61151,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -58884,12 +61165,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2113 Instruction:"ROL Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xD3 /0"/"MC" + // Pos:2119 Instruction:"ROL Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xD3 /0"/"MC" { .Instruction = ND_INS_ROL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 761, + .Mnemonic = 763, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -58898,6 +61179,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -58911,12 +61193,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2114 Instruction:"ROL Bb,Eb,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xC0 /0 ib"/"VMI" + // Pos:2120 Instruction:"ROL Bb,Eb,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xC0 /0 ib"/"VMI" { .Instruction = ND_INS_ROL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 761, + .Mnemonic = 763, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -58925,6 +61207,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -58940,12 +61223,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2115 Instruction:"ROL Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xC1 /0 ib"/"VMI" + // Pos:2121 Instruction:"ROL Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xC1 /0 ib"/"VMI" { .Instruction = ND_INS_ROL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 761, + .Mnemonic = 763, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -58954,6 +61237,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -58969,12 +61253,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2116 Instruction:"ROL Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0xC1 /0 ib"/"VMI" + // Pos:2122 Instruction:"ROL Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0xC1 /0 ib"/"VMI" { .Instruction = ND_INS_ROL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 761, + .Mnemonic = 763, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -58983,6 +61267,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -58998,12 +61283,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2117 Instruction:"ROL Bb,Eb,1" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD0 /0"/"VM1" + // Pos:2123 Instruction:"ROL Bb,Eb,1" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD0 /0"/"VM1" { .Instruction = ND_INS_ROL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 761, + .Mnemonic = 763, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -59012,6 +61297,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -59027,12 +61313,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2118 Instruction:"ROL Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD1 /0"/"VM1" + // Pos:2124 Instruction:"ROL Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD1 /0"/"VM1" { .Instruction = ND_INS_ROL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 761, + .Mnemonic = 763, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -59041,6 +61327,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -59056,12 +61343,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2119 Instruction:"ROL Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0xD1 /0"/"VM1" + // Pos:2125 Instruction:"ROL Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0xD1 /0"/"VM1" { .Instruction = ND_INS_ROL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 761, + .Mnemonic = 763, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -59070,6 +61357,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -59085,12 +61373,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2120 Instruction:"ROL Bb,Eb,CL" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD2 /0"/"VMC" + // Pos:2126 Instruction:"ROL Bb,Eb,CL" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD2 /0"/"VMC" { .Instruction = ND_INS_ROL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 761, + .Mnemonic = 763, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -59099,6 +61387,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -59114,12 +61403,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2121 Instruction:"ROL Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD3 /0"/"VMC" + // Pos:2127 Instruction:"ROL Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD3 /0"/"VMC" { .Instruction = ND_INS_ROL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 761, + .Mnemonic = 763, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -59128,6 +61417,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -59143,12 +61433,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2122 Instruction:"ROL Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0xD3 /0"/"VMC" + // Pos:2128 Instruction:"ROL Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0xD3 /0"/"VMC" { .Instruction = ND_INS_ROL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 761, + .Mnemonic = 763, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -59157,6 +61447,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -59172,12 +61463,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2123 Instruction:"ROL Bb,Eb,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xC0 /0 ib"/"VMI" + // Pos:2129 Instruction:"ROL Bb,Eb,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xC0 /0 ib"/"VMI" { .Instruction = ND_INS_ROL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 761, + .Mnemonic = 763, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -59186,6 +61477,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -59200,12 +61492,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2124 Instruction:"ROL Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xC1 /0 ib"/"VMI" + // Pos:2130 Instruction:"ROL Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xC1 /0 ib"/"VMI" { .Instruction = ND_INS_ROL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 761, + .Mnemonic = 763, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -59214,6 +61506,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -59228,12 +61521,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2125 Instruction:"ROL Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0xC1 /0 ib"/"VMI" + // Pos:2131 Instruction:"ROL Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0xC1 /0 ib"/"VMI" { .Instruction = ND_INS_ROL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 761, + .Mnemonic = 763, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -59242,6 +61535,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -59256,12 +61550,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2126 Instruction:"ROL Bb,Eb,1" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD0 /0"/"VM1" + // Pos:2132 Instruction:"ROL Bb,Eb,1" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD0 /0"/"VM1" { .Instruction = ND_INS_ROL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 761, + .Mnemonic = 763, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -59270,6 +61564,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -59284,12 +61579,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2127 Instruction:"ROL Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD1 /0"/"VM1" + // Pos:2133 Instruction:"ROL Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD1 /0"/"VM1" { .Instruction = ND_INS_ROL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 761, + .Mnemonic = 763, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -59298,6 +61593,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -59312,12 +61608,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2128 Instruction:"ROL Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0xD1 /0"/"VM1" + // Pos:2134 Instruction:"ROL Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0xD1 /0"/"VM1" { .Instruction = ND_INS_ROL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 761, + .Mnemonic = 763, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -59326,6 +61622,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -59340,12 +61637,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2129 Instruction:"ROL Bb,Eb,CL" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD2 /0"/"VMC" + // Pos:2135 Instruction:"ROL Bb,Eb,CL" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD2 /0"/"VMC" { .Instruction = ND_INS_ROL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 761, + .Mnemonic = 763, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -59354,6 +61651,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -59368,12 +61666,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2130 Instruction:"ROL Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD3 /0"/"VMC" + // Pos:2136 Instruction:"ROL Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD3 /0"/"VMC" { .Instruction = ND_INS_ROL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 761, + .Mnemonic = 763, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -59382,6 +61680,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -59396,12 +61695,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2131 Instruction:"ROL Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0xD3 /0"/"VMC" + // Pos:2137 Instruction:"ROL Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0xD3 /0"/"VMC" { .Instruction = ND_INS_ROL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 761, + .Mnemonic = 763, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -59410,6 +61709,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -59424,12 +61724,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2132 Instruction:"ROL Eb,Ib" Encoding:"0xC0 /0 ib"/"MI" + // Pos:2138 Instruction:"ROL Eb,Ib" Encoding:"0xC0 /0 ib"/"MI" { .Instruction = ND_INS_ROL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_I86, - .Mnemonic = 761, + .Mnemonic = 763, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -59438,6 +61738,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -59452,12 +61753,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2133 Instruction:"ROL Ev,Ib" Encoding:"0xC1 /0 ib"/"MI" + // Pos:2139 Instruction:"ROL Ev,Ib" Encoding:"0xC1 /0 ib"/"MI" { .Instruction = ND_INS_ROL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_I86, - .Mnemonic = 761, + .Mnemonic = 763, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -59466,6 +61767,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -59480,12 +61782,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2134 Instruction:"ROL Eb,1" Encoding:"0xD0 /0"/"M1" + // Pos:2140 Instruction:"ROL Eb,1" Encoding:"0xD0 /0"/"M1" { .Instruction = ND_INS_ROL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_I86, - .Mnemonic = 761, + .Mnemonic = 763, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -59494,6 +61796,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -59508,12 +61811,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2135 Instruction:"ROL Ev,1" Encoding:"0xD1 /0"/"M1" + // Pos:2141 Instruction:"ROL Ev,1" Encoding:"0xD1 /0"/"M1" { .Instruction = ND_INS_ROL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_I86, - .Mnemonic = 761, + .Mnemonic = 763, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -59522,6 +61825,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -59536,12 +61840,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2136 Instruction:"ROL Eb,CL" Encoding:"0xD2 /0"/"MC" + // Pos:2142 Instruction:"ROL Eb,CL" Encoding:"0xD2 /0"/"MC" { .Instruction = ND_INS_ROL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_I86, - .Mnemonic = 761, + .Mnemonic = 763, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -59550,6 +61854,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -59564,12 +61869,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2137 Instruction:"ROL Ev,CL" Encoding:"0xD3 /0"/"MC" + // Pos:2143 Instruction:"ROL Ev,CL" Encoding:"0xD3 /0"/"MC" { .Instruction = ND_INS_ROL, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_I86, - .Mnemonic = 761, + .Mnemonic = 763, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -59578,6 +61883,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -59592,12 +61898,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2138 Instruction:"ROR Eb,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xC0 /1 ib"/"MI" + // Pos:2144 Instruction:"ROR Eb,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xC0 /1 ib"/"MI" { .Instruction = ND_INS_ROR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 762, + .Mnemonic = 764, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -59606,6 +61912,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -59620,12 +61927,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2139 Instruction:"ROR Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xC1 /1 ib"/"MI" + // Pos:2145 Instruction:"ROR Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xC1 /1 ib"/"MI" { .Instruction = ND_INS_ROR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 762, + .Mnemonic = 764, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -59634,6 +61941,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -59648,12 +61956,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2140 Instruction:"ROR Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xC1 /1 ib"/"MI" + // Pos:2146 Instruction:"ROR Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xC1 /1 ib"/"MI" { .Instruction = ND_INS_ROR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 762, + .Mnemonic = 764, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -59662,6 +61970,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -59676,12 +61985,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2141 Instruction:"ROR Eb,1" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD0 /1"/"M1" + // Pos:2147 Instruction:"ROR Eb,1" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD0 /1"/"M1" { .Instruction = ND_INS_ROR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 762, + .Mnemonic = 764, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -59690,6 +61999,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -59704,12 +62014,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2142 Instruction:"ROR Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD1 /1"/"M1" + // Pos:2148 Instruction:"ROR Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD1 /1"/"M1" { .Instruction = ND_INS_ROR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 762, + .Mnemonic = 764, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -59718,6 +62028,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -59732,12 +62043,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2143 Instruction:"ROR Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xD1 /1"/"M1" + // Pos:2149 Instruction:"ROR Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xD1 /1"/"M1" { .Instruction = ND_INS_ROR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 762, + .Mnemonic = 764, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -59746,6 +62057,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -59760,12 +62072,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2144 Instruction:"ROR Eb,CL" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD2 /1"/"MC" + // Pos:2150 Instruction:"ROR Eb,CL" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD2 /1"/"MC" { .Instruction = ND_INS_ROR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 762, + .Mnemonic = 764, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -59774,6 +62086,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -59788,12 +62101,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2145 Instruction:"ROR Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD3 /1"/"MC" + // Pos:2151 Instruction:"ROR Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD3 /1"/"MC" { .Instruction = ND_INS_ROR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 762, + .Mnemonic = 764, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -59802,6 +62115,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -59816,12 +62130,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2146 Instruction:"ROR Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xD3 /1"/"MC" + // Pos:2152 Instruction:"ROR Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xD3 /1"/"MC" { .Instruction = ND_INS_ROR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 762, + .Mnemonic = 764, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -59830,6 +62144,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -59844,12 +62159,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2147 Instruction:"ROR Eb,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xC0 /1 ib"/"MI" + // Pos:2153 Instruction:"ROR Eb,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xC0 /1 ib"/"MI" { .Instruction = ND_INS_ROR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 762, + .Mnemonic = 764, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -59858,6 +62173,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -59871,12 +62187,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2148 Instruction:"ROR Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xC1 /1 ib"/"MI" + // Pos:2154 Instruction:"ROR Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xC1 /1 ib"/"MI" { .Instruction = ND_INS_ROR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 762, + .Mnemonic = 764, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -59885,6 +62201,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -59898,12 +62215,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2149 Instruction:"ROR Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xC1 /1 ib"/"MI" + // Pos:2155 Instruction:"ROR Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xC1 /1 ib"/"MI" { .Instruction = ND_INS_ROR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 762, + .Mnemonic = 764, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -59912,6 +62229,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -59925,12 +62243,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2150 Instruction:"ROR Eb,1" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD0 /1"/"M1" + // Pos:2156 Instruction:"ROR Eb,1" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD0 /1"/"M1" { .Instruction = ND_INS_ROR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 762, + .Mnemonic = 764, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -59939,6 +62257,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -59952,12 +62271,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2151 Instruction:"ROR Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD1 /1"/"M1" + // Pos:2157 Instruction:"ROR Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD1 /1"/"M1" { .Instruction = ND_INS_ROR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 762, + .Mnemonic = 764, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -59966,6 +62285,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -59979,12 +62299,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2152 Instruction:"ROR Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xD1 /1"/"M1" + // Pos:2158 Instruction:"ROR Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xD1 /1"/"M1" { .Instruction = ND_INS_ROR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 762, + .Mnemonic = 764, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -59993,6 +62313,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -60006,12 +62327,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2153 Instruction:"ROR Eb,CL" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD2 /1"/"MC" + // Pos:2159 Instruction:"ROR Eb,CL" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD2 /1"/"MC" { .Instruction = ND_INS_ROR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 762, + .Mnemonic = 764, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -60020,6 +62341,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -60033,12 +62355,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2154 Instruction:"ROR Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD3 /1"/"MC" + // Pos:2160 Instruction:"ROR Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD3 /1"/"MC" { .Instruction = ND_INS_ROR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 762, + .Mnemonic = 764, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -60047,6 +62369,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -60060,12 +62383,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2155 Instruction:"ROR Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xD3 /1"/"MC" + // Pos:2161 Instruction:"ROR Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xD3 /1"/"MC" { .Instruction = ND_INS_ROR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 762, + .Mnemonic = 764, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -60074,6 +62397,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -60087,12 +62411,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2156 Instruction:"ROR Bb,Eb,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xC0 /1 ib"/"VMI" + // Pos:2162 Instruction:"ROR Bb,Eb,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xC0 /1 ib"/"VMI" { .Instruction = ND_INS_ROR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 762, + .Mnemonic = 764, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -60101,6 +62425,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -60116,12 +62441,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2157 Instruction:"ROR Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xC1 /1 ib"/"VMI" + // Pos:2163 Instruction:"ROR Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xC1 /1 ib"/"VMI" { .Instruction = ND_INS_ROR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 762, + .Mnemonic = 764, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -60130,6 +62455,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -60145,12 +62471,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2158 Instruction:"ROR Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0xC1 /1 ib"/"VMI" + // Pos:2164 Instruction:"ROR Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0xC1 /1 ib"/"VMI" { .Instruction = ND_INS_ROR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 762, + .Mnemonic = 764, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -60159,6 +62485,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -60174,12 +62501,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2159 Instruction:"ROR Bb,Eb,1" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD0 /1"/"VM1" + // Pos:2165 Instruction:"ROR Bb,Eb,1" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD0 /1"/"VM1" { .Instruction = ND_INS_ROR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 762, + .Mnemonic = 764, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -60188,6 +62515,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -60203,12 +62531,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2160 Instruction:"ROR Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD1 /1"/"VM1" + // Pos:2166 Instruction:"ROR Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD1 /1"/"VM1" { .Instruction = ND_INS_ROR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 762, + .Mnemonic = 764, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -60217,6 +62545,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -60232,12 +62561,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2161 Instruction:"ROR Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0xD1 /1"/"VM1" + // Pos:2167 Instruction:"ROR Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0xD1 /1"/"VM1" { .Instruction = ND_INS_ROR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 762, + .Mnemonic = 764, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -60246,6 +62575,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -60261,12 +62591,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2162 Instruction:"ROR Bb,Eb,CL" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD2 /1"/"VMC" + // Pos:2168 Instruction:"ROR Bb,Eb,CL" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD2 /1"/"VMC" { .Instruction = ND_INS_ROR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 762, + .Mnemonic = 764, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -60275,6 +62605,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -60290,12 +62621,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2163 Instruction:"ROR Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD3 /1"/"VMC" + // Pos:2169 Instruction:"ROR Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD3 /1"/"VMC" { .Instruction = ND_INS_ROR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 762, + .Mnemonic = 764, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -60304,6 +62635,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -60319,12 +62651,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2164 Instruction:"ROR Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0xD3 /1"/"VMC" + // Pos:2170 Instruction:"ROR Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0xD3 /1"/"VMC" { .Instruction = ND_INS_ROR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 762, + .Mnemonic = 764, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -60333,6 +62665,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -60348,12 +62681,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2165 Instruction:"ROR Bb,Eb,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xC0 /1 ib"/"VMI" + // Pos:2171 Instruction:"ROR Bb,Eb,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xC0 /1 ib"/"VMI" { .Instruction = ND_INS_ROR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 762, + .Mnemonic = 764, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -60362,6 +62695,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -60376,12 +62710,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2166 Instruction:"ROR Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xC1 /1 ib"/"VMI" + // Pos:2172 Instruction:"ROR Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xC1 /1 ib"/"VMI" { .Instruction = ND_INS_ROR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 762, + .Mnemonic = 764, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -60390,6 +62724,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -60404,12 +62739,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2167 Instruction:"ROR Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0xC1 /1 ib"/"VMI" + // Pos:2173 Instruction:"ROR Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0xC1 /1 ib"/"VMI" { .Instruction = ND_INS_ROR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 762, + .Mnemonic = 764, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -60418,6 +62753,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -60432,12 +62768,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2168 Instruction:"ROR Bb,Eb,1" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD0 /1"/"VM1" + // Pos:2174 Instruction:"ROR Bb,Eb,1" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD0 /1"/"VM1" { .Instruction = ND_INS_ROR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 762, + .Mnemonic = 764, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -60446,6 +62782,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -60460,12 +62797,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2169 Instruction:"ROR Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD1 /1"/"VM1" + // Pos:2175 Instruction:"ROR Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD1 /1"/"VM1" { .Instruction = ND_INS_ROR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 762, + .Mnemonic = 764, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -60474,6 +62811,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -60488,12 +62826,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2170 Instruction:"ROR Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0xD1 /1"/"VM1" + // Pos:2176 Instruction:"ROR Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0xD1 /1"/"VM1" { .Instruction = ND_INS_ROR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 762, + .Mnemonic = 764, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -60502,6 +62840,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -60516,12 +62855,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2171 Instruction:"ROR Bb,Eb,CL" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD2 /1"/"VMC" + // Pos:2177 Instruction:"ROR Bb,Eb,CL" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD2 /1"/"VMC" { .Instruction = ND_INS_ROR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 762, + .Mnemonic = 764, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -60530,6 +62869,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -60544,12 +62884,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2172 Instruction:"ROR Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD3 /1"/"VMC" + // Pos:2178 Instruction:"ROR Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD3 /1"/"VMC" { .Instruction = ND_INS_ROR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 762, + .Mnemonic = 764, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -60558,6 +62898,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -60572,12 +62913,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2173 Instruction:"ROR Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0xD3 /1"/"VMC" + // Pos:2179 Instruction:"ROR Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0xD3 /1"/"VMC" { .Instruction = ND_INS_ROR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 762, + .Mnemonic = 764, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -60586,6 +62927,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -60600,12 +62942,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2174 Instruction:"ROR Eb,Ib" Encoding:"0xC0 /1 ib"/"MI" + // Pos:2180 Instruction:"ROR Eb,Ib" Encoding:"0xC0 /1 ib"/"MI" { .Instruction = ND_INS_ROR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_I86, - .Mnemonic = 762, + .Mnemonic = 764, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -60614,6 +62956,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -60628,12 +62971,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2175 Instruction:"ROR Ev,Ib" Encoding:"0xC1 /1 ib"/"MI" + // Pos:2181 Instruction:"ROR Ev,Ib" Encoding:"0xC1 /1 ib"/"MI" { .Instruction = ND_INS_ROR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_I86, - .Mnemonic = 762, + .Mnemonic = 764, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -60642,6 +62985,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -60656,12 +63000,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2176 Instruction:"ROR Eb,1" Encoding:"0xD0 /1"/"M1" + // Pos:2182 Instruction:"ROR Eb,1" Encoding:"0xD0 /1"/"M1" { .Instruction = ND_INS_ROR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_I86, - .Mnemonic = 762, + .Mnemonic = 764, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -60670,6 +63014,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -60684,12 +63029,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2177 Instruction:"ROR Ev,1" Encoding:"0xD1 /1"/"M1" + // Pos:2183 Instruction:"ROR Ev,1" Encoding:"0xD1 /1"/"M1" { .Instruction = ND_INS_ROR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_I86, - .Mnemonic = 762, + .Mnemonic = 764, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -60698,6 +63043,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -60712,12 +63058,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2178 Instruction:"ROR Eb,CL" Encoding:"0xD2 /1"/"MC" + // Pos:2184 Instruction:"ROR Eb,CL" Encoding:"0xD2 /1"/"MC" { .Instruction = ND_INS_ROR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_I86, - .Mnemonic = 762, + .Mnemonic = 764, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -60726,6 +63072,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -60740,12 +63087,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2179 Instruction:"ROR Ev,CL" Encoding:"0xD3 /1"/"MC" + // Pos:2185 Instruction:"ROR Ev,CL" Encoding:"0xD3 /1"/"MC" { .Instruction = ND_INS_ROR, .Category = ND_CAT_ROTATE, .IsaSet = ND_SET_I86, - .Mnemonic = 762, + .Mnemonic = 764, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -60754,6 +63101,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_OF, .SetFlags = 0, @@ -60768,12 +63116,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2180 Instruction:"RORX Gy,Ey,Ib" Encoding:"evex m:3 p:3 l:0 nd:0 nf:0 0xF0 /r ib"/"RMI" + // Pos:2186 Instruction:"RORX Gy,Ey,Ib" Encoding:"evex m:3 p:3 l:0 nd:0 nf:0 0xF0 /r ib"/"RMI" { .Instruction = ND_INS_RORX, .Category = ND_CAT_BMI2, .IsaSet = ND_SET_APX_F, - .Mnemonic = 763, + .Mnemonic = 765, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -60782,6 +63130,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_BMI, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -60796,12 +63145,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2181 Instruction:"RORX Gy,Ey,Ib" Encoding:"vex m:3 p:3 l:0 w:x 0xF0 /r ib"/"RMI" + // Pos:2187 Instruction:"RORX Gy,Ey,Ib" Encoding:"vex m:3 p:3 l:0 w:x 0xF0 /r ib"/"RMI" { .Instruction = ND_INS_RORX, .Category = ND_CAT_BMI2, .IsaSet = ND_SET_BMI2, - .Mnemonic = 763, + .Mnemonic = 765, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -60810,6 +63159,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_13, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -60824,12 +63174,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2182 Instruction:"ROUNDPD Vx,Wx,Ib" Encoding:"0x66 0x0F 0x3A 0x09 /r ib"/"RMI" + // Pos:2188 Instruction:"ROUNDPD Vx,Wx,Ib" Encoding:"0x66 0x0F 0x3A 0x09 /r ib"/"RMI" { .Instruction = ND_INS_ROUNDPD, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE4, - .Mnemonic = 764, + .Mnemonic = 766, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -60838,6 +63188,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -60852,12 +63203,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2183 Instruction:"ROUNDPS Vx,Wx,Ib" Encoding:"0x66 0x0F 0x3A 0x08 /r ib"/"RMI" + // Pos:2189 Instruction:"ROUNDPS Vx,Wx,Ib" Encoding:"0x66 0x0F 0x3A 0x08 /r ib"/"RMI" { .Instruction = ND_INS_ROUNDPS, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE4, - .Mnemonic = 765, + .Mnemonic = 767, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -60866,6 +63217,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -60880,12 +63232,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2184 Instruction:"ROUNDSD Vsd,Wsd,Ib" Encoding:"0x66 0x0F 0x3A 0x0B /r ib"/"RMI" + // Pos:2190 Instruction:"ROUNDSD Vsd,Wsd,Ib" Encoding:"0x66 0x0F 0x3A 0x0B /r ib"/"RMI" { .Instruction = ND_INS_ROUNDSD, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE4, - .Mnemonic = 766, + .Mnemonic = 768, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -60894,6 +63246,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -60908,12 +63261,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2185 Instruction:"ROUNDSS Vss,Wss,Ib" Encoding:"0x66 0x0F 0x3A 0x0A /r ib"/"RMI" + // Pos:2191 Instruction:"ROUNDSS Vss,Wss,Ib" Encoding:"0x66 0x0F 0x3A 0x0A /r ib"/"RMI" { .Instruction = ND_INS_ROUNDSS, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE4, - .Mnemonic = 767, + .Mnemonic = 769, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -60922,6 +63275,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -60936,12 +63290,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2186 Instruction:"RSM" Encoding:"0x0F 0xAA"/"" + // Pos:2192 Instruction:"RSM" Encoding:"0x0F 0xAA"/"" { .Instruction = ND_INS_RSM, .Category = ND_CAT_SYSRET, .IsaSet = ND_SET_I486, - .Mnemonic = 768, + .Mnemonic = 770, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_REAL|ND_MOD_V8086|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -60950,6 +63304,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -60964,12 +63319,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2187 Instruction:"RSQRTPS Vps,Wps" Encoding:"NP 0x0F 0x52 /r"/"RM" + // Pos:2193 Instruction:"RSQRTPS Vps,Wps" Encoding:"NP 0x0F 0x52 /r"/"RM" { .Instruction = ND_INS_RSQRTPS, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE, - .Mnemonic = 769, + .Mnemonic = 771, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -60978,6 +63333,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -60991,12 +63347,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2188 Instruction:"RSQRTSS Vss,Wss" Encoding:"0xF3 0x0F 0x52 /r"/"RM" + // Pos:2194 Instruction:"RSQRTSS Vss,Wss" Encoding:"0xF3 0x0F 0x52 /r"/"RM" { .Instruction = ND_INS_RSQRTSS, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE, - .Mnemonic = 770, + .Mnemonic = 772, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -61005,6 +63361,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -61018,12 +63375,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2189 Instruction:"RSTORSSP Mq" Encoding:"0xF3 0x0F 0x01 /5:mem"/"M" + // Pos:2195 Instruction:"RSTORSSP Mq" Encoding:"0xF3 0x0F 0x01 /5:mem"/"M" { .Instruction = ND_INS_RSTORSSP, .Category = ND_CAT_CET, .IsaSet = ND_SET_CET_SS, - .Mnemonic = 771, + .Mnemonic = 773, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -61032,6 +63389,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF, .SetFlags = 0, @@ -61045,12 +63403,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2190 Instruction:"SAHF" Encoding:"0x9E"/"" + // Pos:2196 Instruction:"SAHF" Encoding:"0x9E"/"" { .Instruction = ND_INS_SAHF, .Category = ND_CAT_FLAGOP, .IsaSet = ND_SET_I86, - .Mnemonic = 772, + .Mnemonic = 774, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -61059,6 +63417,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0, @@ -61072,12 +63431,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2191 Instruction:"SAL Eb,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xC0 /6 ib"/"MI" + // Pos:2197 Instruction:"SAL Eb,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xC0 /6 ib"/"MI" { .Instruction = ND_INS_SAL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 773, + .Mnemonic = 775, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -61086,6 +63445,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -61100,12 +63460,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2192 Instruction:"SAL Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xC1 /6 ib"/"MI" + // Pos:2198 Instruction:"SAL Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xC1 /6 ib"/"MI" { .Instruction = ND_INS_SAL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 773, + .Mnemonic = 775, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -61114,6 +63474,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -61128,12 +63489,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2193 Instruction:"SAL Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xC1 /6 ib"/"MI" + // Pos:2199 Instruction:"SAL Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xC1 /6 ib"/"MI" { .Instruction = ND_INS_SAL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 773, + .Mnemonic = 775, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -61142,6 +63503,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -61156,12 +63518,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2194 Instruction:"SAL Eb,1" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD0 /6"/"M1" + // Pos:2200 Instruction:"SAL Eb,1" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD0 /6"/"M1" { .Instruction = ND_INS_SAL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 773, + .Mnemonic = 775, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -61170,6 +63532,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -61184,12 +63547,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2195 Instruction:"SAL Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD1 /6"/"M1" + // Pos:2201 Instruction:"SAL Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD1 /6"/"M1" { .Instruction = ND_INS_SAL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 773, + .Mnemonic = 775, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -61198,6 +63561,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -61212,12 +63576,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2196 Instruction:"SAL Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xD1 /6"/"M1" + // Pos:2202 Instruction:"SAL Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xD1 /6"/"M1" { .Instruction = ND_INS_SAL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 773, + .Mnemonic = 775, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -61226,6 +63590,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -61240,12 +63605,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2197 Instruction:"SAL Eb,CL" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD2 /6"/"MC" + // Pos:2203 Instruction:"SAL Eb,CL" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD2 /6"/"MC" { .Instruction = ND_INS_SAL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 773, + .Mnemonic = 775, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -61254,6 +63619,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -61268,12 +63634,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2198 Instruction:"SAL Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD3 /6"/"MC" + // Pos:2204 Instruction:"SAL Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD3 /6"/"MC" { .Instruction = ND_INS_SAL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 773, + .Mnemonic = 775, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -61282,6 +63648,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -61296,12 +63663,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2199 Instruction:"SAL Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xD3 /6"/"MC" + // Pos:2205 Instruction:"SAL Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xD3 /6"/"MC" { .Instruction = ND_INS_SAL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 773, + .Mnemonic = 775, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -61310,6 +63677,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -61324,12 +63692,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2200 Instruction:"SAL Eb,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xC0 /6 ib"/"MI" + // Pos:2206 Instruction:"SAL Eb,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xC0 /6 ib"/"MI" { .Instruction = ND_INS_SAL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 773, + .Mnemonic = 775, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -61338,6 +63706,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -61351,12 +63720,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2201 Instruction:"SAL Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xC1 /6 ib"/"MI" + // Pos:2207 Instruction:"SAL Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xC1 /6 ib"/"MI" { .Instruction = ND_INS_SAL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 773, + .Mnemonic = 775, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -61365,6 +63734,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -61378,12 +63748,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2202 Instruction:"SAL Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xC1 /6 ib"/"MI" + // Pos:2208 Instruction:"SAL Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xC1 /6 ib"/"MI" { .Instruction = ND_INS_SAL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 773, + .Mnemonic = 775, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -61392,6 +63762,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -61405,12 +63776,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2203 Instruction:"SAL Eb,1" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD0 /6"/"M1" + // Pos:2209 Instruction:"SAL Eb,1" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD0 /6"/"M1" { .Instruction = ND_INS_SAL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 773, + .Mnemonic = 775, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -61419,6 +63790,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -61432,12 +63804,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2204 Instruction:"SAL Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD1 /6"/"M1" + // Pos:2210 Instruction:"SAL Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD1 /6"/"M1" { .Instruction = ND_INS_SAL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 773, + .Mnemonic = 775, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -61446,6 +63818,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -61459,12 +63832,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2205 Instruction:"SAL Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xD1 /6"/"M1" + // Pos:2211 Instruction:"SAL Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xD1 /6"/"M1" { .Instruction = ND_INS_SAL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 773, + .Mnemonic = 775, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -61473,6 +63846,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -61486,12 +63860,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2206 Instruction:"SAL Eb,CL" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD2 /6"/"MC" + // Pos:2212 Instruction:"SAL Eb,CL" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD2 /6"/"MC" { .Instruction = ND_INS_SAL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 773, + .Mnemonic = 775, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -61500,6 +63874,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -61513,12 +63888,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2207 Instruction:"SAL Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD3 /6"/"MC" + // Pos:2213 Instruction:"SAL Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD3 /6"/"MC" { .Instruction = ND_INS_SAL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 773, + .Mnemonic = 775, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -61527,6 +63902,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -61540,12 +63916,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2208 Instruction:"SAL Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xD3 /6"/"MC" + // Pos:2214 Instruction:"SAL Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xD3 /6"/"MC" { .Instruction = ND_INS_SAL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 773, + .Mnemonic = 775, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -61554,6 +63930,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -61567,12 +63944,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2209 Instruction:"SAL Bb,Eb,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xC0 /6 ib"/"VMI" + // Pos:2215 Instruction:"SAL Bb,Eb,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xC0 /6 ib"/"VMI" { .Instruction = ND_INS_SAL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 773, + .Mnemonic = 775, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -61581,6 +63958,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -61596,12 +63974,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2210 Instruction:"SAL Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xC1 /6 ib"/"VMI" + // Pos:2216 Instruction:"SAL Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xC1 /6 ib"/"VMI" { .Instruction = ND_INS_SAL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 773, + .Mnemonic = 775, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -61610,6 +63988,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -61625,12 +64004,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2211 Instruction:"SAL Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0xC1 /6 ib"/"VMI" + // Pos:2217 Instruction:"SAL Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0xC1 /6 ib"/"VMI" { .Instruction = ND_INS_SAL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 773, + .Mnemonic = 775, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -61639,6 +64018,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -61654,12 +64034,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2212 Instruction:"SAL Bb,Eb,1" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD0 /6"/"VM1" + // Pos:2218 Instruction:"SAL Bb,Eb,1" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD0 /6"/"VM1" { .Instruction = ND_INS_SAL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 773, + .Mnemonic = 775, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -61668,6 +64048,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -61683,12 +64064,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2213 Instruction:"SAL Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD1 /6"/"VM1" + // Pos:2219 Instruction:"SAL Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD1 /6"/"VM1" { .Instruction = ND_INS_SAL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 773, + .Mnemonic = 775, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -61697,6 +64078,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -61712,12 +64094,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2214 Instruction:"SAL Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0xD1 /6"/"VM1" + // Pos:2220 Instruction:"SAL Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0xD1 /6"/"VM1" { .Instruction = ND_INS_SAL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 773, + .Mnemonic = 775, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -61726,6 +64108,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -61741,12 +64124,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2215 Instruction:"SAL Bb,Eb,CL" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD2 /6"/"VMC" + // Pos:2221 Instruction:"SAL Bb,Eb,CL" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD2 /6"/"VMC" { .Instruction = ND_INS_SAL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 773, + .Mnemonic = 775, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -61755,6 +64138,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -61770,12 +64154,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2216 Instruction:"SAL Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD3 /6"/"VMC" + // Pos:2222 Instruction:"SAL Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD3 /6"/"VMC" { .Instruction = ND_INS_SAL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 773, + .Mnemonic = 775, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -61784,6 +64168,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -61799,12 +64184,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2217 Instruction:"SAL Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0xD3 /6"/"VMC" + // Pos:2223 Instruction:"SAL Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0xD3 /6"/"VMC" { .Instruction = ND_INS_SAL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 773, + .Mnemonic = 775, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -61813,6 +64198,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -61828,12 +64214,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2218 Instruction:"SAL Bb,Eb,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xC0 /6 ib"/"VMI" + // Pos:2224 Instruction:"SAL Bb,Eb,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xC0 /6 ib"/"VMI" { .Instruction = ND_INS_SAL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 773, + .Mnemonic = 775, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -61842,6 +64228,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -61856,12 +64243,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2219 Instruction:"SAL Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xC1 /6 ib"/"VMI" + // Pos:2225 Instruction:"SAL Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xC1 /6 ib"/"VMI" { .Instruction = ND_INS_SAL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 773, + .Mnemonic = 775, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -61870,6 +64257,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -61884,12 +64272,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2220 Instruction:"SAL Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0xC1 /6 ib"/"VMI" + // Pos:2226 Instruction:"SAL Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0xC1 /6 ib"/"VMI" { .Instruction = ND_INS_SAL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 773, + .Mnemonic = 775, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -61898,6 +64286,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -61912,12 +64301,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2221 Instruction:"SAL Bb,Eb,1" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD0 /6"/"VM1" + // Pos:2227 Instruction:"SAL Bb,Eb,1" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD0 /6"/"VM1" { .Instruction = ND_INS_SAL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 773, + .Mnemonic = 775, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -61926,6 +64315,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -61940,12 +64330,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2222 Instruction:"SAL Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD1 /6"/"VM1" + // Pos:2228 Instruction:"SAL Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD1 /6"/"VM1" { .Instruction = ND_INS_SAL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 773, + .Mnemonic = 775, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -61954,6 +64344,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -61968,12 +64359,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2223 Instruction:"SAL Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0xD1 /6"/"VM1" + // Pos:2229 Instruction:"SAL Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0xD1 /6"/"VM1" { .Instruction = ND_INS_SAL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 773, + .Mnemonic = 775, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -61982,6 +64373,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -61996,12 +64388,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2224 Instruction:"SAL Bb,Eb,CL" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD2 /6"/"VMC" + // Pos:2230 Instruction:"SAL Bb,Eb,CL" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD2 /6"/"VMC" { .Instruction = ND_INS_SAL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 773, + .Mnemonic = 775, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -62010,6 +64402,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -62024,12 +64417,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2225 Instruction:"SAL Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD3 /6"/"VMC" + // Pos:2231 Instruction:"SAL Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD3 /6"/"VMC" { .Instruction = ND_INS_SAL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 773, + .Mnemonic = 775, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -62038,6 +64431,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -62052,12 +64446,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2226 Instruction:"SAL Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0xD3 /6"/"VMC" + // Pos:2232 Instruction:"SAL Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0xD3 /6"/"VMC" { .Instruction = ND_INS_SAL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 773, + .Mnemonic = 775, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -62066,6 +64460,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -62080,12 +64475,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2227 Instruction:"SAL Eb,Ib" Encoding:"0xC0 /6 ib"/"MI" + // Pos:2233 Instruction:"SAL Eb,Ib" Encoding:"0xC0 /6 ib"/"MI" { .Instruction = ND_INS_SAL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_I86, - .Mnemonic = 773, + .Mnemonic = 775, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -62094,6 +64489,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -62108,12 +64504,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2228 Instruction:"SAL Ev,Ib" Encoding:"0xC1 /6 ib"/"MI" + // Pos:2234 Instruction:"SAL Ev,Ib" Encoding:"0xC1 /6 ib"/"MI" { .Instruction = ND_INS_SAL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_I86, - .Mnemonic = 773, + .Mnemonic = 775, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -62122,6 +64518,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -62136,12 +64533,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2229 Instruction:"SAL Eb,1" Encoding:"0xD0 /6"/"M1" + // Pos:2235 Instruction:"SAL Eb,1" Encoding:"0xD0 /6"/"M1" { .Instruction = ND_INS_SAL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_I86, - .Mnemonic = 773, + .Mnemonic = 775, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -62150,6 +64547,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -62164,12 +64562,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2230 Instruction:"SAL Ev,1" Encoding:"0xD1 /6"/"M1" + // Pos:2236 Instruction:"SAL Ev,1" Encoding:"0xD1 /6"/"M1" { .Instruction = ND_INS_SAL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_I86, - .Mnemonic = 773, + .Mnemonic = 775, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -62178,6 +64576,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -62192,12 +64591,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2231 Instruction:"SAL Eb,CL" Encoding:"0xD2 /6"/"MC" + // Pos:2237 Instruction:"SAL Eb,CL" Encoding:"0xD2 /6"/"MC" { .Instruction = ND_INS_SAL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_I86, - .Mnemonic = 773, + .Mnemonic = 775, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -62206,6 +64605,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -62220,12 +64620,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2232 Instruction:"SAL Ev,CL" Encoding:"0xD3 /6"/"MC" + // Pos:2238 Instruction:"SAL Ev,CL" Encoding:"0xD3 /6"/"MC" { .Instruction = ND_INS_SAL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_I86, - .Mnemonic = 773, + .Mnemonic = 775, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -62234,6 +64634,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -62248,12 +64649,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2233 Instruction:"SALC" Encoding:"0xD6"/"" + // Pos:2239 Instruction:"SALC" Encoding:"0xD6"/"" { .Instruction = ND_INS_SALC, .Category = ND_CAT_FLAGOP, .IsaSet = ND_SET_I86, - .Mnemonic = 774, + .Mnemonic = 776, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -62262,6 +64663,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -62275,12 +64677,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2234 Instruction:"SAR Eb,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xC0 /7 ib"/"MI" + // Pos:2240 Instruction:"SAR Eb,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xC0 /7 ib"/"MI" { .Instruction = ND_INS_SAR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 775, + .Mnemonic = 777, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -62289,6 +64691,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -62303,12 +64706,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2235 Instruction:"SAR Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xC1 /7 ib"/"MI" + // Pos:2241 Instruction:"SAR Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xC1 /7 ib"/"MI" { .Instruction = ND_INS_SAR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 775, + .Mnemonic = 777, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -62317,6 +64720,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -62331,12 +64735,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2236 Instruction:"SAR Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xC1 /7 ib"/"MI" + // Pos:2242 Instruction:"SAR Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xC1 /7 ib"/"MI" { .Instruction = ND_INS_SAR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 775, + .Mnemonic = 777, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -62345,6 +64749,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -62359,12 +64764,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2237 Instruction:"SAR Eb,1" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD0 /7"/"M1" + // Pos:2243 Instruction:"SAR Eb,1" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD0 /7"/"M1" { .Instruction = ND_INS_SAR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 775, + .Mnemonic = 777, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -62373,6 +64778,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -62387,12 +64793,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2238 Instruction:"SAR Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD1 /7"/"M1" + // Pos:2244 Instruction:"SAR Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD1 /7"/"M1" { .Instruction = ND_INS_SAR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 775, + .Mnemonic = 777, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -62401,6 +64807,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -62415,12 +64822,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2239 Instruction:"SAR Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xD1 /7"/"M1" + // Pos:2245 Instruction:"SAR Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xD1 /7"/"M1" { .Instruction = ND_INS_SAR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 775, + .Mnemonic = 777, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -62429,6 +64836,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -62443,12 +64851,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2240 Instruction:"SAR Eb,CL" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD2 /7"/"MC" + // Pos:2246 Instruction:"SAR Eb,CL" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD2 /7"/"MC" { .Instruction = ND_INS_SAR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 775, + .Mnemonic = 777, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -62457,6 +64865,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -62471,12 +64880,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2241 Instruction:"SAR Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD3 /7"/"MC" + // Pos:2247 Instruction:"SAR Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD3 /7"/"MC" { .Instruction = ND_INS_SAR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 775, + .Mnemonic = 777, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -62485,6 +64894,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -62499,12 +64909,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2242 Instruction:"SAR Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xD3 /7"/"MC" + // Pos:2248 Instruction:"SAR Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xD3 /7"/"MC" { .Instruction = ND_INS_SAR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 775, + .Mnemonic = 777, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -62513,6 +64923,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -62527,12 +64938,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2243 Instruction:"SAR Eb,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xC0 /7 ib"/"MI" + // Pos:2249 Instruction:"SAR Eb,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xC0 /7 ib"/"MI" { .Instruction = ND_INS_SAR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 775, + .Mnemonic = 777, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -62541,6 +64952,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -62554,12 +64966,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2244 Instruction:"SAR Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xC1 /7 ib"/"MI" + // Pos:2250 Instruction:"SAR Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xC1 /7 ib"/"MI" { .Instruction = ND_INS_SAR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 775, + .Mnemonic = 777, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -62568,6 +64980,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -62581,12 +64994,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2245 Instruction:"SAR Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xC1 /7 ib"/"MI" + // Pos:2251 Instruction:"SAR Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xC1 /7 ib"/"MI" { .Instruction = ND_INS_SAR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 775, + .Mnemonic = 777, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -62595,6 +65008,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -62608,12 +65022,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2246 Instruction:"SAR Eb,1" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD0 /7"/"M1" + // Pos:2252 Instruction:"SAR Eb,1" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD0 /7"/"M1" { .Instruction = ND_INS_SAR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 775, + .Mnemonic = 777, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -62622,6 +65036,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -62635,12 +65050,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2247 Instruction:"SAR Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD1 /7"/"M1" + // Pos:2253 Instruction:"SAR Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD1 /7"/"M1" { .Instruction = ND_INS_SAR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 775, + .Mnemonic = 777, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -62649,6 +65064,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -62662,12 +65078,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2248 Instruction:"SAR Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xD1 /7"/"M1" + // Pos:2254 Instruction:"SAR Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xD1 /7"/"M1" { .Instruction = ND_INS_SAR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 775, + .Mnemonic = 777, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -62676,6 +65092,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -62689,12 +65106,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2249 Instruction:"SAR Eb,CL" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD2 /7"/"MC" + // Pos:2255 Instruction:"SAR Eb,CL" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD2 /7"/"MC" { .Instruction = ND_INS_SAR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 775, + .Mnemonic = 777, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -62703,6 +65120,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -62716,12 +65134,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2250 Instruction:"SAR Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD3 /7"/"MC" + // Pos:2256 Instruction:"SAR Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD3 /7"/"MC" { .Instruction = ND_INS_SAR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 775, + .Mnemonic = 777, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -62730,6 +65148,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -62743,12 +65162,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2251 Instruction:"SAR Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xD3 /7"/"MC" + // Pos:2257 Instruction:"SAR Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xD3 /7"/"MC" { .Instruction = ND_INS_SAR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 775, + .Mnemonic = 777, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -62757,6 +65176,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -62770,12 +65190,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2252 Instruction:"SAR Bb,Eb,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xC0 /7 ib"/"VMI" + // Pos:2258 Instruction:"SAR Bb,Eb,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xC0 /7 ib"/"VMI" { .Instruction = ND_INS_SAR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 775, + .Mnemonic = 777, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -62784,6 +65204,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -62799,12 +65220,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2253 Instruction:"SAR Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xC1 /7 ib"/"VMI" + // Pos:2259 Instruction:"SAR Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xC1 /7 ib"/"VMI" { .Instruction = ND_INS_SAR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 775, + .Mnemonic = 777, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -62813,6 +65234,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -62828,12 +65250,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2254 Instruction:"SAR Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0xC1 /7 ib"/"VMI" + // Pos:2260 Instruction:"SAR Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0xC1 /7 ib"/"VMI" { .Instruction = ND_INS_SAR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 775, + .Mnemonic = 777, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -62842,6 +65264,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -62857,12 +65280,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2255 Instruction:"SAR Bb,Eb,1" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD0 /7"/"VM1" + // Pos:2261 Instruction:"SAR Bb,Eb,1" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD0 /7"/"VM1" { .Instruction = ND_INS_SAR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 775, + .Mnemonic = 777, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -62871,6 +65294,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -62886,12 +65310,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2256 Instruction:"SAR Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD1 /7"/"VM1" + // Pos:2262 Instruction:"SAR Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD1 /7"/"VM1" { .Instruction = ND_INS_SAR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 775, + .Mnemonic = 777, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -62900,6 +65324,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -62915,12 +65340,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2257 Instruction:"SAR Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0xD1 /7"/"VM1" + // Pos:2263 Instruction:"SAR Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0xD1 /7"/"VM1" { .Instruction = ND_INS_SAR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 775, + .Mnemonic = 777, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -62929,6 +65354,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -62944,12 +65370,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2258 Instruction:"SAR Bb,Eb,CL" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD2 /7"/"VMC" + // Pos:2264 Instruction:"SAR Bb,Eb,CL" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD2 /7"/"VMC" { .Instruction = ND_INS_SAR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 775, + .Mnemonic = 777, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -62958,6 +65384,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -62973,12 +65400,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2259 Instruction:"SAR Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD3 /7"/"VMC" + // Pos:2265 Instruction:"SAR Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD3 /7"/"VMC" { .Instruction = ND_INS_SAR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 775, + .Mnemonic = 777, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -62987,6 +65414,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -63002,12 +65430,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2260 Instruction:"SAR Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0xD3 /7"/"VMC" + // Pos:2266 Instruction:"SAR Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0xD3 /7"/"VMC" { .Instruction = ND_INS_SAR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 775, + .Mnemonic = 777, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -63016,6 +65444,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -63031,12 +65460,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2261 Instruction:"SAR Bb,Eb,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xC0 /7 ib"/"VMI" + // Pos:2267 Instruction:"SAR Bb,Eb,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xC0 /7 ib"/"VMI" { .Instruction = ND_INS_SAR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 775, + .Mnemonic = 777, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -63045,6 +65474,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -63059,12 +65489,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2262 Instruction:"SAR Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xC1 /7 ib"/"VMI" + // Pos:2268 Instruction:"SAR Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xC1 /7 ib"/"VMI" { .Instruction = ND_INS_SAR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 775, + .Mnemonic = 777, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -63073,6 +65503,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -63087,12 +65518,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2263 Instruction:"SAR Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0xC1 /7 ib"/"VMI" + // Pos:2269 Instruction:"SAR Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0xC1 /7 ib"/"VMI" { .Instruction = ND_INS_SAR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 775, + .Mnemonic = 777, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -63101,6 +65532,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -63115,12 +65547,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2264 Instruction:"SAR Bb,Eb,1" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD0 /7"/"VM1" + // Pos:2270 Instruction:"SAR Bb,Eb,1" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD0 /7"/"VM1" { .Instruction = ND_INS_SAR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 775, + .Mnemonic = 777, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -63129,6 +65561,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -63143,12 +65576,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2265 Instruction:"SAR Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD1 /7"/"VM1" + // Pos:2271 Instruction:"SAR Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD1 /7"/"VM1" { .Instruction = ND_INS_SAR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 775, + .Mnemonic = 777, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -63157,6 +65590,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -63171,12 +65605,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2266 Instruction:"SAR Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0xD1 /7"/"VM1" + // Pos:2272 Instruction:"SAR Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0xD1 /7"/"VM1" { .Instruction = ND_INS_SAR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 775, + .Mnemonic = 777, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -63185,6 +65619,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -63199,12 +65634,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2267 Instruction:"SAR Bb,Eb,CL" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD2 /7"/"VMC" + // Pos:2273 Instruction:"SAR Bb,Eb,CL" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD2 /7"/"VMC" { .Instruction = ND_INS_SAR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 775, + .Mnemonic = 777, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -63213,6 +65648,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -63227,12 +65663,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2268 Instruction:"SAR Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD3 /7"/"VMC" + // Pos:2274 Instruction:"SAR Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD3 /7"/"VMC" { .Instruction = ND_INS_SAR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 775, + .Mnemonic = 777, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -63241,6 +65677,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -63255,12 +65692,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2269 Instruction:"SAR Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0xD3 /7"/"VMC" + // Pos:2275 Instruction:"SAR Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0xD3 /7"/"VMC" { .Instruction = ND_INS_SAR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 775, + .Mnemonic = 777, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -63269,6 +65706,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -63283,12 +65721,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2270 Instruction:"SAR Eb,Ib" Encoding:"0xC0 /7 ib"/"MI" + // Pos:2276 Instruction:"SAR Eb,Ib" Encoding:"0xC0 /7 ib"/"MI" { .Instruction = ND_INS_SAR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_I86, - .Mnemonic = 775, + .Mnemonic = 777, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -63297,6 +65735,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -63311,12 +65750,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2271 Instruction:"SAR Ev,Ib" Encoding:"0xC1 /7 ib"/"MI" + // Pos:2277 Instruction:"SAR Ev,Ib" Encoding:"0xC1 /7 ib"/"MI" { .Instruction = ND_INS_SAR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_I86, - .Mnemonic = 775, + .Mnemonic = 777, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -63325,6 +65764,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -63339,12 +65779,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2272 Instruction:"SAR Eb,1" Encoding:"0xD0 /7"/"M1" + // Pos:2278 Instruction:"SAR Eb,1" Encoding:"0xD0 /7"/"M1" { .Instruction = ND_INS_SAR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_I86, - .Mnemonic = 775, + .Mnemonic = 777, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -63353,6 +65793,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -63367,12 +65808,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2273 Instruction:"SAR Ev,1" Encoding:"0xD1 /7"/"M1" + // Pos:2279 Instruction:"SAR Ev,1" Encoding:"0xD1 /7"/"M1" { .Instruction = ND_INS_SAR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_I86, - .Mnemonic = 775, + .Mnemonic = 777, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -63381,6 +65822,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -63395,12 +65837,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2274 Instruction:"SAR Eb,CL" Encoding:"0xD2 /7"/"MC" + // Pos:2280 Instruction:"SAR Eb,CL" Encoding:"0xD2 /7"/"MC" { .Instruction = ND_INS_SAR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_I86, - .Mnemonic = 775, + .Mnemonic = 777, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -63409,6 +65851,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -63423,12 +65866,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2275 Instruction:"SAR Ev,CL" Encoding:"0xD3 /7"/"MC" + // Pos:2281 Instruction:"SAR Ev,CL" Encoding:"0xD3 /7"/"MC" { .Instruction = ND_INS_SAR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_I86, - .Mnemonic = 775, + .Mnemonic = 777, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -63437,6 +65880,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -63451,12 +65895,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2276 Instruction:"SARX Gy,Ey,By" Encoding:"evex m:2 p:2 l:0 nf:0 0xF7 /r"/"RMV" + // Pos:2282 Instruction:"SARX Gy,Ey,By" Encoding:"evex m:2 p:2 l:0 nf:0 0xF7 /r"/"RMV" { .Instruction = ND_INS_SARX, .Category = ND_CAT_BMI2, .IsaSet = ND_SET_APX_F, - .Mnemonic = 776, + .Mnemonic = 778, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -63465,6 +65909,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_BMI, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -63479,12 +65924,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2277 Instruction:"SARX Gy,Ey,By" Encoding:"vex m:2 p:2 l:0 w:x 0xF7 /r"/"RMV" + // Pos:2283 Instruction:"SARX Gy,Ey,By" Encoding:"vex m:2 p:2 l:0 w:x 0xF7 /r"/"RMV" { .Instruction = ND_INS_SARX, .Category = ND_CAT_BMI2, .IsaSet = ND_SET_BMI2, - .Mnemonic = 776, + .Mnemonic = 778, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -63493,6 +65938,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_13, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -63507,12 +65953,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2278 Instruction:"SAVEPREVSSP" Encoding:"0xF3 0x0F 0x01 /0xEA"/"" + // Pos:2284 Instruction:"SAVEPREVSSP" Encoding:"0xF3 0x0F 0x01 /0xEA"/"" { .Instruction = ND_INS_SAVEPREVSSP, .Category = ND_CAT_CET, .IsaSet = ND_SET_CET_SS, - .Mnemonic = 777, + .Mnemonic = 779, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -63521,6 +65967,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -63534,12 +65981,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2279 Instruction:"SBB Eb,Gb" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x18 /r"/"MR" + // Pos:2285 Instruction:"SBB Eb,Gb" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x18 /r"/"MR" { .Instruction = ND_INS_SBB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 778, + .Mnemonic = 780, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -63548,6 +65995,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -63562,12 +66010,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2280 Instruction:"SBB Ev,Gv" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x19 /r"/"MR" + // Pos:2286 Instruction:"SBB Ev,Gv" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x19 /r"/"MR" { .Instruction = ND_INS_SBB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 778, + .Mnemonic = 780, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -63576,6 +66024,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -63590,12 +66039,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2281 Instruction:"SBB Ev,Gv" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0x19 /r"/"MR" + // Pos:2287 Instruction:"SBB Ev,Gv" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0x19 /r"/"MR" { .Instruction = ND_INS_SBB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 778, + .Mnemonic = 780, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -63604,6 +66053,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -63618,12 +66068,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2282 Instruction:"SBB Gb,Eb" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x1A /r"/"RM" + // Pos:2288 Instruction:"SBB Gb,Eb" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x1A /r"/"RM" { .Instruction = ND_INS_SBB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 778, + .Mnemonic = 780, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -63632,6 +66082,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -63646,12 +66097,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2283 Instruction:"SBB Gv,Ev" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x1B /r"/"RM" + // Pos:2289 Instruction:"SBB Gv,Ev" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x1B /r"/"RM" { .Instruction = ND_INS_SBB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 778, + .Mnemonic = 780, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -63660,6 +66111,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -63674,12 +66126,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2284 Instruction:"SBB Gv,Ev" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0x1B /r"/"RM" + // Pos:2290 Instruction:"SBB Gv,Ev" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0x1B /r"/"RM" { .Instruction = ND_INS_SBB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 778, + .Mnemonic = 780, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -63688,6 +66140,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -63702,12 +66155,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2285 Instruction:"SBB Eb,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x80 /3 ib"/"MI" + // Pos:2291 Instruction:"SBB Eb,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x80 /3 ib"/"MI" { .Instruction = ND_INS_SBB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 778, + .Mnemonic = 780, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -63716,6 +66169,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -63730,12 +66184,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2286 Instruction:"SBB Ev,Iz" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x81 /3 iz"/"MI" + // Pos:2292 Instruction:"SBB Ev,Iz" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x81 /3 iz"/"MI" { .Instruction = ND_INS_SBB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 778, + .Mnemonic = 780, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -63744,6 +66198,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -63758,12 +66213,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2287 Instruction:"SBB Ev,Iz" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0x81 /3 iz"/"MI" + // Pos:2293 Instruction:"SBB Ev,Iz" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0x81 /3 iz"/"MI" { .Instruction = ND_INS_SBB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 778, + .Mnemonic = 780, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -63772,6 +66227,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -63786,12 +66242,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2288 Instruction:"SBB Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x83 /3 ib"/"MI" + // Pos:2294 Instruction:"SBB Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x83 /3 ib"/"MI" { .Instruction = ND_INS_SBB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 778, + .Mnemonic = 780, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -63800,6 +66256,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -63814,12 +66271,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2289 Instruction:"SBB Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0x83 /3 ib"/"MI" + // Pos:2295 Instruction:"SBB Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0x83 /3 ib"/"MI" { .Instruction = ND_INS_SBB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 778, + .Mnemonic = 780, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -63828,6 +66285,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -63842,12 +66300,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2290 Instruction:"SBB Bb,Eb,Gb" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x18 /r"/"VMR" + // Pos:2296 Instruction:"SBB Bb,Eb,Gb" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x18 /r"/"VMR" { .Instruction = ND_INS_SBB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 778, + .Mnemonic = 780, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -63856,6 +66314,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -63871,12 +66330,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2291 Instruction:"SBB Bv,Ev,Gv" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x19 /r"/"VMR" + // Pos:2297 Instruction:"SBB Bv,Ev,Gv" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x19 /r"/"VMR" { .Instruction = ND_INS_SBB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 778, + .Mnemonic = 780, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -63885,6 +66344,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -63900,12 +66360,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2292 Instruction:"SBB Bv,Ev,Gv" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0x19 /r"/"VMR" + // Pos:2298 Instruction:"SBB Bv,Ev,Gv" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0x19 /r"/"VMR" { .Instruction = ND_INS_SBB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 778, + .Mnemonic = 780, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -63914,6 +66374,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -63929,12 +66390,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2293 Instruction:"SBB Bb,Gb,Eb" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x1A /r"/"VRM" + // Pos:2299 Instruction:"SBB Bb,Gb,Eb" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x1A /r"/"VRM" { .Instruction = ND_INS_SBB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 778, + .Mnemonic = 780, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -63943,6 +66404,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -63958,12 +66420,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2294 Instruction:"SBB Bv,Gv,Ev" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x1B /r"/"VRM" + // Pos:2300 Instruction:"SBB Bv,Gv,Ev" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x1B /r"/"VRM" { .Instruction = ND_INS_SBB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 778, + .Mnemonic = 780, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -63972,6 +66434,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -63987,12 +66450,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2295 Instruction:"SBB Bv,Gv,Ev" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0x1B /r"/"VRM" + // Pos:2301 Instruction:"SBB Bv,Gv,Ev" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0x1B /r"/"VRM" { .Instruction = ND_INS_SBB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 778, + .Mnemonic = 780, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -64001,6 +66464,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -64016,12 +66480,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2296 Instruction:"SBB Bb,Eb,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x80 /3 ib"/"VMI" + // Pos:2302 Instruction:"SBB Bb,Eb,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x80 /3 ib"/"VMI" { .Instruction = ND_INS_SBB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 778, + .Mnemonic = 780, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -64030,6 +66494,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -64045,12 +66510,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2297 Instruction:"SBB Bv,Ev,Iz" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x81 /3 iz"/"VMI" + // Pos:2303 Instruction:"SBB Bv,Ev,Iz" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x81 /3 iz"/"VMI" { .Instruction = ND_INS_SBB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 778, + .Mnemonic = 780, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -64059,6 +66524,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -64074,12 +66540,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2298 Instruction:"SBB Bv,Ev,Iz" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0x81 /3 iz"/"VMI" + // Pos:2304 Instruction:"SBB Bv,Ev,Iz" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0x81 /3 iz"/"VMI" { .Instruction = ND_INS_SBB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 778, + .Mnemonic = 780, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -64088,6 +66554,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -64103,12 +66570,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2299 Instruction:"SBB Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x83 /3 ib"/"VMI" + // Pos:2305 Instruction:"SBB Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x83 /3 ib"/"VMI" { .Instruction = ND_INS_SBB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 778, + .Mnemonic = 780, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -64117,6 +66584,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -64132,12 +66600,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2300 Instruction:"SBB Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0x83 /3 ib"/"VMI" + // Pos:2306 Instruction:"SBB Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0x83 /3 ib"/"VMI" { .Instruction = ND_INS_SBB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 778, + .Mnemonic = 780, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -64146,6 +66614,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -64161,12 +66630,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2301 Instruction:"SBB Eb,Gb" Encoding:"0x18 /r"/"MR" + // Pos:2307 Instruction:"SBB Eb,Gb" Encoding:"0x18 /r"/"MR" { .Instruction = ND_INS_SBB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_I86, - .Mnemonic = 778, + .Mnemonic = 780, .ValidPrefixes = ND_PREF_HLE|ND_PREF_LOCK, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -64175,6 +66644,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -64189,12 +66659,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2302 Instruction:"SBB Ev,Gv" Encoding:"0x19 /r"/"MR" + // Pos:2308 Instruction:"SBB Ev,Gv" Encoding:"0x19 /r"/"MR" { .Instruction = ND_INS_SBB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_I86, - .Mnemonic = 778, + .Mnemonic = 780, .ValidPrefixes = ND_PREF_HLE|ND_PREF_LOCK, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -64203,6 +66673,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -64217,12 +66688,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2303 Instruction:"SBB Gb,Eb" Encoding:"0x1A /r"/"RM" + // Pos:2309 Instruction:"SBB Gb,Eb" Encoding:"0x1A /r"/"RM" { .Instruction = ND_INS_SBB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_I86, - .Mnemonic = 778, + .Mnemonic = 780, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -64231,6 +66702,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -64245,12 +66717,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2304 Instruction:"SBB Gv,Ev" Encoding:"0x1B /r"/"RM" + // Pos:2310 Instruction:"SBB Gv,Ev" Encoding:"0x1B /r"/"RM" { .Instruction = ND_INS_SBB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_I86, - .Mnemonic = 778, + .Mnemonic = 780, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -64259,6 +66731,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -64273,12 +66746,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2305 Instruction:"SBB AL,Ib" Encoding:"0x1C ib"/"I" + // Pos:2311 Instruction:"SBB AL,Ib" Encoding:"0x1C ib"/"I" { .Instruction = ND_INS_SBB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_I86, - .Mnemonic = 778, + .Mnemonic = 780, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -64287,6 +66760,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -64301,12 +66775,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2306 Instruction:"SBB rAX,Iz" Encoding:"0x1D iz"/"I" + // Pos:2312 Instruction:"SBB rAX,Iz" Encoding:"0x1D iz"/"I" { .Instruction = ND_INS_SBB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_I86, - .Mnemonic = 778, + .Mnemonic = 780, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -64315,6 +66789,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -64329,12 +66804,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2307 Instruction:"SBB Eb,Ib" Encoding:"0x80 /3 ib"/"MI" + // Pos:2313 Instruction:"SBB Eb,Ib" Encoding:"0x80 /3 ib"/"MI" { .Instruction = ND_INS_SBB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_I86, - .Mnemonic = 778, + .Mnemonic = 780, .ValidPrefixes = ND_PREF_HLE|ND_PREF_LOCK, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -64343,6 +66818,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -64357,12 +66833,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2308 Instruction:"SBB Ev,Iz" Encoding:"0x81 /3 iz"/"MI" + // Pos:2314 Instruction:"SBB Ev,Iz" Encoding:"0x81 /3 iz"/"MI" { .Instruction = ND_INS_SBB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_I86, - .Mnemonic = 778, + .Mnemonic = 780, .ValidPrefixes = ND_PREF_HLE|ND_PREF_LOCK, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -64371,6 +66847,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -64385,12 +66862,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2309 Instruction:"SBB Eb,Ib" Encoding:"0x82 /3 iz"/"MI" + // Pos:2315 Instruction:"SBB Eb,Ib" Encoding:"0x82 /3 iz"/"MI" { .Instruction = ND_INS_SBB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_I86, - .Mnemonic = 778, + .Mnemonic = 780, .ValidPrefixes = ND_PREF_HLE|ND_PREF_LOCK, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_REAL|ND_MOD_V8086|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -64399,6 +66876,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -64413,12 +66891,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2310 Instruction:"SBB Ev,Ib" Encoding:"0x83 /3 ib"/"MI" + // Pos:2316 Instruction:"SBB Ev,Ib" Encoding:"0x83 /3 ib"/"MI" { .Instruction = ND_INS_SBB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_I86, - .Mnemonic = 778, + .Mnemonic = 780, .ValidPrefixes = ND_PREF_HLE|ND_PREF_LOCK, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -64427,6 +66905,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -64441,12 +66920,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2311 Instruction:"SCASB AL,Yb" Encoding:"0xAE"/"" + // Pos:2317 Instruction:"SCASB AL,Yb" Encoding:"0xAE"/"" { .Instruction = ND_INS_SCAS, .Category = ND_CAT_STRINGOP, .IsaSet = ND_SET_I86, - .Mnemonic = 779, + .Mnemonic = 781, .ValidPrefixes = ND_PREF_REPC, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -64455,6 +66934,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_DF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -64470,12 +66950,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2312 Instruction:"SCASB AL,Yb" Encoding:"rep 0xAE"/"" + // Pos:2318 Instruction:"SCASB AL,Yb" Encoding:"rep 0xAE"/"" { .Instruction = ND_INS_SCAS, .Category = ND_CAT_STRINGOP, .IsaSet = ND_SET_I86, - .Mnemonic = 779, + .Mnemonic = 781, .ValidPrefixes = ND_PREF_REPC, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -64484,6 +66964,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF|NDR_RFLAG_DF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -64500,12 +66981,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2313 Instruction:"SCASD EAX,Yv" Encoding:"ds32 0xAF"/"" + // Pos:2319 Instruction:"SCASD EAX,Yv" Encoding:"ds32 0xAF"/"" { .Instruction = ND_INS_SCAS, .Category = ND_CAT_STRINGOP, .IsaSet = ND_SET_I86, - .Mnemonic = 780, + .Mnemonic = 782, .ValidPrefixes = ND_PREF_REPC, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -64514,6 +66995,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_DF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -64529,12 +67011,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2314 Instruction:"SCASD EAX,Yv" Encoding:"rep ds32 0xAF"/"" + // Pos:2320 Instruction:"SCASD EAX,Yv" Encoding:"rep ds32 0xAF"/"" { .Instruction = ND_INS_SCAS, .Category = ND_CAT_STRINGOP, .IsaSet = ND_SET_I86, - .Mnemonic = 780, + .Mnemonic = 782, .ValidPrefixes = ND_PREF_REPC, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -64543,6 +67025,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF|NDR_RFLAG_DF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -64559,12 +67042,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2315 Instruction:"SCASQ RAX,Yv" Encoding:"ds64 0xAF"/"" + // Pos:2321 Instruction:"SCASQ RAX,Yv" Encoding:"ds64 0xAF"/"" { .Instruction = ND_INS_SCAS, .Category = ND_CAT_STRINGOP, .IsaSet = ND_SET_I86, - .Mnemonic = 781, + .Mnemonic = 783, .ValidPrefixes = ND_PREF_REPC, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -64573,6 +67056,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_DF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -64588,12 +67072,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2316 Instruction:"SCASQ RAX,Yv" Encoding:"rep ds64 0xAF"/"" + // Pos:2322 Instruction:"SCASQ RAX,Yv" Encoding:"rep ds64 0xAF"/"" { .Instruction = ND_INS_SCAS, .Category = ND_CAT_STRINGOP, .IsaSet = ND_SET_I86, - .Mnemonic = 781, + .Mnemonic = 783, .ValidPrefixes = ND_PREF_REPC, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -64602,6 +67086,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF|NDR_RFLAG_DF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -64618,12 +67103,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2317 Instruction:"SCASW AX,Yv" Encoding:"ds16 0xAF"/"" + // Pos:2323 Instruction:"SCASW AX,Yv" Encoding:"ds16 0xAF"/"" { .Instruction = ND_INS_SCAS, .Category = ND_CAT_STRINGOP, .IsaSet = ND_SET_I86, - .Mnemonic = 782, + .Mnemonic = 784, .ValidPrefixes = ND_PREF_REPC, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -64632,6 +67117,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_DF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -64647,12 +67133,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2318 Instruction:"SCASW AX,Yv" Encoding:"rep ds16 0xAF"/"" + // Pos:2324 Instruction:"SCASW AX,Yv" Encoding:"rep ds16 0xAF"/"" { .Instruction = ND_INS_SCAS, .Category = ND_CAT_STRINGOP, .IsaSet = ND_SET_I86, - .Mnemonic = 782, + .Mnemonic = 784, .ValidPrefixes = ND_PREF_REPC, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -64661,6 +67147,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF|NDR_RFLAG_DF, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -64677,12 +67164,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2319 Instruction:"SEAMCALL" Encoding:"0x66 0x0F 0x01 /0xCF"/"" + // Pos:2325 Instruction:"SEAMCALL" Encoding:"0x66 0x0F 0x01 /0xCF"/"" { .Instruction = ND_INS_SEAMCALL, .Category = ND_CAT_TDX, .IsaSet = ND_SET_TDX, - .Mnemonic = 783, + .Mnemonic = 785, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXN_SEAM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -64691,6 +67178,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .SetFlags = 0, @@ -64703,12 +67191,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2320 Instruction:"SEAMOPS" Encoding:"0x66 0x0F 0x01 /0xCE"/"" + // Pos:2326 Instruction:"SEAMOPS" Encoding:"0x66 0x0F 0x01 /0xCE"/"" { .Instruction = ND_INS_SEAMOPS, .Category = ND_CAT_TDX, .IsaSet = ND_SET_TDX, - .Mnemonic = 784, + .Mnemonic = 786, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_LONG|ND_MOD_VMXR_SEAM|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -64717,6 +67205,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -64733,12 +67222,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2321 Instruction:"SEAMRET" Encoding:"0x66 0x0F 0x01 /0xCD"/"" + // Pos:2327 Instruction:"SEAMRET" Encoding:"0x66 0x0F 0x01 /0xCD"/"" { .Instruction = ND_INS_SEAMRET, .Category = ND_CAT_TDX, .IsaSet = ND_SET_TDX, - .Mnemonic = 785, + .Mnemonic = 787, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_LONG|ND_MOD_VMXR_SEAM|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -64747,6 +67236,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .SetFlags = 0, @@ -64759,12 +67249,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2322 Instruction:"SENDUIPI Rq" Encoding:"0xF3 0x0F 0xC7 /6:reg"/"M" + // Pos:2328 Instruction:"SENDUIPI Rq" Encoding:"0xF3 0x0F 0xC7 /6:reg"/"M" { .Instruction = ND_INS_SENDUIPI, .Category = ND_CAT_UINTR, .IsaSet = ND_SET_UINTR, - .Mnemonic = 786, + .Mnemonic = 788, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -64773,6 +67263,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -64785,12 +67276,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2323 Instruction:"SERIALIZE" Encoding:"NP 0x0F 0x01 /0xE8"/"" + // Pos:2329 Instruction:"SERIALIZE" Encoding:"NP 0x0F 0x01 /0xE8"/"" { .Instruction = ND_INS_SERIALIZE, .Category = ND_CAT_MISC, .IsaSet = ND_SET_SERIALIZE, - .Mnemonic = 787, + .Mnemonic = 789, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -64799,6 +67290,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -64811,12 +67303,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2324 Instruction:"SETBE Eb" Encoding:"evex m:4 l:0 nf:0 p:3 0x46 /r"/"M" + // Pos:2330 Instruction:"SETBE Eb" Encoding:"evex m:4 l:0 nf:0 p:3 0x46 /r"/"M" { .Instruction = ND_INS_SETcc, .Category = ND_CAT_BITBYTE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 788, + .Mnemonic = 790, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ZU, @@ -64825,6 +67317,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -64838,12 +67331,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2325 Instruction:"SETBE Eb" Encoding:"0x0F 0x96 /r"/"M" + // Pos:2331 Instruction:"SETBE Eb" Encoding:"0x0F 0x96 /r"/"M" { .Instruction = ND_INS_SETcc, .Category = ND_CAT_BITBYTE, .IsaSet = ND_SET_I386, - .Mnemonic = 788, + .Mnemonic = 790, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -64852,6 +67345,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -64865,12 +67359,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2326 Instruction:"SETC Eb" Encoding:"evex m:4 l:0 nf:0 p:3 0x42 /r"/"M" + // Pos:2332 Instruction:"SETC Eb" Encoding:"evex m:4 l:0 nf:0 p:3 0x42 /r"/"M" { .Instruction = ND_INS_SETcc, .Category = ND_CAT_BITBYTE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 789, + .Mnemonic = 791, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ZU, @@ -64879,6 +67373,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -64892,12 +67387,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2327 Instruction:"SETC Eb" Encoding:"0x0F 0x92 /r"/"M" + // Pos:2333 Instruction:"SETC Eb" Encoding:"0x0F 0x92 /r"/"M" { .Instruction = ND_INS_SETcc, .Category = ND_CAT_BITBYTE, .IsaSet = ND_SET_I386, - .Mnemonic = 789, + .Mnemonic = 791, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -64906,6 +67401,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -64919,12 +67415,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2328 Instruction:"SETL Eb" Encoding:"evex m:4 l:0 nf:0 p:3 0x4C /r"/"M" + // Pos:2334 Instruction:"SETL Eb" Encoding:"evex m:4 l:0 nf:0 p:3 0x4C /r"/"M" { .Instruction = ND_INS_SETcc, .Category = ND_CAT_BITBYTE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 790, + .Mnemonic = 792, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ZU, @@ -64933,6 +67429,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -64946,12 +67443,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2329 Instruction:"SETL Eb" Encoding:"0x0F 0x9C /r"/"M" + // Pos:2335 Instruction:"SETL Eb" Encoding:"0x0F 0x9C /r"/"M" { .Instruction = ND_INS_SETcc, .Category = ND_CAT_BITBYTE, .IsaSet = ND_SET_I386, - .Mnemonic = 790, + .Mnemonic = 792, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -64960,6 +67457,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -64973,12 +67471,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2330 Instruction:"SETLE Eb" Encoding:"evex m:4 l:0 nf:0 p:3 0x4E /r"/"M" + // Pos:2336 Instruction:"SETLE Eb" Encoding:"evex m:4 l:0 nf:0 p:3 0x4E /r"/"M" { .Instruction = ND_INS_SETcc, .Category = ND_CAT_BITBYTE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 791, + .Mnemonic = 793, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ZU, @@ -64987,6 +67485,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -65000,12 +67499,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2331 Instruction:"SETLE Eb" Encoding:"0x0F 0x9E /r"/"M" + // Pos:2337 Instruction:"SETLE Eb" Encoding:"0x0F 0x9E /r"/"M" { .Instruction = ND_INS_SETcc, .Category = ND_CAT_BITBYTE, .IsaSet = ND_SET_I386, - .Mnemonic = 791, + .Mnemonic = 793, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -65014,6 +67513,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -65027,12 +67527,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2332 Instruction:"SETNBE Eb" Encoding:"evex m:4 l:0 nf:0 p:3 0x47 /r"/"M" + // Pos:2338 Instruction:"SETNBE Eb" Encoding:"evex m:4 l:0 nf:0 p:3 0x47 /r"/"M" { .Instruction = ND_INS_SETcc, .Category = ND_CAT_BITBYTE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 792, + .Mnemonic = 794, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ZU, @@ -65041,6 +67541,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -65054,12 +67555,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2333 Instruction:"SETNBE Eb" Encoding:"0x0F 0x97 /r"/"M" + // Pos:2339 Instruction:"SETNBE Eb" Encoding:"0x0F 0x97 /r"/"M" { .Instruction = ND_INS_SETcc, .Category = ND_CAT_BITBYTE, .IsaSet = ND_SET_I386, - .Mnemonic = 792, + .Mnemonic = 794, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -65068,6 +67569,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -65081,12 +67583,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2334 Instruction:"SETNC Eb" Encoding:"evex m:4 l:0 nf:0 p:3 0x43 /r"/"M" + // Pos:2340 Instruction:"SETNC Eb" Encoding:"evex m:4 l:0 nf:0 p:3 0x43 /r"/"M" { .Instruction = ND_INS_SETcc, .Category = ND_CAT_BITBYTE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 793, + .Mnemonic = 795, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ZU, @@ -65095,6 +67597,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -65108,12 +67611,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2335 Instruction:"SETNC Eb" Encoding:"0x0F 0x93 /r"/"M" + // Pos:2341 Instruction:"SETNC Eb" Encoding:"0x0F 0x93 /r"/"M" { .Instruction = ND_INS_SETcc, .Category = ND_CAT_BITBYTE, .IsaSet = ND_SET_I386, - .Mnemonic = 793, + .Mnemonic = 795, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -65122,6 +67625,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_CF, .ModifiedFlags = 0, .SetFlags = 0, @@ -65135,12 +67639,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2336 Instruction:"SETNL Eb" Encoding:"evex m:4 l:0 nf:0 p:3 0x4D /r"/"M" + // Pos:2342 Instruction:"SETNL Eb" Encoding:"evex m:4 l:0 nf:0 p:3 0x4D /r"/"M" { .Instruction = ND_INS_SETcc, .Category = ND_CAT_BITBYTE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 794, + .Mnemonic = 796, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ZU, @@ -65149,6 +67653,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -65162,12 +67667,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2337 Instruction:"SETNL Eb" Encoding:"0x0F 0x9D /r"/"M" + // Pos:2343 Instruction:"SETNL Eb" Encoding:"0x0F 0x9D /r"/"M" { .Instruction = ND_INS_SETcc, .Category = ND_CAT_BITBYTE, .IsaSet = ND_SET_I386, - .Mnemonic = 794, + .Mnemonic = 796, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -65176,6 +67681,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -65189,12 +67695,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2338 Instruction:"SETNLE Eb" Encoding:"evex m:4 l:0 nf:0 p:3 0x4F /r"/"M" + // Pos:2344 Instruction:"SETNLE Eb" Encoding:"evex m:4 l:0 nf:0 p:3 0x4F /r"/"M" { .Instruction = ND_INS_SETcc, .Category = ND_CAT_BITBYTE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 795, + .Mnemonic = 797, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ZU, @@ -65203,6 +67709,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -65216,12 +67723,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2339 Instruction:"SETNLE Eb" Encoding:"0x0F 0x9F /r"/"M" + // Pos:2345 Instruction:"SETNLE Eb" Encoding:"0x0F 0x9F /r"/"M" { .Instruction = ND_INS_SETcc, .Category = ND_CAT_BITBYTE, .IsaSet = ND_SET_I386, - .Mnemonic = 795, + .Mnemonic = 797, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -65230,6 +67737,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF|NDR_RFLAG_ZF|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -65243,12 +67751,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2340 Instruction:"SETNO Eb" Encoding:"evex m:4 l:0 nf:0 p:3 0x41 /r"/"M" + // Pos:2346 Instruction:"SETNO Eb" Encoding:"evex m:4 l:0 nf:0 p:3 0x41 /r"/"M" { .Instruction = ND_INS_SETcc, .Category = ND_CAT_BITBYTE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 796, + .Mnemonic = 798, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ZU, @@ -65257,6 +67765,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -65270,12 +67779,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2341 Instruction:"SETNO Eb" Encoding:"0x0F 0x91 /r"/"M" + // Pos:2347 Instruction:"SETNO Eb" Encoding:"0x0F 0x91 /r"/"M" { .Instruction = ND_INS_SETcc, .Category = ND_CAT_BITBYTE, .IsaSet = ND_SET_I386, - .Mnemonic = 796, + .Mnemonic = 798, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -65284,6 +67793,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -65297,12 +67807,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2342 Instruction:"SETNP Eb" Encoding:"evex m:4 l:0 nf:0 p:3 0x4B /r"/"M" + // Pos:2348 Instruction:"SETNP Eb" Encoding:"evex m:4 l:0 nf:0 p:3 0x4B /r"/"M" { .Instruction = ND_INS_SETcc, .Category = ND_CAT_BITBYTE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 797, + .Mnemonic = 799, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ZU, @@ -65311,6 +67821,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_PF, .ModifiedFlags = 0, .SetFlags = 0, @@ -65324,12 +67835,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2343 Instruction:"SETNP Eb" Encoding:"0x0F 0x9B /r"/"M" + // Pos:2349 Instruction:"SETNP Eb" Encoding:"0x0F 0x9B /r"/"M" { .Instruction = ND_INS_SETcc, .Category = ND_CAT_BITBYTE, .IsaSet = ND_SET_I386, - .Mnemonic = 797, + .Mnemonic = 799, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -65338,6 +67849,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_PF, .ModifiedFlags = 0, .SetFlags = 0, @@ -65351,12 +67863,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2344 Instruction:"SETNS Eb" Encoding:"evex m:4 l:0 nf:0 p:3 0x49 /r"/"M" + // Pos:2350 Instruction:"SETNS Eb" Encoding:"evex m:4 l:0 nf:0 p:3 0x49 /r"/"M" { .Instruction = ND_INS_SETcc, .Category = ND_CAT_BITBYTE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 798, + .Mnemonic = 800, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ZU, @@ -65365,6 +67877,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -65378,12 +67891,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2345 Instruction:"SETNS Eb" Encoding:"0x0F 0x99 /r"/"M" + // Pos:2351 Instruction:"SETNS Eb" Encoding:"0x0F 0x99 /r"/"M" { .Instruction = ND_INS_SETcc, .Category = ND_CAT_BITBYTE, .IsaSet = ND_SET_I386, - .Mnemonic = 798, + .Mnemonic = 800, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -65392,6 +67905,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -65405,12 +67919,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2346 Instruction:"SETNZ Eb" Encoding:"evex m:4 l:0 nf:0 p:3 0x45 /r"/"M" + // Pos:2352 Instruction:"SETNZ Eb" Encoding:"evex m:4 l:0 nf:0 p:3 0x45 /r"/"M" { .Instruction = ND_INS_SETcc, .Category = ND_CAT_BITBYTE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 799, + .Mnemonic = 801, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ZU, @@ -65419,6 +67933,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -65432,12 +67947,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2347 Instruction:"SETNZ Eb" Encoding:"0x0F 0x95 /r"/"M" + // Pos:2353 Instruction:"SETNZ Eb" Encoding:"0x0F 0x95 /r"/"M" { .Instruction = ND_INS_SETcc, .Category = ND_CAT_BITBYTE, .IsaSet = ND_SET_I386, - .Mnemonic = 799, + .Mnemonic = 801, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -65446,6 +67961,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -65459,12 +67975,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2348 Instruction:"SETO Eb" Encoding:"evex m:4 l:0 nf:0 p:3 0x40 /r"/"M" + // Pos:2354 Instruction:"SETO Eb" Encoding:"evex m:4 l:0 nf:0 p:3 0x40 /r"/"M" { .Instruction = ND_INS_SETcc, .Category = ND_CAT_BITBYTE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 800, + .Mnemonic = 802, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ZU, @@ -65473,6 +67989,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -65486,12 +68003,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2349 Instruction:"SETO Eb" Encoding:"0x0F 0x90 /r"/"M" + // Pos:2355 Instruction:"SETO Eb" Encoding:"0x0F 0x90 /r"/"M" { .Instruction = ND_INS_SETcc, .Category = ND_CAT_BITBYTE, .IsaSet = ND_SET_I386, - .Mnemonic = 800, + .Mnemonic = 802, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -65500,6 +68017,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_OF, .ModifiedFlags = 0, .SetFlags = 0, @@ -65513,12 +68031,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2350 Instruction:"SETP Eb" Encoding:"evex m:4 l:0 nf:0 p:3 0x4A /r"/"M" + // Pos:2356 Instruction:"SETP Eb" Encoding:"evex m:4 l:0 nf:0 p:3 0x4A /r"/"M" { .Instruction = ND_INS_SETcc, .Category = ND_CAT_BITBYTE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 801, + .Mnemonic = 803, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ZU, @@ -65527,6 +68045,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_PF, .ModifiedFlags = 0, .SetFlags = 0, @@ -65540,12 +68059,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2351 Instruction:"SETP Eb" Encoding:"0x0F 0x9A /r"/"M" + // Pos:2357 Instruction:"SETP Eb" Encoding:"0x0F 0x9A /r"/"M" { .Instruction = ND_INS_SETcc, .Category = ND_CAT_BITBYTE, .IsaSet = ND_SET_I386, - .Mnemonic = 801, + .Mnemonic = 803, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -65554,6 +68073,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_PF, .ModifiedFlags = 0, .SetFlags = 0, @@ -65567,12 +68087,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2352 Instruction:"SETS Eb" Encoding:"evex m:4 l:0 nf:0 p:3 0x48 /r"/"M" + // Pos:2358 Instruction:"SETS Eb" Encoding:"evex m:4 l:0 nf:0 p:3 0x48 /r"/"M" { .Instruction = ND_INS_SETcc, .Category = ND_CAT_BITBYTE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 802, + .Mnemonic = 804, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ZU, @@ -65581,6 +68101,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -65594,12 +68115,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2353 Instruction:"SETS Eb" Encoding:"0x0F 0x98 /r"/"M" + // Pos:2359 Instruction:"SETS Eb" Encoding:"0x0F 0x98 /r"/"M" { .Instruction = ND_INS_SETcc, .Category = ND_CAT_BITBYTE, .IsaSet = ND_SET_I386, - .Mnemonic = 802, + .Mnemonic = 804, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -65608,6 +68129,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_SF, .ModifiedFlags = 0, .SetFlags = 0, @@ -65621,12 +68143,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2354 Instruction:"SETSSBSY" Encoding:"0xF3 0x0F 0x01 /0xE8"/"" + // Pos:2360 Instruction:"SETSSBSY" Encoding:"0xF3 0x0F 0x01 /0xE8"/"" { .Instruction = ND_INS_SETSSBSY, .Category = ND_CAT_CET, .IsaSet = ND_SET_CET_SS, - .Mnemonic = 803, + .Mnemonic = 805, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -65635,6 +68157,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -65648,12 +68171,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2355 Instruction:"SETZ Eb" Encoding:"evex m:4 l:0 nf:0 p:3 0x44 /r"/"M" + // Pos:2361 Instruction:"SETZ Eb" Encoding:"evex m:4 l:0 nf:0 p:3 0x44 /r"/"M" { .Instruction = ND_INS_SETcc, .Category = ND_CAT_BITBYTE, .IsaSet = ND_SET_APX_F, - .Mnemonic = 804, + .Mnemonic = 806, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ZU, @@ -65662,6 +68185,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -65675,12 +68199,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2356 Instruction:"SETZ Eb" Encoding:"0x0F 0x94 /r"/"M" + // Pos:2362 Instruction:"SETZ Eb" Encoding:"0x0F 0x94 /r"/"M" { .Instruction = ND_INS_SETcc, .Category = ND_CAT_BITBYTE, .IsaSet = ND_SET_I386, - .Mnemonic = 804, + .Mnemonic = 806, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -65689,6 +68213,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_ZF, .ModifiedFlags = 0, .SetFlags = 0, @@ -65702,12 +68227,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2357 Instruction:"SFENCE" Encoding:"NP 0x0F 0xAE /7:reg"/"" + // Pos:2363 Instruction:"SFENCE" Encoding:"NP 0x0F 0xAE /7:reg"/"" { .Instruction = ND_INS_SFENCE, .Category = ND_CAT_MISC, .IsaSet = ND_SET_SSE2, - .Mnemonic = 805, + .Mnemonic = 807, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -65716,6 +68241,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -65728,12 +68254,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2358 Instruction:"SGDT Ms" Encoding:"0x0F 0x01 /0:mem"/"M" + // Pos:2364 Instruction:"SGDT Ms" Encoding:"0x0F 0x01 /0:mem"/"M" { .Instruction = ND_INS_SGDT, .Category = ND_CAT_SYSTEM, .IsaSet = ND_SET_I286REAL, - .Mnemonic = 806, + .Mnemonic = 808, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_REAL|ND_MOD_V8086|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -65742,6 +68268,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -65755,12 +68282,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2359 Instruction:"SHA1MSG1 Vdq,Wdq" Encoding:"NP 0x0F 0x38 0xC9 /r"/"RM" + // Pos:2365 Instruction:"SHA1MSG1 Vdq,Wdq" Encoding:"NP 0x0F 0x38 0xC9 /r"/"RM" { .Instruction = ND_INS_SHA1MSG1, .Category = ND_CAT_SHA, .IsaSet = ND_SET_SHA, - .Mnemonic = 807, + .Mnemonic = 809, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -65769,6 +68296,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -65782,12 +68310,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2360 Instruction:"SHA1MSG2 Vdq,Wdq" Encoding:"NP 0x0F 0x38 0xCA /r"/"RM" + // Pos:2366 Instruction:"SHA1MSG2 Vdq,Wdq" Encoding:"NP 0x0F 0x38 0xCA /r"/"RM" { .Instruction = ND_INS_SHA1MSG2, .Category = ND_CAT_SHA, .IsaSet = ND_SET_SHA, - .Mnemonic = 808, + .Mnemonic = 810, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -65796,6 +68324,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -65809,12 +68338,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2361 Instruction:"SHA1NEXTE Vdq,Wdq" Encoding:"NP 0x0F 0x38 0xC8 /r"/"RM" + // Pos:2367 Instruction:"SHA1NEXTE Vdq,Wdq" Encoding:"NP 0x0F 0x38 0xC8 /r"/"RM" { .Instruction = ND_INS_SHA1NEXTE, .Category = ND_CAT_SHA, .IsaSet = ND_SET_SHA, - .Mnemonic = 809, + .Mnemonic = 811, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -65823,6 +68352,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -65836,12 +68366,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2362 Instruction:"SHA1RNDS4 Vdq,Wdq,Ib" Encoding:"NP 0x0F 0x3A 0xCC /r ib"/"RMI" + // Pos:2368 Instruction:"SHA1RNDS4 Vdq,Wdq,Ib" Encoding:"NP 0x0F 0x3A 0xCC /r ib"/"RMI" { .Instruction = ND_INS_SHA1RNDS4, .Category = ND_CAT_SHA, .IsaSet = ND_SET_SHA, - .Mnemonic = 810, + .Mnemonic = 812, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -65850,6 +68380,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -65864,12 +68395,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2363 Instruction:"SHA256MSG1 Vdq,Wdq" Encoding:"NP 0x0F 0x38 0xCC /r"/"RM" + // Pos:2369 Instruction:"SHA256MSG1 Vdq,Wdq" Encoding:"NP 0x0F 0x38 0xCC /r"/"RM" { .Instruction = ND_INS_SHA256MSG1, .Category = ND_CAT_SHA, .IsaSet = ND_SET_SHA, - .Mnemonic = 811, + .Mnemonic = 813, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -65878,6 +68409,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -65891,12 +68423,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2364 Instruction:"SHA256MSG2 Vdq,Wdq" Encoding:"NP 0x0F 0x38 0xCD /r"/"RM" + // Pos:2370 Instruction:"SHA256MSG2 Vdq,Wdq" Encoding:"NP 0x0F 0x38 0xCD /r"/"RM" { .Instruction = ND_INS_SHA256MSG2, .Category = ND_CAT_SHA, .IsaSet = ND_SET_SHA, - .Mnemonic = 812, + .Mnemonic = 814, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -65905,6 +68437,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -65918,12 +68451,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2365 Instruction:"SHA256RNDS2 Vdq,Wdq" Encoding:"NP 0x0F 0x38 0xCB /r"/"RM" + // Pos:2371 Instruction:"SHA256RNDS2 Vdq,Wdq" Encoding:"NP 0x0F 0x38 0xCB /r"/"RM" { .Instruction = ND_INS_SHA256RNDS2, .Category = ND_CAT_SHA, .IsaSet = ND_SET_SHA, - .Mnemonic = 813, + .Mnemonic = 815, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -65932,6 +68465,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -65946,12 +68480,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2366 Instruction:"SHL Eb,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xC0 /4 ib"/"MI" + // Pos:2372 Instruction:"SHL Eb,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xC0 /4 ib"/"MI" { .Instruction = ND_INS_SHL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 814, + .Mnemonic = 816, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -65960,6 +68494,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -65974,12 +68509,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2367 Instruction:"SHL Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xC1 /4 ib"/"MI" + // Pos:2373 Instruction:"SHL Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xC1 /4 ib"/"MI" { .Instruction = ND_INS_SHL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 814, + .Mnemonic = 816, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -65988,6 +68523,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -66002,12 +68538,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2368 Instruction:"SHL Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xC1 /4 ib"/"MI" + // Pos:2374 Instruction:"SHL Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xC1 /4 ib"/"MI" { .Instruction = ND_INS_SHL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 814, + .Mnemonic = 816, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -66016,6 +68552,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -66030,12 +68567,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2369 Instruction:"SHL Eb,1" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD0 /4"/"M1" + // Pos:2375 Instruction:"SHL Eb,1" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD0 /4"/"M1" { .Instruction = ND_INS_SHL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 814, + .Mnemonic = 816, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -66044,6 +68581,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -66058,12 +68596,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2370 Instruction:"SHL Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD1 /4"/"M1" + // Pos:2376 Instruction:"SHL Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD1 /4"/"M1" { .Instruction = ND_INS_SHL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 814, + .Mnemonic = 816, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -66072,6 +68610,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -66086,12 +68625,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2371 Instruction:"SHL Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xD1 /4"/"M1" + // Pos:2377 Instruction:"SHL Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xD1 /4"/"M1" { .Instruction = ND_INS_SHL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 814, + .Mnemonic = 816, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -66100,6 +68639,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -66114,12 +68654,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2372 Instruction:"SHL Eb,CL" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD2 /4"/"MC" + // Pos:2378 Instruction:"SHL Eb,CL" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD2 /4"/"MC" { .Instruction = ND_INS_SHL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 814, + .Mnemonic = 816, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -66128,6 +68668,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -66142,12 +68683,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2373 Instruction:"SHL Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD3 /4"/"MC" + // Pos:2379 Instruction:"SHL Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD3 /4"/"MC" { .Instruction = ND_INS_SHL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 814, + .Mnemonic = 816, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -66156,6 +68697,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -66170,12 +68712,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2374 Instruction:"SHL Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xD3 /4"/"MC" + // Pos:2380 Instruction:"SHL Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xD3 /4"/"MC" { .Instruction = ND_INS_SHL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 814, + .Mnemonic = 816, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -66184,6 +68726,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -66198,12 +68741,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2375 Instruction:"SHL Eb,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xC0 /4 ib"/"MI" + // Pos:2381 Instruction:"SHL Eb,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xC0 /4 ib"/"MI" { .Instruction = ND_INS_SHL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 814, + .Mnemonic = 816, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -66212,6 +68755,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -66225,12 +68769,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2376 Instruction:"SHL Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xC1 /4 ib"/"MI" + // Pos:2382 Instruction:"SHL Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xC1 /4 ib"/"MI" { .Instruction = ND_INS_SHL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 814, + .Mnemonic = 816, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -66239,6 +68783,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -66252,12 +68797,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2377 Instruction:"SHL Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xC1 /4 ib"/"MI" + // Pos:2383 Instruction:"SHL Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xC1 /4 ib"/"MI" { .Instruction = ND_INS_SHL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 814, + .Mnemonic = 816, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -66266,6 +68811,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -66279,12 +68825,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2378 Instruction:"SHL Eb,1" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD0 /4"/"M1" + // Pos:2384 Instruction:"SHL Eb,1" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD0 /4"/"M1" { .Instruction = ND_INS_SHL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 814, + .Mnemonic = 816, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -66293,6 +68839,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -66306,12 +68853,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2379 Instruction:"SHL Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD1 /4"/"M1" + // Pos:2385 Instruction:"SHL Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD1 /4"/"M1" { .Instruction = ND_INS_SHL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 814, + .Mnemonic = 816, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -66320,6 +68867,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -66333,12 +68881,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2380 Instruction:"SHL Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xD1 /4"/"M1" + // Pos:2386 Instruction:"SHL Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xD1 /4"/"M1" { .Instruction = ND_INS_SHL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 814, + .Mnemonic = 816, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -66347,6 +68895,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -66360,12 +68909,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2381 Instruction:"SHL Eb,CL" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD2 /4"/"MC" + // Pos:2387 Instruction:"SHL Eb,CL" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD2 /4"/"MC" { .Instruction = ND_INS_SHL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 814, + .Mnemonic = 816, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -66374,6 +68923,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -66387,12 +68937,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2382 Instruction:"SHL Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD3 /4"/"MC" + // Pos:2388 Instruction:"SHL Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD3 /4"/"MC" { .Instruction = ND_INS_SHL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 814, + .Mnemonic = 816, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -66401,6 +68951,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -66414,12 +68965,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2383 Instruction:"SHL Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xD3 /4"/"MC" + // Pos:2389 Instruction:"SHL Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xD3 /4"/"MC" { .Instruction = ND_INS_SHL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 814, + .Mnemonic = 816, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -66428,6 +68979,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -66441,12 +68993,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2384 Instruction:"SHL Bb,Eb,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xC0 /4 ib"/"VMI" + // Pos:2390 Instruction:"SHL Bb,Eb,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xC0 /4 ib"/"VMI" { .Instruction = ND_INS_SHL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 814, + .Mnemonic = 816, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -66455,6 +69007,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -66470,12 +69023,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2385 Instruction:"SHL Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xC1 /4 ib"/"VMI" + // Pos:2391 Instruction:"SHL Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xC1 /4 ib"/"VMI" { .Instruction = ND_INS_SHL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 814, + .Mnemonic = 816, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -66484,6 +69037,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -66499,12 +69053,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2386 Instruction:"SHL Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0xC1 /4 ib"/"VMI" + // Pos:2392 Instruction:"SHL Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0xC1 /4 ib"/"VMI" { .Instruction = ND_INS_SHL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 814, + .Mnemonic = 816, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -66513,6 +69067,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -66528,12 +69083,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2387 Instruction:"SHL Bb,Eb,1" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD0 /4"/"VM1" + // Pos:2393 Instruction:"SHL Bb,Eb,1" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD0 /4"/"VM1" { .Instruction = ND_INS_SHL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 814, + .Mnemonic = 816, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -66542,6 +69097,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -66557,12 +69113,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2388 Instruction:"SHL Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD1 /4"/"VM1" + // Pos:2394 Instruction:"SHL Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD1 /4"/"VM1" { .Instruction = ND_INS_SHL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 814, + .Mnemonic = 816, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -66571,6 +69127,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -66586,12 +69143,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2389 Instruction:"SHL Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0xD1 /4"/"VM1" + // Pos:2395 Instruction:"SHL Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0xD1 /4"/"VM1" { .Instruction = ND_INS_SHL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 814, + .Mnemonic = 816, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -66600,6 +69157,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -66615,12 +69173,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2390 Instruction:"SHL Bb,Eb,CL" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD2 /4"/"VMC" + // Pos:2396 Instruction:"SHL Bb,Eb,CL" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD2 /4"/"VMC" { .Instruction = ND_INS_SHL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 814, + .Mnemonic = 816, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -66629,6 +69187,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -66644,12 +69203,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2391 Instruction:"SHL Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD3 /4"/"VMC" + // Pos:2397 Instruction:"SHL Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD3 /4"/"VMC" { .Instruction = ND_INS_SHL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 814, + .Mnemonic = 816, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -66658,6 +69217,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -66673,12 +69233,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2392 Instruction:"SHL Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0xD3 /4"/"VMC" + // Pos:2398 Instruction:"SHL Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0xD3 /4"/"VMC" { .Instruction = ND_INS_SHL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 814, + .Mnemonic = 816, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -66687,6 +69247,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -66702,12 +69263,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2393 Instruction:"SHL Bb,Eb,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xC0 /4 ib"/"VMI" + // Pos:2399 Instruction:"SHL Bb,Eb,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xC0 /4 ib"/"VMI" { .Instruction = ND_INS_SHL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 814, + .Mnemonic = 816, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -66716,6 +69277,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -66730,12 +69292,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2394 Instruction:"SHL Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xC1 /4 ib"/"VMI" + // Pos:2400 Instruction:"SHL Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xC1 /4 ib"/"VMI" { .Instruction = ND_INS_SHL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 814, + .Mnemonic = 816, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -66744,6 +69306,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -66758,12 +69321,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2395 Instruction:"SHL Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0xC1 /4 ib"/"VMI" + // Pos:2401 Instruction:"SHL Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0xC1 /4 ib"/"VMI" { .Instruction = ND_INS_SHL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 814, + .Mnemonic = 816, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -66772,6 +69335,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -66786,12 +69350,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2396 Instruction:"SHL Bb,Eb,1" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD0 /4"/"VM1" + // Pos:2402 Instruction:"SHL Bb,Eb,1" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD0 /4"/"VM1" { .Instruction = ND_INS_SHL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 814, + .Mnemonic = 816, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -66800,6 +69364,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -66814,12 +69379,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2397 Instruction:"SHL Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD1 /4"/"VM1" + // Pos:2403 Instruction:"SHL Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD1 /4"/"VM1" { .Instruction = ND_INS_SHL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 814, + .Mnemonic = 816, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -66828,6 +69393,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -66842,12 +69408,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2398 Instruction:"SHL Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0xD1 /4"/"VM1" + // Pos:2404 Instruction:"SHL Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0xD1 /4"/"VM1" { .Instruction = ND_INS_SHL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 814, + .Mnemonic = 816, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -66856,6 +69422,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -66870,12 +69437,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2399 Instruction:"SHL Bb,Eb,CL" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD2 /4"/"VMC" + // Pos:2405 Instruction:"SHL Bb,Eb,CL" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD2 /4"/"VMC" { .Instruction = ND_INS_SHL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 814, + .Mnemonic = 816, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -66884,6 +69451,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -66898,12 +69466,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2400 Instruction:"SHL Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD3 /4"/"VMC" + // Pos:2406 Instruction:"SHL Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD3 /4"/"VMC" { .Instruction = ND_INS_SHL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 814, + .Mnemonic = 816, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -66912,6 +69480,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -66926,12 +69495,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2401 Instruction:"SHL Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0xD3 /4"/"VMC" + // Pos:2407 Instruction:"SHL Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0xD3 /4"/"VMC" { .Instruction = ND_INS_SHL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 814, + .Mnemonic = 816, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -66940,6 +69509,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -66954,12 +69524,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2402 Instruction:"SHL Eb,Ib" Encoding:"0xC0 /4 ib"/"MI" + // Pos:2408 Instruction:"SHL Eb,Ib" Encoding:"0xC0 /4 ib"/"MI" { .Instruction = ND_INS_SHL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_I86, - .Mnemonic = 814, + .Mnemonic = 816, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -66968,6 +69538,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -66982,12 +69553,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2403 Instruction:"SHL Ev,Ib" Encoding:"0xC1 /4 ib"/"MI" + // Pos:2409 Instruction:"SHL Ev,Ib" Encoding:"0xC1 /4 ib"/"MI" { .Instruction = ND_INS_SHL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_I86, - .Mnemonic = 814, + .Mnemonic = 816, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -66996,6 +69567,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -67010,12 +69582,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2404 Instruction:"SHL Eb,1" Encoding:"0xD0 /4"/"M1" + // Pos:2410 Instruction:"SHL Eb,1" Encoding:"0xD0 /4"/"M1" { .Instruction = ND_INS_SHL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_I86, - .Mnemonic = 814, + .Mnemonic = 816, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -67024,6 +69596,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -67038,12 +69611,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2405 Instruction:"SHL Ev,1" Encoding:"0xD1 /4"/"M1" + // Pos:2411 Instruction:"SHL Ev,1" Encoding:"0xD1 /4"/"M1" { .Instruction = ND_INS_SHL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_I86, - .Mnemonic = 814, + .Mnemonic = 816, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -67052,6 +69625,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -67066,12 +69640,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2406 Instruction:"SHL Eb,CL" Encoding:"0xD2 /4"/"MC" + // Pos:2412 Instruction:"SHL Eb,CL" Encoding:"0xD2 /4"/"MC" { .Instruction = ND_INS_SHL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_I86, - .Mnemonic = 814, + .Mnemonic = 816, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -67080,6 +69654,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -67094,12 +69669,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2407 Instruction:"SHL Ev,CL" Encoding:"0xD3 /4"/"MC" + // Pos:2413 Instruction:"SHL Ev,CL" Encoding:"0xD3 /4"/"MC" { .Instruction = ND_INS_SHL, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_I86, - .Mnemonic = 814, + .Mnemonic = 816, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -67108,6 +69683,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -67122,12 +69698,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2408 Instruction:"SHLD Ev,Gv,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x24 /r ib"/"MRI" + // Pos:2414 Instruction:"SHLD Ev,Gv,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x24 /r ib"/"MRI" { .Instruction = ND_INS_SHLD, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 815, + .Mnemonic = 817, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -67136,6 +69712,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_AF|NDR_RFLAG_OF, @@ -67151,12 +69728,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2409 Instruction:"SHLD Ev,Gv,CL" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xA5 /r"/"MRC" + // Pos:2415 Instruction:"SHLD Ev,Gv,CL" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xA5 /r"/"MRC" { .Instruction = ND_INS_SHLD, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 815, + .Mnemonic = 817, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -67165,6 +69742,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_AF|NDR_RFLAG_OF, @@ -67180,12 +69758,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2410 Instruction:"SHLD Ev,Gv,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0x24 /r ib"/"MRI" + // Pos:2416 Instruction:"SHLD Ev,Gv,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0x24 /r ib"/"MRI" { .Instruction = ND_INS_SHLD, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 815, + .Mnemonic = 817, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -67194,6 +69772,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_AF|NDR_RFLAG_OF, @@ -67209,12 +69788,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2411 Instruction:"SHLD Ev,Gv,CL" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xA5 /r"/"MRC" + // Pos:2417 Instruction:"SHLD Ev,Gv,CL" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xA5 /r"/"MRC" { .Instruction = ND_INS_SHLD, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 815, + .Mnemonic = 817, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -67223,6 +69802,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_AF|NDR_RFLAG_OF, @@ -67238,12 +69818,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2412 Instruction:"SHLD Ev,Gv,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0x24 /r ib"/"MRI" + // Pos:2418 Instruction:"SHLD Ev,Gv,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0x24 /r ib"/"MRI" { .Instruction = ND_INS_SHLD, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 815, + .Mnemonic = 817, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -67252,6 +69832,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -67266,12 +69847,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2413 Instruction:"SHLD Ev,Gv,CL" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xA5 /r"/"MRC" + // Pos:2419 Instruction:"SHLD Ev,Gv,CL" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xA5 /r"/"MRC" { .Instruction = ND_INS_SHLD, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 815, + .Mnemonic = 817, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -67280,6 +69861,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -67294,12 +69876,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2414 Instruction:"SHLD Ev,Gv,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0x24 /r ib"/"MRI" + // Pos:2420 Instruction:"SHLD Ev,Gv,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0x24 /r ib"/"MRI" { .Instruction = ND_INS_SHLD, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 815, + .Mnemonic = 817, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -67308,6 +69890,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -67322,12 +69905,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2415 Instruction:"SHLD Ev,Gv,CL" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xA5 /r"/"MRC" + // Pos:2421 Instruction:"SHLD Ev,Gv,CL" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xA5 /r"/"MRC" { .Instruction = ND_INS_SHLD, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 815, + .Mnemonic = 817, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -67336,6 +69919,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -67350,12 +69934,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2416 Instruction:"SHLD Bv,Ev,Gv,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x24 /r ib"/"VMRI" + // Pos:2422 Instruction:"SHLD Bv,Ev,Gv,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x24 /r ib"/"VMRI" { .Instruction = ND_INS_SHLD, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 815, + .Mnemonic = 817, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -67364,6 +69948,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_AF|NDR_RFLAG_OF, @@ -67380,12 +69965,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2417 Instruction:"SHLD Bv,Ev,Gv,CL" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xA5 /r"/"VMRC" + // Pos:2423 Instruction:"SHLD Bv,Ev,Gv,CL" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xA5 /r"/"VMRC" { .Instruction = ND_INS_SHLD, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 815, + .Mnemonic = 817, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -67394,6 +69979,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_AF|NDR_RFLAG_OF, @@ -67410,12 +69996,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2418 Instruction:"SHLD Bv,Ev,Gv,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0x24 /r ib"/"VMRI" + // Pos:2424 Instruction:"SHLD Bv,Ev,Gv,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0x24 /r ib"/"VMRI" { .Instruction = ND_INS_SHLD, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 815, + .Mnemonic = 817, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -67424,6 +70010,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_AF|NDR_RFLAG_OF, @@ -67440,12 +70027,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2419 Instruction:"SHLD Bv,Ev,Gv,CL" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0xA5 /r"/"VMRC" + // Pos:2425 Instruction:"SHLD Bv,Ev,Gv,CL" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0xA5 /r"/"VMRC" { .Instruction = ND_INS_SHLD, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 815, + .Mnemonic = 817, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -67454,6 +70041,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_AF|NDR_RFLAG_OF, @@ -67470,12 +70058,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2420 Instruction:"SHLD Bv,Ev,Gv,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0x24 /r ib"/"VMRI" + // Pos:2426 Instruction:"SHLD Bv,Ev,Gv,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0x24 /r ib"/"VMRI" { .Instruction = ND_INS_SHLD, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 815, + .Mnemonic = 817, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -67484,6 +70072,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -67499,12 +70088,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2421 Instruction:"SHLD Bv,Ev,Gv,CL" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xA5 /r"/"VMRC" + // Pos:2427 Instruction:"SHLD Bv,Ev,Gv,CL" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xA5 /r"/"VMRC" { .Instruction = ND_INS_SHLD, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 815, + .Mnemonic = 817, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -67513,6 +70102,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -67528,12 +70118,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2422 Instruction:"SHLD Bv,Ev,Gv,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0x24 /r ib"/"VMRI" + // Pos:2428 Instruction:"SHLD Bv,Ev,Gv,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0x24 /r ib"/"VMRI" { .Instruction = ND_INS_SHLD, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 815, + .Mnemonic = 817, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -67542,6 +70132,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -67557,12 +70148,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2423 Instruction:"SHLD Bv,Ev,Gv,CL" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0xA5 /r"/"VMRC" + // Pos:2429 Instruction:"SHLD Bv,Ev,Gv,CL" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0xA5 /r"/"VMRC" { .Instruction = ND_INS_SHLD, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 815, + .Mnemonic = 817, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -67571,6 +70162,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -67586,12 +70178,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2424 Instruction:"SHLD Ev,Gv,Ib" Encoding:"0x0F 0xA4 /r ib"/"MRI" + // Pos:2430 Instruction:"SHLD Ev,Gv,Ib" Encoding:"0x0F 0xA4 /r ib"/"MRI" { .Instruction = ND_INS_SHLD, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_I386, - .Mnemonic = 815, + .Mnemonic = 817, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -67600,6 +70192,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_AF|NDR_RFLAG_OF, @@ -67615,12 +70208,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2425 Instruction:"SHLD Ev,Gv,CL" Encoding:"0x0F 0xA5 /r"/"MRC" + // Pos:2431 Instruction:"SHLD Ev,Gv,CL" Encoding:"0x0F 0xA5 /r"/"MRC" { .Instruction = ND_INS_SHLD, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_I386, - .Mnemonic = 815, + .Mnemonic = 817, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -67629,6 +70222,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_AF|NDR_RFLAG_OF, @@ -67644,12 +70238,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2426 Instruction:"SHLX Gy,Ey,By" Encoding:"evex m:2 p:1 l:0 nf:0 0xF7 /r"/"RMV" + // Pos:2432 Instruction:"SHLX Gy,Ey,By" Encoding:"evex m:2 p:1 l:0 nf:0 0xF7 /r"/"RMV" { .Instruction = ND_INS_SHLX, .Category = ND_CAT_BMI2, .IsaSet = ND_SET_APX_F, - .Mnemonic = 816, + .Mnemonic = 818, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -67658,6 +70252,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_BMI, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -67672,12 +70267,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2427 Instruction:"SHLX Gy,Ey,By" Encoding:"vex m:2 p:1 l:0 w:x 0xF7 /r"/"RMV" + // Pos:2433 Instruction:"SHLX Gy,Ey,By" Encoding:"vex m:2 p:1 l:0 w:x 0xF7 /r"/"RMV" { .Instruction = ND_INS_SHLX, .Category = ND_CAT_BMI2, .IsaSet = ND_SET_BMI2, - .Mnemonic = 816, + .Mnemonic = 818, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -67686,6 +70281,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_13, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -67700,12 +70296,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2428 Instruction:"SHR Eb,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xC0 /5 ib"/"MI" + // Pos:2434 Instruction:"SHR Eb,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xC0 /5 ib"/"MI" { .Instruction = ND_INS_SHR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 817, + .Mnemonic = 819, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -67714,6 +70310,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -67728,12 +70325,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2429 Instruction:"SHR Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xC1 /5 ib"/"MI" + // Pos:2435 Instruction:"SHR Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xC1 /5 ib"/"MI" { .Instruction = ND_INS_SHR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 817, + .Mnemonic = 819, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -67742,6 +70339,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -67756,12 +70354,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2430 Instruction:"SHR Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xC1 /5 ib"/"MI" + // Pos:2436 Instruction:"SHR Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xC1 /5 ib"/"MI" { .Instruction = ND_INS_SHR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 817, + .Mnemonic = 819, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -67770,6 +70368,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -67784,12 +70383,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2431 Instruction:"SHR Eb,1" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD0 /5"/"M1" + // Pos:2437 Instruction:"SHR Eb,1" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD0 /5"/"M1" { .Instruction = ND_INS_SHR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 817, + .Mnemonic = 819, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -67798,6 +70397,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -67812,12 +70412,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2432 Instruction:"SHR Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD1 /5"/"M1" + // Pos:2438 Instruction:"SHR Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD1 /5"/"M1" { .Instruction = ND_INS_SHR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 817, + .Mnemonic = 819, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -67826,6 +70426,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -67840,12 +70441,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2433 Instruction:"SHR Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xD1 /5"/"M1" + // Pos:2439 Instruction:"SHR Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xD1 /5"/"M1" { .Instruction = ND_INS_SHR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 817, + .Mnemonic = 819, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -67854,6 +70455,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -67868,12 +70470,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2434 Instruction:"SHR Eb,CL" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD2 /5"/"MC" + // Pos:2440 Instruction:"SHR Eb,CL" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD2 /5"/"MC" { .Instruction = ND_INS_SHR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 817, + .Mnemonic = 819, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -67882,6 +70484,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -67896,12 +70499,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2435 Instruction:"SHR Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD3 /5"/"MC" + // Pos:2441 Instruction:"SHR Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xD3 /5"/"MC" { .Instruction = ND_INS_SHR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 817, + .Mnemonic = 819, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -67910,6 +70513,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -67924,12 +70528,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2436 Instruction:"SHR Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xD3 /5"/"MC" + // Pos:2442 Instruction:"SHR Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xD3 /5"/"MC" { .Instruction = ND_INS_SHR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 817, + .Mnemonic = 819, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -67938,6 +70542,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -67952,12 +70557,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2437 Instruction:"SHR Eb,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xC0 /5 ib"/"MI" + // Pos:2443 Instruction:"SHR Eb,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xC0 /5 ib"/"MI" { .Instruction = ND_INS_SHR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 817, + .Mnemonic = 819, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -67966,6 +70571,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -67979,12 +70585,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2438 Instruction:"SHR Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xC1 /5 ib"/"MI" + // Pos:2444 Instruction:"SHR Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xC1 /5 ib"/"MI" { .Instruction = ND_INS_SHR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 817, + .Mnemonic = 819, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -67993,6 +70599,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -68006,12 +70613,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2439 Instruction:"SHR Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xC1 /5 ib"/"MI" + // Pos:2445 Instruction:"SHR Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xC1 /5 ib"/"MI" { .Instruction = ND_INS_SHR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 817, + .Mnemonic = 819, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -68020,6 +70627,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -68033,12 +70641,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2440 Instruction:"SHR Eb,1" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD0 /5"/"M1" + // Pos:2446 Instruction:"SHR Eb,1" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD0 /5"/"M1" { .Instruction = ND_INS_SHR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 817, + .Mnemonic = 819, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -68047,6 +70655,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -68060,12 +70669,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2441 Instruction:"SHR Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD1 /5"/"M1" + // Pos:2447 Instruction:"SHR Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD1 /5"/"M1" { .Instruction = ND_INS_SHR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 817, + .Mnemonic = 819, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -68074,6 +70683,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -68087,12 +70697,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2442 Instruction:"SHR Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xD1 /5"/"M1" + // Pos:2448 Instruction:"SHR Ev,1" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xD1 /5"/"M1" { .Instruction = ND_INS_SHR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 817, + .Mnemonic = 819, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -68101,6 +70711,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -68114,12 +70725,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2443 Instruction:"SHR Eb,CL" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD2 /5"/"MC" + // Pos:2449 Instruction:"SHR Eb,CL" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD2 /5"/"MC" { .Instruction = ND_INS_SHR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 817, + .Mnemonic = 819, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -68128,6 +70739,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -68141,12 +70753,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2444 Instruction:"SHR Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD3 /5"/"MC" + // Pos:2450 Instruction:"SHR Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xD3 /5"/"MC" { .Instruction = ND_INS_SHR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 817, + .Mnemonic = 819, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -68155,6 +70767,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -68168,12 +70781,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2445 Instruction:"SHR Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xD3 /5"/"MC" + // Pos:2451 Instruction:"SHR Ev,CL" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xD3 /5"/"MC" { .Instruction = ND_INS_SHR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 817, + .Mnemonic = 819, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -68182,6 +70795,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -68195,12 +70809,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2446 Instruction:"SHR Bb,Eb,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xC0 /5 ib"/"VMI" + // Pos:2452 Instruction:"SHR Bb,Eb,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xC0 /5 ib"/"VMI" { .Instruction = ND_INS_SHR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 817, + .Mnemonic = 819, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -68209,6 +70823,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -68224,12 +70839,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2447 Instruction:"SHR Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xC1 /5 ib"/"VMI" + // Pos:2453 Instruction:"SHR Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xC1 /5 ib"/"VMI" { .Instruction = ND_INS_SHR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 817, + .Mnemonic = 819, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -68238,6 +70853,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -68253,12 +70869,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2448 Instruction:"SHR Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0xC1 /5 ib"/"VMI" + // Pos:2454 Instruction:"SHR Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0xC1 /5 ib"/"VMI" { .Instruction = ND_INS_SHR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 817, + .Mnemonic = 819, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -68267,6 +70883,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -68282,12 +70899,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2449 Instruction:"SHR Bb,Eb,1" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD0 /5"/"VM1" + // Pos:2455 Instruction:"SHR Bb,Eb,1" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD0 /5"/"VM1" { .Instruction = ND_INS_SHR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 817, + .Mnemonic = 819, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -68296,6 +70913,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -68311,12 +70929,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2450 Instruction:"SHR Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD1 /5"/"VM1" + // Pos:2456 Instruction:"SHR Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD1 /5"/"VM1" { .Instruction = ND_INS_SHR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 817, + .Mnemonic = 819, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -68325,6 +70943,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -68340,12 +70959,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2451 Instruction:"SHR Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0xD1 /5"/"VM1" + // Pos:2457 Instruction:"SHR Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0xD1 /5"/"VM1" { .Instruction = ND_INS_SHR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 817, + .Mnemonic = 819, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -68354,6 +70973,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -68369,12 +70989,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2452 Instruction:"SHR Bb,Eb,CL" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD2 /5"/"VMC" + // Pos:2458 Instruction:"SHR Bb,Eb,CL" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD2 /5"/"VMC" { .Instruction = ND_INS_SHR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 817, + .Mnemonic = 819, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -68383,6 +71003,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -68398,12 +71019,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2453 Instruction:"SHR Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD3 /5"/"VMC" + // Pos:2459 Instruction:"SHR Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xD3 /5"/"VMC" { .Instruction = ND_INS_SHR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 817, + .Mnemonic = 819, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -68412,6 +71033,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -68427,12 +71049,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2454 Instruction:"SHR Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0xD3 /5"/"VMC" + // Pos:2460 Instruction:"SHR Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0xD3 /5"/"VMC" { .Instruction = ND_INS_SHR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 817, + .Mnemonic = 819, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -68441,6 +71063,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -68456,12 +71079,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2455 Instruction:"SHR Bb,Eb,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xC0 /5 ib"/"VMI" + // Pos:2461 Instruction:"SHR Bb,Eb,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xC0 /5 ib"/"VMI" { .Instruction = ND_INS_SHR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 817, + .Mnemonic = 819, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -68470,6 +71093,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -68484,12 +71108,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2456 Instruction:"SHR Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xC1 /5 ib"/"VMI" + // Pos:2462 Instruction:"SHR Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xC1 /5 ib"/"VMI" { .Instruction = ND_INS_SHR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 817, + .Mnemonic = 819, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -68498,6 +71122,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -68512,12 +71137,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2457 Instruction:"SHR Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0xC1 /5 ib"/"VMI" + // Pos:2463 Instruction:"SHR Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0xC1 /5 ib"/"VMI" { .Instruction = ND_INS_SHR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 817, + .Mnemonic = 819, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -68526,6 +71151,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -68540,12 +71166,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2458 Instruction:"SHR Bb,Eb,1" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD0 /5"/"VM1" + // Pos:2464 Instruction:"SHR Bb,Eb,1" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD0 /5"/"VM1" { .Instruction = ND_INS_SHR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 817, + .Mnemonic = 819, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -68554,6 +71180,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -68568,12 +71195,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2459 Instruction:"SHR Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD1 /5"/"VM1" + // Pos:2465 Instruction:"SHR Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD1 /5"/"VM1" { .Instruction = ND_INS_SHR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 817, + .Mnemonic = 819, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -68582,6 +71209,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -68596,12 +71224,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2460 Instruction:"SHR Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0xD1 /5"/"VM1" + // Pos:2466 Instruction:"SHR Bv,Ev,1" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0xD1 /5"/"VM1" { .Instruction = ND_INS_SHR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 817, + .Mnemonic = 819, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -68610,6 +71238,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -68624,12 +71253,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2461 Instruction:"SHR Bb,Eb,CL" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD2 /5"/"VMC" + // Pos:2467 Instruction:"SHR Bb,Eb,CL" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD2 /5"/"VMC" { .Instruction = ND_INS_SHR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 817, + .Mnemonic = 819, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -68638,6 +71267,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -68652,12 +71282,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2462 Instruction:"SHR Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD3 /5"/"VMC" + // Pos:2468 Instruction:"SHR Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xD3 /5"/"VMC" { .Instruction = ND_INS_SHR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 817, + .Mnemonic = 819, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -68666,6 +71296,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -68680,12 +71311,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2463 Instruction:"SHR Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0xD3 /5"/"VMC" + // Pos:2469 Instruction:"SHR Bv,Ev,CL" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0xD3 /5"/"VMC" { .Instruction = ND_INS_SHR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 817, + .Mnemonic = 819, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -68694,6 +71325,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -68708,12 +71340,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2464 Instruction:"SHR Eb,Ib" Encoding:"0xC0 /5 ib"/"MI" + // Pos:2470 Instruction:"SHR Eb,Ib" Encoding:"0xC0 /5 ib"/"MI" { .Instruction = ND_INS_SHR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_I86, - .Mnemonic = 817, + .Mnemonic = 819, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -68722,6 +71354,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -68736,12 +71369,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2465 Instruction:"SHR Ev,Ib" Encoding:"0xC1 /5 ib"/"MI" + // Pos:2471 Instruction:"SHR Ev,Ib" Encoding:"0xC1 /5 ib"/"MI" { .Instruction = ND_INS_SHR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_I86, - .Mnemonic = 817, + .Mnemonic = 819, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -68750,6 +71383,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -68764,12 +71398,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2466 Instruction:"SHR Eb,1" Encoding:"0xD0 /5"/"M1" + // Pos:2472 Instruction:"SHR Eb,1" Encoding:"0xD0 /5"/"M1" { .Instruction = ND_INS_SHR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_I86, - .Mnemonic = 817, + .Mnemonic = 819, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -68778,6 +71412,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -68792,12 +71427,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2467 Instruction:"SHR Ev,1" Encoding:"0xD1 /5"/"M1" + // Pos:2473 Instruction:"SHR Ev,1" Encoding:"0xD1 /5"/"M1" { .Instruction = ND_INS_SHR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_I86, - .Mnemonic = 817, + .Mnemonic = 819, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -68806,6 +71441,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -68820,12 +71456,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2468 Instruction:"SHR Eb,CL" Encoding:"0xD2 /5"/"MC" + // Pos:2474 Instruction:"SHR Eb,CL" Encoding:"0xD2 /5"/"MC" { .Instruction = ND_INS_SHR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_I86, - .Mnemonic = 817, + .Mnemonic = 819, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -68834,6 +71470,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -68848,12 +71485,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2469 Instruction:"SHR Ev,CL" Encoding:"0xD3 /5"/"MC" + // Pos:2475 Instruction:"SHR Ev,CL" Encoding:"0xD3 /5"/"MC" { .Instruction = ND_INS_SHR, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_I86, - .Mnemonic = 817, + .Mnemonic = 819, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -68862,6 +71499,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0|NDR_RFLAG_AF, @@ -68876,12 +71514,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2470 Instruction:"SHRD Ev,Gv,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x2C /r ib"/"MRI" + // Pos:2476 Instruction:"SHRD Ev,Gv,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x2C /r ib"/"MRI" { .Instruction = ND_INS_SHRD, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 818, + .Mnemonic = 820, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -68890,6 +71528,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_AF|NDR_RFLAG_OF, @@ -68905,12 +71544,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2471 Instruction:"SHRD Ev,Gv,CL" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xAD /r"/"MRC" + // Pos:2477 Instruction:"SHRD Ev,Gv,CL" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xAD /r"/"MRC" { .Instruction = ND_INS_SHRD, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 818, + .Mnemonic = 820, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -68919,6 +71558,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_AF|NDR_RFLAG_OF, @@ -68934,12 +71574,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2472 Instruction:"SHRD Ev,Gv,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0x2C /r ib"/"MRI" + // Pos:2478 Instruction:"SHRD Ev,Gv,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0x2C /r ib"/"MRI" { .Instruction = ND_INS_SHRD, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 818, + .Mnemonic = 820, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -68948,6 +71588,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_AF|NDR_RFLAG_OF, @@ -68963,12 +71604,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2473 Instruction:"SHRD Ev,Gv,CL" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xAD /r"/"MRC" + // Pos:2479 Instruction:"SHRD Ev,Gv,CL" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xAD /r"/"MRC" { .Instruction = ND_INS_SHRD, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 818, + .Mnemonic = 820, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -68977,6 +71618,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_AF|NDR_RFLAG_OF, @@ -68992,12 +71634,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2474 Instruction:"SHRD Ev,Gv,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0x2C /r ib"/"MRI" + // Pos:2480 Instruction:"SHRD Ev,Gv,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0x2C /r ib"/"MRI" { .Instruction = ND_INS_SHRD, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 818, + .Mnemonic = 820, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -69006,6 +71648,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -69020,12 +71663,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2475 Instruction:"SHRD Ev,Gv,CL" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xAD /r"/"MRC" + // Pos:2481 Instruction:"SHRD Ev,Gv,CL" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xAD /r"/"MRC" { .Instruction = ND_INS_SHRD, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 818, + .Mnemonic = 820, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -69034,6 +71677,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -69048,12 +71692,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2476 Instruction:"SHRD Ev,Gv,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0x2C /r ib"/"MRI" + // Pos:2482 Instruction:"SHRD Ev,Gv,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0x2C /r ib"/"MRI" { .Instruction = ND_INS_SHRD, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 818, + .Mnemonic = 820, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -69062,6 +71706,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -69076,12 +71721,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2477 Instruction:"SHRD Ev,Gv,CL" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xAD /r"/"MRC" + // Pos:2483 Instruction:"SHRD Ev,Gv,CL" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xAD /r"/"MRC" { .Instruction = ND_INS_SHRD, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 818, + .Mnemonic = 820, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -69090,6 +71735,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -69104,12 +71750,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2478 Instruction:"SHRD Bv,Ev,Gv,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x2C /r ib"/"VMRI" + // Pos:2484 Instruction:"SHRD Bv,Ev,Gv,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x2C /r ib"/"VMRI" { .Instruction = ND_INS_SHRD, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 818, + .Mnemonic = 820, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -69118,6 +71764,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_AF|NDR_RFLAG_OF, @@ -69134,12 +71781,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2479 Instruction:"SHRD Bv,Ev,Gv,CL" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xAD /r"/"VMRC" + // Pos:2485 Instruction:"SHRD Bv,Ev,Gv,CL" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0xAD /r"/"VMRC" { .Instruction = ND_INS_SHRD, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 818, + .Mnemonic = 820, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -69148,6 +71795,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_AF|NDR_RFLAG_OF, @@ -69164,12 +71812,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2480 Instruction:"SHRD Bv,Ev,Gv,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0x2C /r ib"/"VMRI" + // Pos:2486 Instruction:"SHRD Bv,Ev,Gv,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0x2C /r ib"/"VMRI" { .Instruction = ND_INS_SHRD, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 818, + .Mnemonic = 820, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -69178,6 +71826,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_AF|NDR_RFLAG_OF, @@ -69194,12 +71843,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2481 Instruction:"SHRD Bv,Ev,Gv,CL" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0xAD /r"/"VMRC" + // Pos:2487 Instruction:"SHRD Bv,Ev,Gv,CL" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0xAD /r"/"VMRC" { .Instruction = ND_INS_SHRD, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 818, + .Mnemonic = 820, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -69208,6 +71857,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_AF|NDR_RFLAG_OF, @@ -69224,12 +71874,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2482 Instruction:"SHRD Bv,Ev,Gv,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0x2C /r ib"/"VMRI" + // Pos:2488 Instruction:"SHRD Bv,Ev,Gv,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0x2C /r ib"/"VMRI" { .Instruction = ND_INS_SHRD, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 818, + .Mnemonic = 820, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -69238,6 +71888,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -69253,12 +71904,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2483 Instruction:"SHRD Bv,Ev,Gv,CL" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xAD /r"/"VMRC" + // Pos:2489 Instruction:"SHRD Bv,Ev,Gv,CL" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0xAD /r"/"VMRC" { .Instruction = ND_INS_SHRD, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 818, + .Mnemonic = 820, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -69267,6 +71918,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -69282,12 +71934,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2484 Instruction:"SHRD Bv,Ev,Gv,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0x2C /r ib"/"VMRI" + // Pos:2490 Instruction:"SHRD Bv,Ev,Gv,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0x2C /r ib"/"VMRI" { .Instruction = ND_INS_SHRD, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 818, + .Mnemonic = 820, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -69296,6 +71948,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -69311,12 +71964,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2485 Instruction:"SHRD Bv,Ev,Gv,CL" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0xAD /r"/"VMRC" + // Pos:2491 Instruction:"SHRD Bv,Ev,Gv,CL" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0xAD /r"/"VMRC" { .Instruction = ND_INS_SHRD, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_APX_F, - .Mnemonic = 818, + .Mnemonic = 820, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -69325,6 +71978,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -69340,12 +71994,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2486 Instruction:"SHRD Ev,Gv,Ib" Encoding:"0x0F 0xAC /r ib"/"MRI" + // Pos:2492 Instruction:"SHRD Ev,Gv,Ib" Encoding:"0x0F 0xAC /r ib"/"MRI" { .Instruction = ND_INS_SHRD, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_I386, - .Mnemonic = 818, + .Mnemonic = 820, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -69354,6 +72008,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_AF|NDR_RFLAG_OF, @@ -69369,12 +72024,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2487 Instruction:"SHRD Ev,Gv,CL" Encoding:"0x0F 0xAD /r"/"MRC" + // Pos:2493 Instruction:"SHRD Ev,Gv,CL" Encoding:"0x0F 0xAD /r"/"MRC" { .Instruction = ND_INS_SHRD, .Category = ND_CAT_SHIFT, .IsaSet = ND_SET_I386, - .Mnemonic = 818, + .Mnemonic = 820, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -69383,6 +72038,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_AF|NDR_RFLAG_OF, @@ -69398,12 +72054,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2488 Instruction:"SHRX Gy,Ey,By" Encoding:"evex m:2 p:3 l:0 nf:0 0xF7 /r"/"RMV" + // Pos:2494 Instruction:"SHRX Gy,Ey,By" Encoding:"evex m:2 p:3 l:0 nf:0 0xF7 /r"/"RMV" { .Instruction = ND_INS_SHRX, .Category = ND_CAT_BMI2, .IsaSet = ND_SET_APX_F, - .Mnemonic = 819, + .Mnemonic = 821, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -69412,6 +72068,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_BMI, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -69426,12 +72083,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2489 Instruction:"SHRX Gy,Ey,By" Encoding:"vex m:2 p:3 l:0 w:x 0xF7 /r"/"RMV" + // Pos:2495 Instruction:"SHRX Gy,Ey,By" Encoding:"vex m:2 p:3 l:0 w:x 0xF7 /r"/"RMV" { .Instruction = ND_INS_SHRX, .Category = ND_CAT_BMI2, .IsaSet = ND_SET_BMI2, - .Mnemonic = 819, + .Mnemonic = 821, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -69440,6 +72097,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_13, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -69454,12 +72112,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2490 Instruction:"SHUFPD Vpd,Wpd,Ib" Encoding:"0x66 0x0F 0xC6 /r ib"/"RMI" + // Pos:2496 Instruction:"SHUFPD Vpd,Wpd,Ib" Encoding:"0x66 0x0F 0xC6 /r ib"/"RMI" { .Instruction = ND_INS_SHUFPD, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 820, + .Mnemonic = 822, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -69468,6 +72126,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -69482,12 +72141,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2491 Instruction:"SHUFPS Vps,Wps,Ib" Encoding:"NP 0x0F 0xC6 /r ib"/"RMI" + // Pos:2497 Instruction:"SHUFPS Vps,Wps,Ib" Encoding:"NP 0x0F 0xC6 /r ib"/"RMI" { .Instruction = ND_INS_SHUFPS, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE, - .Mnemonic = 821, + .Mnemonic = 823, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -69496,6 +72155,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -69510,12 +72170,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2492 Instruction:"SIDT Ms" Encoding:"0x0F 0x01 /1:mem"/"M" + // Pos:2498 Instruction:"SIDT Ms" Encoding:"0x0F 0x01 /1:mem"/"M" { .Instruction = ND_INS_SIDT, .Category = ND_CAT_SYSTEM, .IsaSet = ND_SET_I286REAL, - .Mnemonic = 822, + .Mnemonic = 824, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_REAL|ND_MOD_V8086|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -69524,6 +72184,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -69537,12 +72198,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2493 Instruction:"SKINIT" Encoding:"0x0F 0x01 /0xDE"/"" + // Pos:2499 Instruction:"SKINIT" Encoding:"0x0F 0x01 /0xDE"/"" { .Instruction = ND_INS_SKINIT, .Category = ND_CAT_SYSTEM, .IsaSet = ND_SET_SVM, - .Mnemonic = 823, + .Mnemonic = 825, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_PROT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXR_SEAM|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF|ND_MOD_SMM_OFF, .ValidDecorators = 0, @@ -69551,6 +72212,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -69563,12 +72225,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2494 Instruction:"SLDT Mw" Encoding:"0x0F 0x00 /0:mem"/"M" + // Pos:2500 Instruction:"SLDT Mw" Encoding:"0x0F 0x00 /0:mem"/"M" { .Instruction = ND_INS_SLDT, .Category = ND_CAT_SYSTEM, .IsaSet = ND_SET_I286PROT, - .Mnemonic = 824, + .Mnemonic = 826, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -69577,6 +72239,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -69590,12 +72253,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2495 Instruction:"SLDT Rv" Encoding:"0x0F 0x00 /0:reg"/"M" + // Pos:2501 Instruction:"SLDT Rv" Encoding:"0x0F 0x00 /0:reg"/"M" { .Instruction = ND_INS_SLDT, .Category = ND_CAT_SYSTEM, .IsaSet = ND_SET_I286PROT, - .Mnemonic = 824, + .Mnemonic = 826, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -69604,6 +72267,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -69617,12 +72281,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2496 Instruction:"SLWPCB Ry" Encoding:"xop m:9 0x12 /1:reg"/"M" + // Pos:2502 Instruction:"SLWPCB Ry" Encoding:"xop m:9 0x12 /1:reg"/"M" { .Instruction = ND_INS_SLWPCB, .Category = ND_CAT_LWP, .IsaSet = ND_SET_LWP, - .Mnemonic = 825, + .Mnemonic = 827, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -69631,6 +72295,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -69643,12 +72308,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2497 Instruction:"SMSW Mw" Encoding:"0x0F 0x01 /4:mem"/"M" + // Pos:2503 Instruction:"SMSW Mw" Encoding:"0x0F 0x01 /4:mem"/"M" { .Instruction = ND_INS_SMSW, .Category = ND_CAT_SYSTEM, .IsaSet = ND_SET_I286REAL, - .Mnemonic = 826, + .Mnemonic = 828, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_REAL|ND_MOD_V8086|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -69657,6 +72322,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -69670,12 +72336,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2498 Instruction:"SMSW Rv" Encoding:"0x0F 0x01 /4:reg"/"M" + // Pos:2504 Instruction:"SMSW Rv" Encoding:"0x0F 0x01 /4:reg"/"M" { .Instruction = ND_INS_SMSW, .Category = ND_CAT_SYSTEM, .IsaSet = ND_SET_I286REAL, - .Mnemonic = 826, + .Mnemonic = 828, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_REAL|ND_MOD_V8086|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -69684,6 +72350,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -69697,12 +72364,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2499 Instruction:"SPFLT Ry" Encoding:"vex m:1 p:3 0xAE /6:reg"/"M" + // Pos:2505 Instruction:"SPFLT Ry" Encoding:"vex m:1 p:3 0xAE /6:reg"/"M" { .Instruction = ND_INS_SPFLT, .Category = ND_CAT_UNKNOWN, .IsaSet = ND_SET_UNKNOWN, - .Mnemonic = 827, + .Mnemonic = 829, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -69711,6 +72378,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -69723,12 +72391,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2500 Instruction:"SQRTPD Vpd,Wpd" Encoding:"0x66 0x0F 0x51 /r"/"RM" + // Pos:2506 Instruction:"SQRTPD Vpd,Wpd" Encoding:"0x66 0x0F 0x51 /r"/"RM" { .Instruction = ND_INS_SQRTPD, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 828, + .Mnemonic = 830, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -69737,6 +72405,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -69750,12 +72419,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2501 Instruction:"SQRTPS Vps,Wps" Encoding:"NP 0x0F 0x51 /r"/"RM" + // Pos:2507 Instruction:"SQRTPS Vps,Wps" Encoding:"NP 0x0F 0x51 /r"/"RM" { .Instruction = ND_INS_SQRTPS, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE, - .Mnemonic = 829, + .Mnemonic = 831, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -69764,6 +72433,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -69777,12 +72447,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2502 Instruction:"SQRTSD Vsd,Wsd" Encoding:"0xF2 0x0F 0x51 /r"/"RM" + // Pos:2508 Instruction:"SQRTSD Vsd,Wsd" Encoding:"0xF2 0x0F 0x51 /r"/"RM" { .Instruction = ND_INS_SQRTSD, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 830, + .Mnemonic = 832, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -69791,6 +72461,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -69804,12 +72475,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2503 Instruction:"SQRTSS Vss,Wss" Encoding:"0xF3 0x0F 0x51 /r"/"RM" + // Pos:2509 Instruction:"SQRTSS Vss,Wss" Encoding:"0xF3 0x0F 0x51 /r"/"RM" { .Instruction = ND_INS_SQRTSS, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE, - .Mnemonic = 831, + .Mnemonic = 833, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -69818,6 +72489,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -69831,12 +72503,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2504 Instruction:"STAC" Encoding:"NP 0x0F 0x01 /0xCB"/"" + // Pos:2510 Instruction:"STAC" Encoding:"NP 0x0F 0x01 /0xCB"/"" { .Instruction = ND_INS_STAC, .Category = ND_CAT_SMAP, .IsaSet = ND_SET_SMAP, - .Mnemonic = 832, + .Mnemonic = 834, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_REAL|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -69845,6 +72517,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0|NDR_RFLAG_AC, @@ -69857,12 +72530,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2505 Instruction:"STC" Encoding:"0xF9"/"" + // Pos:2511 Instruction:"STC" Encoding:"0xF9"/"" { .Instruction = ND_INS_STC, .Category = ND_CAT_FLAGOP, .IsaSet = ND_SET_I86, - .Mnemonic = 833, + .Mnemonic = 835, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -69871,6 +72544,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0|NDR_RFLAG_CF, @@ -69883,12 +72557,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2506 Instruction:"STD" Encoding:"0xFD"/"" + // Pos:2512 Instruction:"STD" Encoding:"0xFD"/"" { .Instruction = ND_INS_STD, .Category = ND_CAT_FLAGOP, .IsaSet = ND_SET_I86, - .Mnemonic = 834, + .Mnemonic = 836, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -69897,6 +72571,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0|NDR_RFLAG_DF, @@ -69909,12 +72584,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2507 Instruction:"STGI" Encoding:"0x0F 0x01 /0xDC"/"" + // Pos:2513 Instruction:"STGI" Encoding:"0x0F 0x01 /0xDC"/"" { .Instruction = ND_INS_STGI, .Category = ND_CAT_SYSTEM, .IsaSet = ND_SET_SVM, - .Mnemonic = 835, + .Mnemonic = 837, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_PROT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXR_SEAM|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF|ND_MOD_SMM_OFF, .ValidDecorators = 0, @@ -69923,6 +72598,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -69935,12 +72611,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2508 Instruction:"STI" Encoding:"0xFB"/"" + // Pos:2514 Instruction:"STI" Encoding:"0xFB"/"" { .Instruction = ND_INS_STI, .Category = ND_CAT_FLAGOP, .IsaSet = ND_SET_I86, - .Mnemonic = 836, + .Mnemonic = 838, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -69949,6 +72625,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0|NDR_RFLAG_IF, @@ -69961,12 +72638,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2509 Instruction:"STMXCSR Md" Encoding:"NP 0x0F 0xAE /3:mem"/"M" + // Pos:2515 Instruction:"STMXCSR Md" Encoding:"NP 0x0F 0xAE /3:mem"/"M" { .Instruction = ND_INS_STMXCSR, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE, - .Mnemonic = 837, + .Mnemonic = 839, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -69975,6 +72652,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -69988,12 +72666,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2510 Instruction:"STOSB Yb,AL" Encoding:"0xAA"/"" + // Pos:2516 Instruction:"STOSB Yb,AL" Encoding:"0xAA"/"" { .Instruction = ND_INS_STOS, .Category = ND_CAT_STRINGOP, .IsaSet = ND_SET_I86, - .Mnemonic = 838, + .Mnemonic = 840, .ValidPrefixes = ND_PREF_REP, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -70002,6 +72680,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_DF, .ModifiedFlags = 0, .SetFlags = 0, @@ -70017,12 +72696,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2511 Instruction:"STOSB Yb,AL" Encoding:"rep 0xAA"/"" + // Pos:2517 Instruction:"STOSB Yb,AL" Encoding:"rep 0xAA"/"" { .Instruction = ND_INS_STOS, .Category = ND_CAT_STRINGOP, .IsaSet = ND_SET_I86, - .Mnemonic = 838, + .Mnemonic = 840, .ValidPrefixes = ND_PREF_REP, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -70031,6 +72710,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_DF, .ModifiedFlags = 0, .SetFlags = 0, @@ -70047,12 +72727,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2512 Instruction:"STOSD Yv,EAX" Encoding:"ds32 0xAB"/"" + // Pos:2518 Instruction:"STOSD Yv,EAX" Encoding:"ds32 0xAB"/"" { .Instruction = ND_INS_STOS, .Category = ND_CAT_STRINGOP, .IsaSet = ND_SET_I86, - .Mnemonic = 839, + .Mnemonic = 841, .ValidPrefixes = ND_PREF_REP, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -70061,6 +72741,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_DF, .ModifiedFlags = 0, .SetFlags = 0, @@ -70076,12 +72757,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2513 Instruction:"STOSD Yv,EAX" Encoding:"rep ds32 0xAB"/"" + // Pos:2519 Instruction:"STOSD Yv,EAX" Encoding:"rep ds32 0xAB"/"" { .Instruction = ND_INS_STOS, .Category = ND_CAT_STRINGOP, .IsaSet = ND_SET_I86, - .Mnemonic = 839, + .Mnemonic = 841, .ValidPrefixes = ND_PREF_REP, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -70090,6 +72771,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_DF, .ModifiedFlags = 0, .SetFlags = 0, @@ -70106,12 +72788,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2514 Instruction:"STOSQ Yv,RAX" Encoding:"ds64 0xAB"/"" + // Pos:2520 Instruction:"STOSQ Yv,RAX" Encoding:"ds64 0xAB"/"" { .Instruction = ND_INS_STOS, .Category = ND_CAT_STRINGOP, .IsaSet = ND_SET_I86, - .Mnemonic = 840, + .Mnemonic = 842, .ValidPrefixes = ND_PREF_REP, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -70120,6 +72802,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_DF, .ModifiedFlags = 0, .SetFlags = 0, @@ -70135,12 +72818,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2515 Instruction:"STOSQ Yv,RAX" Encoding:"rep ds64 0xAB"/"" + // Pos:2521 Instruction:"STOSQ Yv,RAX" Encoding:"rep ds64 0xAB"/"" { .Instruction = ND_INS_STOS, .Category = ND_CAT_STRINGOP, .IsaSet = ND_SET_I86, - .Mnemonic = 840, + .Mnemonic = 842, .ValidPrefixes = ND_PREF_REP, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -70149,6 +72832,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_DF, .ModifiedFlags = 0, .SetFlags = 0, @@ -70165,12 +72849,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2516 Instruction:"STOSW Yv,AX" Encoding:"ds16 0xAB"/"" + // Pos:2522 Instruction:"STOSW Yv,AX" Encoding:"ds16 0xAB"/"" { .Instruction = ND_INS_STOS, .Category = ND_CAT_STRINGOP, .IsaSet = ND_SET_I86, - .Mnemonic = 841, + .Mnemonic = 843, .ValidPrefixes = ND_PREF_REP, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -70179,6 +72863,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_DF, .ModifiedFlags = 0, .SetFlags = 0, @@ -70194,12 +72879,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2517 Instruction:"STOSW Yv,AX" Encoding:"rep ds16 0xAB"/"" + // Pos:2523 Instruction:"STOSW Yv,AX" Encoding:"rep ds16 0xAB"/"" { .Instruction = ND_INS_STOS, .Category = ND_CAT_STRINGOP, .IsaSet = ND_SET_I86, - .Mnemonic = 841, + .Mnemonic = 843, .ValidPrefixes = ND_PREF_REP, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -70208,6 +72893,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0|NDR_RFLAG_DF, .ModifiedFlags = 0, .SetFlags = 0, @@ -70224,12 +72910,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2518 Instruction:"STR Mw" Encoding:"0x0F 0x00 /1:mem"/"M" + // Pos:2524 Instruction:"STR Mw" Encoding:"0x0F 0x00 /1:mem"/"M" { .Instruction = ND_INS_STR, .Category = ND_CAT_SYSTEM, .IsaSet = ND_SET_I286PROT, - .Mnemonic = 842, + .Mnemonic = 844, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -70238,6 +72924,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -70251,12 +72938,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2519 Instruction:"STR Rv" Encoding:"0x0F 0x00 /1:reg"/"M" + // Pos:2525 Instruction:"STR Rv" Encoding:"0x0F 0x00 /1:reg"/"M" { .Instruction = ND_INS_STR, .Category = ND_CAT_SYSTEM, .IsaSet = ND_SET_I286PROT, - .Mnemonic = 842, + .Mnemonic = 844, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -70265,6 +72952,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -70278,12 +72966,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2520 Instruction:"STTILECFG Moq" Encoding:"evex m:2 p:1 l:0 nf:0 w:0 0x49 /0:mem"/"M" + // Pos:2526 Instruction:"STTILECFG Moq" Encoding:"evex m:2 p:1 l:0 nf:0 w:0 0x49 /0:mem"/"M" { .Instruction = ND_INS_STTILECFG, .Category = ND_CAT_AMX, .IsaSet = ND_SET_APX_F, - .Mnemonic = 843, + .Mnemonic = 845, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -70292,6 +72980,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_AMX_EVEX_E2, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -70304,12 +72993,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2521 Instruction:"STTILECFG Moq" Encoding:"vex m:2 p:1 l:0 w:0 0x49 /0:mem"/"M" + // Pos:2527 Instruction:"STTILECFG Moq" Encoding:"vex m:2 p:1 l:0 w:0 0x49 /0:mem"/"M" { .Instruction = ND_INS_STTILECFG, .Category = ND_CAT_AMX, .IsaSet = ND_SET_AMXTILE, - .Mnemonic = 843, + .Mnemonic = 845, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -70318,6 +73007,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_AMX_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -70330,12 +73020,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2522 Instruction:"STUI" Encoding:"0xF3 0x0F 0x01 /0xEF"/"" + // Pos:2528 Instruction:"STUI" Encoding:"0xF3 0x0F 0x01 /0xEF"/"" { .Instruction = ND_INS_STUI, .Category = ND_CAT_UINTR, .IsaSet = ND_SET_UINTR, - .Mnemonic = 844, + .Mnemonic = 846, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -70344,6 +73034,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -70356,12 +73047,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2523 Instruction:"SUB Eb,Gb" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x28 /r"/"MR" + // Pos:2529 Instruction:"SUB Eb,Gb" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x28 /r"/"MR" { .Instruction = ND_INS_SUB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 845, + .Mnemonic = 847, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -70370,6 +73061,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -70384,12 +73076,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2524 Instruction:"SUB Ev,Gv" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x29 /r"/"MR" + // Pos:2530 Instruction:"SUB Ev,Gv" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x29 /r"/"MR" { .Instruction = ND_INS_SUB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 845, + .Mnemonic = 847, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -70398,6 +73090,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -70412,12 +73105,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2525 Instruction:"SUB Ev,Gv" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0x29 /r"/"MR" + // Pos:2531 Instruction:"SUB Ev,Gv" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0x29 /r"/"MR" { .Instruction = ND_INS_SUB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 845, + .Mnemonic = 847, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -70426,6 +73119,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -70440,12 +73134,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2526 Instruction:"SUB Gb,Eb" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x2A /r"/"RM" + // Pos:2532 Instruction:"SUB Gb,Eb" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x2A /r"/"RM" { .Instruction = ND_INS_SUB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 845, + .Mnemonic = 847, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -70454,6 +73148,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -70468,12 +73163,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2527 Instruction:"SUB Gv,Ev" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x2B /r"/"RM" + // Pos:2533 Instruction:"SUB Gv,Ev" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x2B /r"/"RM" { .Instruction = ND_INS_SUB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 845, + .Mnemonic = 847, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -70482,6 +73177,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -70496,12 +73192,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2528 Instruction:"SUB Gv,Ev" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0x2B /r"/"RM" + // Pos:2534 Instruction:"SUB Gv,Ev" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0x2B /r"/"RM" { .Instruction = ND_INS_SUB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 845, + .Mnemonic = 847, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -70510,6 +73206,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -70524,12 +73221,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2529 Instruction:"SUB Eb,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x80 /5 ib"/"MI" + // Pos:2535 Instruction:"SUB Eb,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x80 /5 ib"/"MI" { .Instruction = ND_INS_SUB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 845, + .Mnemonic = 847, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -70538,6 +73235,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -70552,12 +73250,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2530 Instruction:"SUB Ev,Iz" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x81 /5 iz"/"MI" + // Pos:2536 Instruction:"SUB Ev,Iz" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x81 /5 iz"/"MI" { .Instruction = ND_INS_SUB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 845, + .Mnemonic = 847, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -70566,6 +73264,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -70580,12 +73279,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2531 Instruction:"SUB Ev,Iz" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0x81 /5 iz"/"MI" + // Pos:2537 Instruction:"SUB Ev,Iz" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0x81 /5 iz"/"MI" { .Instruction = ND_INS_SUB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 845, + .Mnemonic = 847, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -70594,6 +73293,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -70608,12 +73308,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2532 Instruction:"SUB Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x83 /5 ib"/"MI" + // Pos:2538 Instruction:"SUB Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x83 /5 ib"/"MI" { .Instruction = ND_INS_SUB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 845, + .Mnemonic = 847, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -70622,6 +73322,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -70636,12 +73337,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2533 Instruction:"SUB Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0x83 /5 ib"/"MI" + // Pos:2539 Instruction:"SUB Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0x83 /5 ib"/"MI" { .Instruction = ND_INS_SUB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 845, + .Mnemonic = 847, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -70650,6 +73351,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -70664,12 +73366,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2534 Instruction:"SUB Eb,Gb" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0x28 /r"/"MR" + // Pos:2540 Instruction:"SUB Eb,Gb" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0x28 /r"/"MR" { .Instruction = ND_INS_SUB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 845, + .Mnemonic = 847, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -70678,6 +73380,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -70691,12 +73394,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2535 Instruction:"SUB Ev,Gv" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0x29 /r"/"MR" + // Pos:2541 Instruction:"SUB Ev,Gv" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0x29 /r"/"MR" { .Instruction = ND_INS_SUB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 845, + .Mnemonic = 847, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -70705,6 +73408,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -70718,12 +73422,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2536 Instruction:"SUB Ev,Gv" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0x29 /r"/"MR" + // Pos:2542 Instruction:"SUB Ev,Gv" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0x29 /r"/"MR" { .Instruction = ND_INS_SUB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 845, + .Mnemonic = 847, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -70732,6 +73436,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -70745,12 +73450,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2537 Instruction:"SUB Gb,Eb" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0x2A /r"/"RM" + // Pos:2543 Instruction:"SUB Gb,Eb" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0x2A /r"/"RM" { .Instruction = ND_INS_SUB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 845, + .Mnemonic = 847, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -70759,6 +73464,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -70772,12 +73478,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2538 Instruction:"SUB Gv,Ev" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0x2B /r"/"RM" + // Pos:2544 Instruction:"SUB Gv,Ev" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0x2B /r"/"RM" { .Instruction = ND_INS_SUB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 845, + .Mnemonic = 847, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -70786,6 +73492,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -70799,12 +73506,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2539 Instruction:"SUB Gv,Ev" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0x2B /r"/"RM" + // Pos:2545 Instruction:"SUB Gv,Ev" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0x2B /r"/"RM" { .Instruction = ND_INS_SUB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 845, + .Mnemonic = 847, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -70813,6 +73520,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -70826,12 +73534,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2540 Instruction:"SUB Eb,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0x80 /5 ib"/"MI" + // Pos:2546 Instruction:"SUB Eb,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0x80 /5 ib"/"MI" { .Instruction = ND_INS_SUB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 845, + .Mnemonic = 847, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -70840,6 +73548,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -70853,12 +73562,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2541 Instruction:"SUB Ev,Iz" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0x81 /5 iz"/"MI" + // Pos:2547 Instruction:"SUB Ev,Iz" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0x81 /5 iz"/"MI" { .Instruction = ND_INS_SUB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 845, + .Mnemonic = 847, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -70867,6 +73576,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -70880,12 +73590,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2542 Instruction:"SUB Ev,Iz" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0x81 /5 iz"/"MI" + // Pos:2548 Instruction:"SUB Ev,Iz" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0x81 /5 iz"/"MI" { .Instruction = ND_INS_SUB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 845, + .Mnemonic = 847, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -70894,6 +73604,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -70907,12 +73618,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2543 Instruction:"SUB Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0x83 /5 ib"/"MI" + // Pos:2549 Instruction:"SUB Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0x83 /5 ib"/"MI" { .Instruction = ND_INS_SUB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 845, + .Mnemonic = 847, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -70921,6 +73632,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -70934,12 +73646,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2544 Instruction:"SUB Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0x83 /5 ib"/"MI" + // Pos:2550 Instruction:"SUB Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0x83 /5 ib"/"MI" { .Instruction = ND_INS_SUB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 845, + .Mnemonic = 847, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -70948,6 +73660,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -70961,12 +73674,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2545 Instruction:"SUB Bb,Eb,Gb" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x28 /r"/"VMR" + // Pos:2551 Instruction:"SUB Bb,Eb,Gb" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x28 /r"/"VMR" { .Instruction = ND_INS_SUB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 845, + .Mnemonic = 847, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -70975,6 +73688,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -70990,12 +73704,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2546 Instruction:"SUB Bv,Ev,Gv" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x29 /r"/"VMR" + // Pos:2552 Instruction:"SUB Bv,Ev,Gv" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x29 /r"/"VMR" { .Instruction = ND_INS_SUB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 845, + .Mnemonic = 847, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -71004,6 +73718,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -71019,12 +73734,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2547 Instruction:"SUB Bv,Ev,Gv" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0x29 /r"/"VMR" + // Pos:2553 Instruction:"SUB Bv,Ev,Gv" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0x29 /r"/"VMR" { .Instruction = ND_INS_SUB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 845, + .Mnemonic = 847, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -71033,6 +73748,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -71048,12 +73764,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2548 Instruction:"SUB Bb,Gb,Eb" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x2A /r"/"VRM" + // Pos:2554 Instruction:"SUB Bb,Gb,Eb" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x2A /r"/"VRM" { .Instruction = ND_INS_SUB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 845, + .Mnemonic = 847, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -71062,6 +73778,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -71077,12 +73794,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2549 Instruction:"SUB Bv,Gv,Ev" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x2B /r"/"VRM" + // Pos:2555 Instruction:"SUB Bv,Gv,Ev" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x2B /r"/"VRM" { .Instruction = ND_INS_SUB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 845, + .Mnemonic = 847, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -71091,6 +73808,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -71106,12 +73824,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2550 Instruction:"SUB Bv,Gv,Ev" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0x2B /r"/"VRM" + // Pos:2556 Instruction:"SUB Bv,Gv,Ev" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0x2B /r"/"VRM" { .Instruction = ND_INS_SUB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 845, + .Mnemonic = 847, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -71120,6 +73838,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -71135,12 +73854,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2551 Instruction:"SUB Bb,Eb,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x80 /5 ib"/"VMI" + // Pos:2557 Instruction:"SUB Bb,Eb,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x80 /5 ib"/"VMI" { .Instruction = ND_INS_SUB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 845, + .Mnemonic = 847, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -71149,6 +73868,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -71164,12 +73884,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2552 Instruction:"SUB Bv,Ev,Iz" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x81 /5 iz"/"VMI" + // Pos:2558 Instruction:"SUB Bv,Ev,Iz" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x81 /5 iz"/"VMI" { .Instruction = ND_INS_SUB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 845, + .Mnemonic = 847, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -71178,6 +73898,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -71193,12 +73914,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2553 Instruction:"SUB Bv,Ev,Iz" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0x81 /5 iz"/"VMI" + // Pos:2559 Instruction:"SUB Bv,Ev,Iz" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0x81 /5 iz"/"VMI" { .Instruction = ND_INS_SUB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 845, + .Mnemonic = 847, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -71207,6 +73928,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -71222,12 +73944,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2554 Instruction:"SUB Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x83 /5 ib"/"VMI" + // Pos:2560 Instruction:"SUB Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x83 /5 ib"/"VMI" { .Instruction = ND_INS_SUB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 845, + .Mnemonic = 847, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -71236,6 +73958,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -71251,12 +73974,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2555 Instruction:"SUB Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0x83 /5 ib"/"VMI" + // Pos:2561 Instruction:"SUB Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0x83 /5 ib"/"VMI" { .Instruction = ND_INS_SUB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 845, + .Mnemonic = 847, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -71265,6 +73988,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -71280,12 +74004,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2556 Instruction:"SUB Bb,Eb,Gb" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0x28 /r"/"VMR" + // Pos:2562 Instruction:"SUB Bb,Eb,Gb" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0x28 /r"/"VMR" { .Instruction = ND_INS_SUB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 845, + .Mnemonic = 847, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -71294,6 +74018,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -71308,12 +74033,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2557 Instruction:"SUB Bv,Ev,Gv" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0x29 /r"/"VMR" + // Pos:2563 Instruction:"SUB Bv,Ev,Gv" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0x29 /r"/"VMR" { .Instruction = ND_INS_SUB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 845, + .Mnemonic = 847, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -71322,6 +74047,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -71336,12 +74062,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2558 Instruction:"SUB Bv,Ev,Gv" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0x29 /r"/"VMR" + // Pos:2564 Instruction:"SUB Bv,Ev,Gv" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0x29 /r"/"VMR" { .Instruction = ND_INS_SUB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 845, + .Mnemonic = 847, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -71350,6 +74076,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -71364,12 +74091,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2559 Instruction:"SUB Bb,Gb,Eb" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0x2A /r"/"VRM" + // Pos:2565 Instruction:"SUB Bb,Gb,Eb" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0x2A /r"/"VRM" { .Instruction = ND_INS_SUB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 845, + .Mnemonic = 847, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -71378,6 +74105,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -71392,12 +74120,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2560 Instruction:"SUB Bv,Gv,Ev" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0x2B /r"/"VRM" + // Pos:2566 Instruction:"SUB Bv,Gv,Ev" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0x2B /r"/"VRM" { .Instruction = ND_INS_SUB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 845, + .Mnemonic = 847, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -71406,6 +74134,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -71420,12 +74149,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2561 Instruction:"SUB Bv,Gv,Ev" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0x2B /r"/"VRM" + // Pos:2567 Instruction:"SUB Bv,Gv,Ev" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0x2B /r"/"VRM" { .Instruction = ND_INS_SUB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 845, + .Mnemonic = 847, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -71434,6 +74163,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -71448,12 +74178,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2562 Instruction:"SUB Bb,Eb,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0x80 /5 ib"/"VMI" + // Pos:2568 Instruction:"SUB Bb,Eb,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0x80 /5 ib"/"VMI" { .Instruction = ND_INS_SUB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 845, + .Mnemonic = 847, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -71462,6 +74192,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -71476,12 +74207,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2563 Instruction:"SUB Bv,Ev,Iz" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0x81 /5 iz"/"VMI" + // Pos:2569 Instruction:"SUB Bv,Ev,Iz" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0x81 /5 iz"/"VMI" { .Instruction = ND_INS_SUB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 845, + .Mnemonic = 847, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -71490,6 +74221,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -71504,12 +74236,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2564 Instruction:"SUB Bv,Ev,Iz" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0x81 /5 iz"/"VMI" + // Pos:2570 Instruction:"SUB Bv,Ev,Iz" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0x81 /5 iz"/"VMI" { .Instruction = ND_INS_SUB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 845, + .Mnemonic = 847, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -71518,6 +74250,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -71532,12 +74265,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2565 Instruction:"SUB Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0x83 /5 ib"/"VMI" + // Pos:2571 Instruction:"SUB Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0x83 /5 ib"/"VMI" { .Instruction = ND_INS_SUB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 845, + .Mnemonic = 847, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -71546,6 +74279,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -71560,12 +74294,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2566 Instruction:"SUB Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0x83 /5 ib"/"VMI" + // Pos:2572 Instruction:"SUB Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0x83 /5 ib"/"VMI" { .Instruction = ND_INS_SUB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_APX_F, - .Mnemonic = 845, + .Mnemonic = 847, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -71574,6 +74308,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -71588,12 +74323,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2567 Instruction:"SUB Eb,Gb" Encoding:"0x28 /r"/"MR" + // Pos:2573 Instruction:"SUB Eb,Gb" Encoding:"0x28 /r"/"MR" { .Instruction = ND_INS_SUB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_I86, - .Mnemonic = 845, + .Mnemonic = 847, .ValidPrefixes = ND_PREF_HLE|ND_PREF_LOCK, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -71602,6 +74337,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -71616,12 +74352,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2568 Instruction:"SUB Ev,Gv" Encoding:"0x29 /r"/"MR" + // Pos:2574 Instruction:"SUB Ev,Gv" Encoding:"0x29 /r"/"MR" { .Instruction = ND_INS_SUB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_I86, - .Mnemonic = 845, + .Mnemonic = 847, .ValidPrefixes = ND_PREF_HLE|ND_PREF_LOCK, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -71630,6 +74366,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -71644,12 +74381,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2569 Instruction:"SUB Gb,Eb" Encoding:"0x2A /r"/"RM" + // Pos:2575 Instruction:"SUB Gb,Eb" Encoding:"0x2A /r"/"RM" { .Instruction = ND_INS_SUB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_I86, - .Mnemonic = 845, + .Mnemonic = 847, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -71658,6 +74395,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -71672,12 +74410,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2570 Instruction:"SUB Gv,Ev" Encoding:"0x2B /r"/"RM" + // Pos:2576 Instruction:"SUB Gv,Ev" Encoding:"0x2B /r"/"RM" { .Instruction = ND_INS_SUB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_I86, - .Mnemonic = 845, + .Mnemonic = 847, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -71686,6 +74424,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -71700,12 +74439,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2571 Instruction:"SUB AL,Ib" Encoding:"0x2C ib"/"I" + // Pos:2577 Instruction:"SUB AL,Ib" Encoding:"0x2C ib"/"I" { .Instruction = ND_INS_SUB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_I86, - .Mnemonic = 845, + .Mnemonic = 847, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -71714,6 +74453,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -71728,12 +74468,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2572 Instruction:"SUB rAX,Iz" Encoding:"0x2D iz"/"I" + // Pos:2578 Instruction:"SUB rAX,Iz" Encoding:"0x2D iz"/"I" { .Instruction = ND_INS_SUB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_I86, - .Mnemonic = 845, + .Mnemonic = 847, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -71742,6 +74482,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -71756,12 +74497,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2573 Instruction:"SUB Eb,Ib" Encoding:"0x80 /5 ib"/"MI" + // Pos:2579 Instruction:"SUB Eb,Ib" Encoding:"0x80 /5 ib"/"MI" { .Instruction = ND_INS_SUB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_I86, - .Mnemonic = 845, + .Mnemonic = 847, .ValidPrefixes = ND_PREF_HLE|ND_PREF_LOCK, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -71770,6 +74511,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -71784,12 +74526,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2574 Instruction:"SUB Ev,Iz" Encoding:"0x81 /5 iz"/"MI" + // Pos:2580 Instruction:"SUB Ev,Iz" Encoding:"0x81 /5 iz"/"MI" { .Instruction = ND_INS_SUB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_I86, - .Mnemonic = 845, + .Mnemonic = 847, .ValidPrefixes = ND_PREF_HLE|ND_PREF_LOCK, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -71798,6 +74540,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -71812,12 +74555,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2575 Instruction:"SUB Eb,Ib" Encoding:"0x82 /5 iz"/"MI" + // Pos:2581 Instruction:"SUB Eb,Ib" Encoding:"0x82 /5 iz"/"MI" { .Instruction = ND_INS_SUB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_I86, - .Mnemonic = 845, + .Mnemonic = 847, .ValidPrefixes = ND_PREF_HLE|ND_PREF_LOCK, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_REAL|ND_MOD_V8086|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -71826,6 +74569,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -71840,12 +74584,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2576 Instruction:"SUB Ev,Ib" Encoding:"0x83 /5 ib"/"MI" + // Pos:2582 Instruction:"SUB Ev,Ib" Encoding:"0x83 /5 ib"/"MI" { .Instruction = ND_INS_SUB, .Category = ND_CAT_ARITH, .IsaSet = ND_SET_I86, - .Mnemonic = 845, + .Mnemonic = 847, .ValidPrefixes = ND_PREF_HLE|ND_PREF_LOCK, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -71854,6 +74598,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -71868,12 +74613,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2577 Instruction:"SUBPD Vpd,Wpd" Encoding:"0x66 0x0F 0x5C /r"/"RM" + // Pos:2583 Instruction:"SUBPD Vpd,Wpd" Encoding:"0x66 0x0F 0x5C /r"/"RM" { .Instruction = ND_INS_SUBPD, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 846, + .Mnemonic = 848, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -71882,6 +74627,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -71895,12 +74641,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2578 Instruction:"SUBPS Vps,Wps" Encoding:"NP 0x0F 0x5C /r"/"RM" + // Pos:2584 Instruction:"SUBPS Vps,Wps" Encoding:"NP 0x0F 0x5C /r"/"RM" { .Instruction = ND_INS_SUBPS, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE, - .Mnemonic = 847, + .Mnemonic = 849, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -71909,6 +74655,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -71922,12 +74669,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2579 Instruction:"SUBSD Vsd,Wsd" Encoding:"0xF2 0x0F 0x5C /r"/"RM" + // Pos:2585 Instruction:"SUBSD Vsd,Wsd" Encoding:"0xF2 0x0F 0x5C /r"/"RM" { .Instruction = ND_INS_SUBSD, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 848, + .Mnemonic = 850, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -71936,6 +74683,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -71949,12 +74697,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2580 Instruction:"SUBSS Vss,Wss" Encoding:"0xF3 0x0F 0x5C /r"/"RM" + // Pos:2586 Instruction:"SUBSS Vss,Wss" Encoding:"0xF3 0x0F 0x5C /r"/"RM" { .Instruction = ND_INS_SUBSS, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE, - .Mnemonic = 849, + .Mnemonic = 851, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -71963,6 +74711,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -71976,12 +74725,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2581 Instruction:"SWAPGS" Encoding:"0x0F 0x01 /0xF8"/"" + // Pos:2587 Instruction:"SWAPGS" Encoding:"0x0F 0x01 /0xF8"/"" { .Instruction = ND_INS_SWAPGS, .Category = ND_CAT_SYSTEM, .IsaSet = ND_SET_LONGMODE, - .Mnemonic = 850, + .Mnemonic = 852, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -71990,6 +74739,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -72003,12 +74753,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2582 Instruction:"SYSCALL" Encoding:"0x0F 0x05"/"" + // Pos:2588 Instruction:"SYSCALL" Encoding:"0x0F 0x05"/"" { .Instruction = ND_INS_SYSCALL, .Category = ND_CAT_SYSCALL, .IsaSet = ND_SET_AMD, - .Mnemonic = 851, + .Mnemonic = 853, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_REAL|ND_MOD_V8086|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -72017,6 +74767,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -72038,12 +74789,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2583 Instruction:"SYSENTER" Encoding:"0x0F 0x34"/"" + // Pos:2589 Instruction:"SYSENTER" Encoding:"0x0F 0x34"/"" { .Instruction = ND_INS_SYSENTER, .Category = ND_CAT_SYSCALL, .IsaSet = ND_SET_PPRO, - .Mnemonic = 852, + .Mnemonic = 854, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -72052,6 +74803,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -72072,12 +74824,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2584 Instruction:"SYSEXIT" Encoding:"0x0F 0x35"/"" + // Pos:2590 Instruction:"SYSEXIT" Encoding:"0x0F 0x35"/"" { .Instruction = ND_INS_SYSEXIT, .Category = ND_CAT_SYSRET, .IsaSet = ND_SET_PPRO, - .Mnemonic = 853, + .Mnemonic = 855, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -72086,6 +74838,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -72105,12 +74858,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2585 Instruction:"SYSRET" Encoding:"0x0F 0x07"/"" + // Pos:2591 Instruction:"SYSRET" Encoding:"0x0F 0x07"/"" { .Instruction = ND_INS_SYSRET, .Category = ND_CAT_SYSRET, .IsaSet = ND_SET_AMD, - .Mnemonic = 854, + .Mnemonic = 856, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_REAL|ND_MOD_V8086|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -72119,6 +74872,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -72138,12 +74892,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2586 Instruction:"T1MSKC By,Ey" Encoding:"xop m:9 0x01 /7"/"VM" + // Pos:2592 Instruction:"T1MSKC By,Ey" Encoding:"xop m:9 0x01 /7"/"VM" { .Instruction = ND_INS_T1MSKC, .Category = ND_CAT_BITBYTE, .IsaSet = ND_SET_TBM, - .Mnemonic = 855, + .Mnemonic = 857, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -72152,6 +74906,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -72165,40 +74920,236 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2587 Instruction:"TCMMIMFP16PS rTt,mTt,vTt" Encoding:"vex m:2 p:1 l:0 w:0 0x6C /r:reg"/"" + // Pos:2593 Instruction:"T2RPNTLVWZ0 rTt+1,Mt" Encoding:"vex m:2 p:0 l:0 w:0 0x6E /r:mem sibmem"/"M" { - .Instruction = ND_INS_TCMMIMFP16PS, + .Instruction = ND_INS_T2RPNTLVWZ0, .Category = ND_CAT_AMX, - .IsaSet = ND_SET_AMXCOMPLEX, - .Mnemonic = 856, + .IsaSet = ND_SET_AMXTRANSPOSE, + .Mnemonic = 858, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, .ValidDecorators = 0, - .OpsCount = ND_OPS_CNT(3, 0), + .OpsCount = ND_OPS_CNT(2, 0), .TupleType = 0, - .ExcType = ND_EXT_AMX_E4, + .ExcType = ND_EXT_AMX_E11, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, .ClearedFlags = 0, - .Attributes = ND_FLAG_MODRM|ND_FLAG_O64, - .CpuidFlag = ND_CFF_AMXCOMPLEX, + .Attributes = ND_FLAG_MODRM|ND_FLAG_SIBMEM|ND_FLAG_NOV|ND_FLAG_O64, + .CpuidFlag = ND_CFF_AMXTRANSPOSE, .Operands = { - OP(ND_OPT_rT, ND_OPS_t, 0, ND_OPA_RW, 0, 0), - OP(ND_OPT_mT, ND_OPS_t, 0, ND_OPA_R, 0, 0), - OP(ND_OPT_vT, ND_OPS_t, 0, ND_OPA_R, 0, 0), + OP(ND_OPT_rT, ND_OPS_t, 0, ND_OPA_W, 0, 2), + OP(ND_OPT_M, ND_OPS_t, 0, ND_OPA_R, 0, 0), }, }, - // Pos:2588 Instruction:"TCMMRLFP16PS rTt,mTt,vTt" Encoding:"vex m:2 p:0 l:0 w:0 0x6C /r:reg"/"" + // Pos:2594 Instruction:"T2RPNTLVWZ0RS rTt+1,Mt" Encoding:"vex m:5 p:0 l:0 w:0 0xF8 /r:mem sibmem"/"M" { - .Instruction = ND_INS_TCMMRLFP16PS, + .Instruction = ND_INS_T2RPNTLVWZ0RS, + .Category = ND_CAT_AMX, + .IsaSet = ND_SET_AMXTRANSPOSE, + .Mnemonic = 859, + .ValidPrefixes = 0, + .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, + .ValidDecorators = 0, + .OpsCount = ND_OPS_CNT(2, 0), + .TupleType = 0, + .ExcType = ND_EXT_AMX_E11, + .FpuFlags = 0, + .EvexMode = 0, + .SimdExc = 0, + .TestedFlags = 0, + .ModifiedFlags = 0, + .SetFlags = 0, + .ClearedFlags = 0, + .Attributes = ND_FLAG_MODRM|ND_FLAG_SIBMEM|ND_FLAG_NOV|ND_FLAG_O64, + .CpuidFlag = ND_CFF_AMXTRANSPOSE, + .Operands = + { + OP(ND_OPT_rT, ND_OPS_t, 0, ND_OPA_W, 0, 2), + OP(ND_OPT_M, ND_OPS_t, 0, ND_OPA_R, 0, 0), + }, + }, + + // Pos:2595 Instruction:"T2RPNTLVWZ0RST1 rTt+1,Mt" Encoding:"vex m:5 p:0 l:0 w:0 0xF9 /r:mem sibmem"/"M" + { + .Instruction = ND_INS_T2RPNTLVWZ0RST1, + .Category = ND_CAT_AMX, + .IsaSet = ND_SET_AMXTRANSPOSE, + .Mnemonic = 860, + .ValidPrefixes = 0, + .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, + .ValidDecorators = 0, + .OpsCount = ND_OPS_CNT(2, 0), + .TupleType = 0, + .ExcType = ND_EXT_AMX_E11, + .FpuFlags = 0, + .EvexMode = 0, + .SimdExc = 0, + .TestedFlags = 0, + .ModifiedFlags = 0, + .SetFlags = 0, + .ClearedFlags = 0, + .Attributes = ND_FLAG_MODRM|ND_FLAG_SIBMEM|ND_FLAG_NOV|ND_FLAG_O64, + .CpuidFlag = ND_CFF_AMXTRANSPOSE, + .Operands = + { + OP(ND_OPT_rT, ND_OPS_t, 0, ND_OPA_W, 0, 2), + OP(ND_OPT_M, ND_OPS_t, 0, ND_OPA_R, 0, 0), + }, + }, + + // Pos:2596 Instruction:"T2RPNTLVWZ0T1 rTt+1,Mt" Encoding:"vex m:2 p:0 l:0 w:0 0x6F /r:mem sibmem"/"M" + { + .Instruction = ND_INS_T2RPNTLVWZ0T1, + .Category = ND_CAT_AMX, + .IsaSet = ND_SET_AMXTRANSPOSE, + .Mnemonic = 861, + .ValidPrefixes = 0, + .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, + .ValidDecorators = 0, + .OpsCount = ND_OPS_CNT(2, 0), + .TupleType = 0, + .ExcType = ND_EXT_AMX_E11, + .FpuFlags = 0, + .EvexMode = 0, + .SimdExc = 0, + .TestedFlags = 0, + .ModifiedFlags = 0, + .SetFlags = 0, + .ClearedFlags = 0, + .Attributes = ND_FLAG_MODRM|ND_FLAG_SIBMEM|ND_FLAG_NOV|ND_FLAG_O64, + .CpuidFlag = ND_CFF_AMXTRANSPOSE, + .Operands = + { + OP(ND_OPT_rT, ND_OPS_t, 0, ND_OPA_W, 0, 2), + OP(ND_OPT_M, ND_OPS_t, 0, ND_OPA_R, 0, 0), + }, + }, + + // Pos:2597 Instruction:"T2RPNTLVWZ1 rTt+1,Mt" Encoding:"vex m:2 p:1 l:0 w:0 0x6E /r:mem sibmem"/"M" + { + .Instruction = ND_INS_T2RPNTLVWZ1, + .Category = ND_CAT_AMX, + .IsaSet = ND_SET_AMXTRANSPOSE, + .Mnemonic = 862, + .ValidPrefixes = 0, + .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, + .ValidDecorators = 0, + .OpsCount = ND_OPS_CNT(2, 0), + .TupleType = 0, + .ExcType = ND_EXT_AMX_E11, + .FpuFlags = 0, + .EvexMode = 0, + .SimdExc = 0, + .TestedFlags = 0, + .ModifiedFlags = 0, + .SetFlags = 0, + .ClearedFlags = 0, + .Attributes = ND_FLAG_MODRM|ND_FLAG_SIBMEM|ND_FLAG_NOV|ND_FLAG_O64, + .CpuidFlag = ND_CFF_AMXTRANSPOSE, + .Operands = + { + OP(ND_OPT_rT, ND_OPS_t, 0, ND_OPA_W, 0, 2), + OP(ND_OPT_M, ND_OPS_t, 0, ND_OPA_R, 0, 0), + }, + }, + + // Pos:2598 Instruction:"T2RPNTLVWZ1RS rTt+1,Mt" Encoding:"vex m:5 p:1 l:0 w:0 0xF8 /r:mem sibmem"/"M" + { + .Instruction = ND_INS_T2RPNTLVWZ1RS, + .Category = ND_CAT_AMX, + .IsaSet = ND_SET_AMXTRANSPOSE, + .Mnemonic = 863, + .ValidPrefixes = 0, + .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, + .ValidDecorators = 0, + .OpsCount = ND_OPS_CNT(2, 0), + .TupleType = 0, + .ExcType = ND_EXT_AMX_E11, + .FpuFlags = 0, + .EvexMode = 0, + .SimdExc = 0, + .TestedFlags = 0, + .ModifiedFlags = 0, + .SetFlags = 0, + .ClearedFlags = 0, + .Attributes = ND_FLAG_MODRM|ND_FLAG_SIBMEM|ND_FLAG_NOV|ND_FLAG_O64, + .CpuidFlag = ND_CFF_AMXTRANSPOSE, + .Operands = + { + OP(ND_OPT_rT, ND_OPS_t, 0, ND_OPA_W, 0, 2), + OP(ND_OPT_M, ND_OPS_t, 0, ND_OPA_R, 0, 0), + }, + }, + + // Pos:2599 Instruction:"T2RPNTLVWZ1RST1 rTt+1,Mt" Encoding:"vex m:5 p:1 l:0 w:0 0xF9 /r:mem sibmem"/"M" + { + .Instruction = ND_INS_T2RPNTLVWZ1RST1, + .Category = ND_CAT_AMX, + .IsaSet = ND_SET_AMXTRANSPOSE, + .Mnemonic = 864, + .ValidPrefixes = 0, + .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, + .ValidDecorators = 0, + .OpsCount = ND_OPS_CNT(2, 0), + .TupleType = 0, + .ExcType = ND_EXT_AMX_E11, + .FpuFlags = 0, + .EvexMode = 0, + .SimdExc = 0, + .TestedFlags = 0, + .ModifiedFlags = 0, + .SetFlags = 0, + .ClearedFlags = 0, + .Attributes = ND_FLAG_MODRM|ND_FLAG_SIBMEM|ND_FLAG_NOV|ND_FLAG_O64, + .CpuidFlag = ND_CFF_AMXTRANSPOSE, + .Operands = + { + OP(ND_OPT_rT, ND_OPS_t, 0, ND_OPA_W, 0, 2), + OP(ND_OPT_M, ND_OPS_t, 0, ND_OPA_R, 0, 0), + }, + }, + + // Pos:2600 Instruction:"T2RPNTLVWZ1T1 rTt+1,Mt" Encoding:"vex m:2 p:1 l:0 w:0 0x6F /r:mem sibmem"/"M" + { + .Instruction = ND_INS_T2RPNTLVWZ1T1, + .Category = ND_CAT_AMX, + .IsaSet = ND_SET_AMXTRANSPOSE, + .Mnemonic = 865, + .ValidPrefixes = 0, + .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, + .ValidDecorators = 0, + .OpsCount = ND_OPS_CNT(2, 0), + .TupleType = 0, + .ExcType = ND_EXT_AMX_E11, + .FpuFlags = 0, + .EvexMode = 0, + .SimdExc = 0, + .TestedFlags = 0, + .ModifiedFlags = 0, + .SetFlags = 0, + .ClearedFlags = 0, + .Attributes = ND_FLAG_MODRM|ND_FLAG_SIBMEM|ND_FLAG_NOV|ND_FLAG_O64, + .CpuidFlag = ND_CFF_AMXTRANSPOSE, + .Operands = + { + OP(ND_OPT_rT, ND_OPS_t, 0, ND_OPA_W, 0, 2), + OP(ND_OPT_M, ND_OPS_t, 0, ND_OPA_R, 0, 0), + }, + }, + + // Pos:2601 Instruction:"TCMMIMFP16PS rTt,mTt,vTt" Encoding:"vex m:2 p:1 l:0 w:0 0x6C /r:reg"/"" + { + .Instruction = ND_INS_TCMMIMFP16PS, .Category = ND_CAT_AMX, .IsaSet = ND_SET_AMXCOMPLEX, - .Mnemonic = 857, + .Mnemonic = 866, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -72207,6 +75158,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_AMX_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -72221,12 +75173,388 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2589 Instruction:"TDCALL" Encoding:"0x66 0x0F 0x01 /0xCC"/"" + // Pos:2602 Instruction:"TCMMRLFP16PS rTt,mTt,vTt" Encoding:"vex m:2 p:0 l:0 w:0 0x6C /r:reg"/"" + { + .Instruction = ND_INS_TCMMRLFP16PS, + .Category = ND_CAT_AMX, + .IsaSet = ND_SET_AMXCOMPLEX, + .Mnemonic = 867, + .ValidPrefixes = 0, + .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, + .ValidDecorators = 0, + .OpsCount = ND_OPS_CNT(3, 0), + .TupleType = 0, + .ExcType = ND_EXT_AMX_E4, + .FpuFlags = 0, + .EvexMode = 0, + .SimdExc = 0, + .TestedFlags = 0, + .ModifiedFlags = 0, + .SetFlags = 0, + .ClearedFlags = 0, + .Attributes = ND_FLAG_MODRM|ND_FLAG_O64, + .CpuidFlag = ND_CFF_AMXCOMPLEX, + .Operands = + { + OP(ND_OPT_rT, ND_OPS_t, 0, ND_OPA_RW, 0, 0), + OP(ND_OPT_mT, ND_OPS_t, 0, ND_OPA_R, 0, 0), + OP(ND_OPT_vT, ND_OPS_t, 0, ND_OPA_R, 0, 0), + }, + }, + + // Pos:2603 Instruction:"TCONJTCMMIMFP16PS rTt,mTt,vTt" Encoding:"vex m:2 p:0 l:0 w:0 0x6B /r:reg"/"" + { + .Instruction = ND_INS_TCONJTCMMIMFP16PS, + .Category = ND_CAT_AMX, + .IsaSet = ND_SET_AMXTRANSPOSE, + .Mnemonic = 868, + .ValidPrefixes = 0, + .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, + .ValidDecorators = 0, + .OpsCount = ND_OPS_CNT(3, 0), + .TupleType = 0, + .ExcType = ND_EXT_AMX_E10, + .FpuFlags = 0, + .EvexMode = 0, + .SimdExc = 0, + .TestedFlags = 0, + .ModifiedFlags = 0, + .SetFlags = 0, + .ClearedFlags = 0, + .Attributes = ND_FLAG_MODRM|ND_FLAG_O64, + .CpuidFlag = ND_CFF_AMXTRANSPOSE, + .Operands = + { + OP(ND_OPT_rT, ND_OPS_t, 0, ND_OPA_RW, 0, 0), + OP(ND_OPT_mT, ND_OPS_t, 0, ND_OPA_R, 0, 0), + OP(ND_OPT_vT, ND_OPS_t, 0, ND_OPA_R, 0, 0), + }, + }, + + // Pos:2604 Instruction:"TCONJTFP16 rTt,mTt" Encoding:"vex m:2 p:1 l:0 w:0 0x6B /r:reg"/"" + { + .Instruction = ND_INS_TCONJTFP16, + .Category = ND_CAT_AMX, + .IsaSet = ND_SET_AMXTRANSPOSE, + .Mnemonic = 869, + .ValidPrefixes = 0, + .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, + .ValidDecorators = 0, + .OpsCount = ND_OPS_CNT(2, 0), + .TupleType = 0, + .ExcType = ND_EXT_AMX_E9, + .FpuFlags = 0, + .EvexMode = 0, + .SimdExc = 0, + .TestedFlags = 0, + .ModifiedFlags = 0, + .SetFlags = 0, + .ClearedFlags = 0, + .Attributes = ND_FLAG_MODRM|ND_FLAG_NOV|ND_FLAG_O64, + .CpuidFlag = ND_CFF_AMXTRANSPOSE, + .Operands = + { + OP(ND_OPT_rT, ND_OPS_t, 0, ND_OPA_W, 0, 0), + OP(ND_OPT_mT, ND_OPS_t, 0, ND_OPA_R, 0, 0), + }, + }, + + // Pos:2605 Instruction:"TCVTROWD2PS Voq,mTt,Bd" Encoding:"evex m:2 p:2 l:2 w:0 0x4A /r:reg"/"RV" + { + .Instruction = ND_INS_TCVTROWD2PS, + .Category = ND_CAT_AMX, + .IsaSet = ND_SET_AMXAVX512, + .Mnemonic = 870, + .ValidPrefixes = 0, + .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, + .ValidDecorators = 0, + .OpsCount = ND_OPS_CNT(3, 0), + .TupleType = 0, + .ExcType = ND_EXT_AMX_EVEX_E8, + .FpuFlags = 0, + .EvexMode = 0, + .SimdExc = 0, + .TestedFlags = 0, + .ModifiedFlags = 0, + .SetFlags = 0, + .ClearedFlags = 0, + .Attributes = ND_FLAG_MODRM|ND_FLAG_VECTOR, + .CpuidFlag = ND_CFF_AMXAVX512, + .Operands = + { + OP(ND_OPT_V, ND_OPS_oq, 0, ND_OPA_W, 0, 0), + OP(ND_OPT_mT, ND_OPS_t, 0, ND_OPA_R, 0, 0), + OP(ND_OPT_B, ND_OPS_d, 0, ND_OPA_R, 0, 0), + }, + }, + + // Pos:2606 Instruction:"TCVTROWD2PS Voq,mTt,Ib" Encoding:"evex m:3 p:2 l:2 w:0 0x07 /r:reg ib"/"RI" + { + .Instruction = ND_INS_TCVTROWD2PS, + .Category = ND_CAT_AMX, + .IsaSet = ND_SET_AMXAVX512, + .Mnemonic = 870, + .ValidPrefixes = 0, + .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, + .ValidDecorators = 0, + .OpsCount = ND_OPS_CNT(3, 0), + .TupleType = 0, + .ExcType = ND_EXT_AMX_EVEX_E7, + .FpuFlags = 0, + .EvexMode = 0, + .SimdExc = 0, + .TestedFlags = 0, + .ModifiedFlags = 0, + .SetFlags = 0, + .ClearedFlags = 0, + .Attributes = ND_FLAG_MODRM|ND_FLAG_VECTOR|ND_FLAG_NOV|ND_FLAG_NOVP, + .CpuidFlag = ND_CFF_AMXAVX512, + .Operands = + { + OP(ND_OPT_V, ND_OPS_oq, 0, ND_OPA_W, 0, 0), + OP(ND_OPT_mT, ND_OPS_t, 0, ND_OPA_R, 0, 0), + OP(ND_OPT_I, ND_OPS_b, 0, ND_OPA_R, 0, 0), + }, + }, + + // Pos:2607 Instruction:"TCVTROWPS2PBF16H Voq,mTt,Bd" Encoding:"evex m:2 p:3 l:2 w:0 0x6D /r:reg"/"RV" + { + .Instruction = ND_INS_TCVTROWPS2PBF16H, + .Category = ND_CAT_AMX, + .IsaSet = ND_SET_AMXAVX512, + .Mnemonic = 871, + .ValidPrefixes = 0, + .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, + .ValidDecorators = 0, + .OpsCount = ND_OPS_CNT(3, 0), + .TupleType = 0, + .ExcType = ND_EXT_AMX_EVEX_E8, + .FpuFlags = 0, + .EvexMode = 0, + .SimdExc = 0, + .TestedFlags = 0, + .ModifiedFlags = 0, + .SetFlags = 0, + .ClearedFlags = 0, + .Attributes = ND_FLAG_MODRM|ND_FLAG_VECTOR, + .CpuidFlag = ND_CFF_AMXAVX512, + .Operands = + { + OP(ND_OPT_V, ND_OPS_oq, 0, ND_OPA_W, 0, 0), + OP(ND_OPT_mT, ND_OPS_t, 0, ND_OPA_R, 0, 0), + OP(ND_OPT_B, ND_OPS_d, 0, ND_OPA_R, 0, 0), + }, + }, + + // Pos:2608 Instruction:"TCVTROWPS2PBF16H Voq,mTt,Ib" Encoding:"evex m:3 p:3 l:2 w:0 0x07 /r:reg ib"/"RI" + { + .Instruction = ND_INS_TCVTROWPS2PBF16H, + .Category = ND_CAT_AMX, + .IsaSet = ND_SET_AMXAVX512, + .Mnemonic = 871, + .ValidPrefixes = 0, + .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, + .ValidDecorators = 0, + .OpsCount = ND_OPS_CNT(3, 0), + .TupleType = 0, + .ExcType = ND_EXT_AMX_EVEX_E7, + .FpuFlags = 0, + .EvexMode = 0, + .SimdExc = 0, + .TestedFlags = 0, + .ModifiedFlags = 0, + .SetFlags = 0, + .ClearedFlags = 0, + .Attributes = ND_FLAG_MODRM|ND_FLAG_VECTOR|ND_FLAG_NOV|ND_FLAG_NOVP, + .CpuidFlag = ND_CFF_AMXAVX512, + .Operands = + { + OP(ND_OPT_V, ND_OPS_oq, 0, ND_OPA_W, 0, 0), + OP(ND_OPT_mT, ND_OPS_t, 0, ND_OPA_R, 0, 0), + OP(ND_OPT_I, ND_OPS_b, 0, ND_OPA_R, 0, 0), + }, + }, + + // Pos:2609 Instruction:"TCVTROWPS2PBF16L Voq,mTt,Bd" Encoding:"evex m:2 p:2 l:2 w:0 0x6D /r:reg"/"RV" + { + .Instruction = ND_INS_TCVTROWPS2PBF16L, + .Category = ND_CAT_AMX, + .IsaSet = ND_SET_AMXAVX512, + .Mnemonic = 872, + .ValidPrefixes = 0, + .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, + .ValidDecorators = 0, + .OpsCount = ND_OPS_CNT(3, 0), + .TupleType = 0, + .ExcType = ND_EXT_AMX_EVEX_E8, + .FpuFlags = 0, + .EvexMode = 0, + .SimdExc = 0, + .TestedFlags = 0, + .ModifiedFlags = 0, + .SetFlags = 0, + .ClearedFlags = 0, + .Attributes = ND_FLAG_MODRM|ND_FLAG_VECTOR, + .CpuidFlag = ND_CFF_AMXAVX512, + .Operands = + { + OP(ND_OPT_V, ND_OPS_oq, 0, ND_OPA_W, 0, 0), + OP(ND_OPT_mT, ND_OPS_t, 0, ND_OPA_R, 0, 0), + OP(ND_OPT_B, ND_OPS_d, 0, ND_OPA_R, 0, 0), + }, + }, + + // Pos:2610 Instruction:"TCVTROWPS2PBF16L Voq,mTt,Ib" Encoding:"evex m:3 p:2 l:2 w:0 0x77 /r:reg ib"/"RI" + { + .Instruction = ND_INS_TCVTROWPS2PBF16L, + .Category = ND_CAT_AMX, + .IsaSet = ND_SET_AMXAVX512, + .Mnemonic = 872, + .ValidPrefixes = 0, + .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, + .ValidDecorators = 0, + .OpsCount = ND_OPS_CNT(3, 0), + .TupleType = 0, + .ExcType = ND_EXT_AMX_EVEX_E7, + .FpuFlags = 0, + .EvexMode = 0, + .SimdExc = 0, + .TestedFlags = 0, + .ModifiedFlags = 0, + .SetFlags = 0, + .ClearedFlags = 0, + .Attributes = ND_FLAG_MODRM|ND_FLAG_VECTOR|ND_FLAG_NOV|ND_FLAG_NOVP, + .CpuidFlag = ND_CFF_AMXAVX512, + .Operands = + { + OP(ND_OPT_V, ND_OPS_oq, 0, ND_OPA_W, 0, 0), + OP(ND_OPT_mT, ND_OPS_t, 0, ND_OPA_R, 0, 0), + OP(ND_OPT_I, ND_OPS_b, 0, ND_OPA_R, 0, 0), + }, + }, + + // Pos:2611 Instruction:"TCVTROWPS2PHH Voq,mTt,Bd" Encoding:"evex m:2 p:0 l:2 w:0 0x6D /r:reg"/"RV" + { + .Instruction = ND_INS_TCVTROWPS2PHH, + .Category = ND_CAT_AMX, + .IsaSet = ND_SET_AMXAVX512, + .Mnemonic = 873, + .ValidPrefixes = 0, + .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, + .ValidDecorators = 0, + .OpsCount = ND_OPS_CNT(3, 0), + .TupleType = 0, + .ExcType = ND_EXT_AMX_EVEX_E8, + .FpuFlags = 0, + .EvexMode = 0, + .SimdExc = 0, + .TestedFlags = 0, + .ModifiedFlags = 0, + .SetFlags = 0, + .ClearedFlags = 0, + .Attributes = ND_FLAG_MODRM|ND_FLAG_VECTOR, + .CpuidFlag = ND_CFF_AMXAVX512, + .Operands = + { + OP(ND_OPT_V, ND_OPS_oq, 0, ND_OPA_W, 0, 0), + OP(ND_OPT_mT, ND_OPS_t, 0, ND_OPA_R, 0, 0), + OP(ND_OPT_B, ND_OPS_d, 0, ND_OPA_R, 0, 0), + }, + }, + + // Pos:2612 Instruction:"TCVTROWPS2PHH Voq,mTt,Ib" Encoding:"evex m:3 p:0 l:2 w:0 0x07 /r:reg ib"/"RI" + { + .Instruction = ND_INS_TCVTROWPS2PHH, + .Category = ND_CAT_AMX, + .IsaSet = ND_SET_AMXAVX512, + .Mnemonic = 873, + .ValidPrefixes = 0, + .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, + .ValidDecorators = 0, + .OpsCount = ND_OPS_CNT(3, 0), + .TupleType = 0, + .ExcType = ND_EXT_AMX_EVEX_E7, + .FpuFlags = 0, + .EvexMode = 0, + .SimdExc = 0, + .TestedFlags = 0, + .ModifiedFlags = 0, + .SetFlags = 0, + .ClearedFlags = 0, + .Attributes = ND_FLAG_MODRM|ND_FLAG_VECTOR|ND_FLAG_NOV|ND_FLAG_NOVP, + .CpuidFlag = ND_CFF_AMXAVX512, + .Operands = + { + OP(ND_OPT_V, ND_OPS_oq, 0, ND_OPA_W, 0, 0), + OP(ND_OPT_mT, ND_OPS_t, 0, ND_OPA_R, 0, 0), + OP(ND_OPT_I, ND_OPS_b, 0, ND_OPA_R, 0, 0), + }, + }, + + // Pos:2613 Instruction:"TCVTROWPS2PHL Voq,mTt,Bd" Encoding:"evex m:2 p:1 l:2 w:0 0x6D /r:reg"/"RV" + { + .Instruction = ND_INS_TCVTROWPS2PHL, + .Category = ND_CAT_AMX, + .IsaSet = ND_SET_AMXAVX512, + .Mnemonic = 874, + .ValidPrefixes = 0, + .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, + .ValidDecorators = 0, + .OpsCount = ND_OPS_CNT(3, 0), + .TupleType = 0, + .ExcType = ND_EXT_AMX_EVEX_E8, + .FpuFlags = 0, + .EvexMode = 0, + .SimdExc = 0, + .TestedFlags = 0, + .ModifiedFlags = 0, + .SetFlags = 0, + .ClearedFlags = 0, + .Attributes = ND_FLAG_MODRM|ND_FLAG_VECTOR, + .CpuidFlag = ND_CFF_AMXAVX512, + .Operands = + { + OP(ND_OPT_V, ND_OPS_oq, 0, ND_OPA_W, 0, 0), + OP(ND_OPT_mT, ND_OPS_t, 0, ND_OPA_R, 0, 0), + OP(ND_OPT_B, ND_OPS_d, 0, ND_OPA_R, 0, 0), + }, + }, + + // Pos:2614 Instruction:"TCVTROWPS2PHL Voq,mTt,Ib" Encoding:"evex m:3 p:3 l:2 w:0 0x77 /r:reg ib"/"RI" + { + .Instruction = ND_INS_TCVTROWPS2PHL, + .Category = ND_CAT_AMX, + .IsaSet = ND_SET_AMXAVX512, + .Mnemonic = 874, + .ValidPrefixes = 0, + .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, + .ValidDecorators = 0, + .OpsCount = ND_OPS_CNT(3, 0), + .TupleType = 0, + .ExcType = ND_EXT_AMX_EVEX_E7, + .FpuFlags = 0, + .EvexMode = 0, + .SimdExc = 0, + .TestedFlags = 0, + .ModifiedFlags = 0, + .SetFlags = 0, + .ClearedFlags = 0, + .Attributes = ND_FLAG_MODRM|ND_FLAG_VECTOR|ND_FLAG_NOV|ND_FLAG_NOVP, + .CpuidFlag = ND_CFF_AMXAVX512, + .Operands = + { + OP(ND_OPT_V, ND_OPS_oq, 0, ND_OPA_W, 0, 0), + OP(ND_OPT_mT, ND_OPS_t, 0, ND_OPA_R, 0, 0), + OP(ND_OPT_I, ND_OPS_b, 0, ND_OPA_R, 0, 0), + }, + }, + + // Pos:2615 Instruction:"TDCALL" Encoding:"0x66 0x0F 0x01 /0xCC"/"" { .Instruction = ND_INS_TDCALL, .Category = ND_CAT_TDX, .IsaSet = ND_SET_TDX, - .Mnemonic = 858, + .Mnemonic = 875, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_REAL|ND_MOD_V8086|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXN|ND_MOD_VMXN_SEAM|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -72235,6 +75563,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -72247,12 +75576,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2590 Instruction:"TDPBF16PS rTt,mTt,vTt" Encoding:"vex m:2 p:2 l:0 w:0 0x5C /r:reg"/"" + // Pos:2616 Instruction:"TDPBF16PS rTt,mTt,vTt" Encoding:"vex m:2 p:2 l:0 w:0 0x5C /r:reg"/"" { .Instruction = ND_INS_TDPBF16PS, .Category = ND_CAT_AMX, .IsaSet = ND_SET_AMXBF16, - .Mnemonic = 859, + .Mnemonic = 876, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -72261,6 +75590,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_AMX_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -72275,12 +75605,70 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2591 Instruction:"TDPBSSD rTt,mTt,vTt" Encoding:"vex m:2 p:3 l:0 w:0 0x5E /r:reg"/"" + // Pos:2617 Instruction:"TDPBF8PS rTt,mTt,vTt" Encoding:"vex m:5 p:0 l:0 w:0 0xFD /r:reg"/"" + { + .Instruction = ND_INS_TDPBF8PS, + .Category = ND_CAT_AMX, + .IsaSet = ND_SET_AMXFP8, + .Mnemonic = 877, + .ValidPrefixes = 0, + .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, + .ValidDecorators = 0, + .OpsCount = ND_OPS_CNT(3, 0), + .TupleType = 0, + .ExcType = ND_EXT_AMX_E4, + .FpuFlags = 0, + .EvexMode = 0, + .SimdExc = 0, + .TestedFlags = 0, + .ModifiedFlags = 0, + .SetFlags = 0, + .ClearedFlags = 0, + .Attributes = ND_FLAG_MODRM|ND_FLAG_O64, + .CpuidFlag = ND_CFF_AMXFP8, + .Operands = + { + OP(ND_OPT_rT, ND_OPS_t, 0, ND_OPA_RW, 0, 0), + OP(ND_OPT_mT, ND_OPS_t, 0, ND_OPA_R, 0, 0), + OP(ND_OPT_vT, ND_OPS_t, 0, ND_OPA_R, 0, 0), + }, + }, + + // Pos:2618 Instruction:"TDPBHF8PS rTt,mTt,vTt" Encoding:"vex m:5 p:3 l:0 w:0 0xFD /r:reg"/"" + { + .Instruction = ND_INS_TDPBHF8PS, + .Category = ND_CAT_AMX, + .IsaSet = ND_SET_AMXFP8, + .Mnemonic = 878, + .ValidPrefixes = 0, + .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, + .ValidDecorators = 0, + .OpsCount = ND_OPS_CNT(3, 0), + .TupleType = 0, + .ExcType = ND_EXT_AMX_E4, + .FpuFlags = 0, + .EvexMode = 0, + .SimdExc = 0, + .TestedFlags = 0, + .ModifiedFlags = 0, + .SetFlags = 0, + .ClearedFlags = 0, + .Attributes = ND_FLAG_MODRM|ND_FLAG_O64, + .CpuidFlag = ND_CFF_AMXFP8, + .Operands = + { + OP(ND_OPT_rT, ND_OPS_t, 0, ND_OPA_RW, 0, 0), + OP(ND_OPT_mT, ND_OPS_t, 0, ND_OPA_R, 0, 0), + OP(ND_OPT_vT, ND_OPS_t, 0, ND_OPA_R, 0, 0), + }, + }, + + // Pos:2619 Instruction:"TDPBSSD rTt,mTt,vTt" Encoding:"vex m:2 p:3 l:0 w:0 0x5E /r:reg"/"" { .Instruction = ND_INS_TDPBSSD, .Category = ND_CAT_AMX, .IsaSet = ND_SET_AMXINT8, - .Mnemonic = 860, + .Mnemonic = 879, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -72289,6 +75677,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_AMX_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -72303,12 +75692,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2592 Instruction:"TDPBSUD rTt,mTt,vTt" Encoding:"vex m:2 p:2 l:0 w:0 0x5E /r:reg"/"" + // Pos:2620 Instruction:"TDPBSUD rTt,mTt,vTt" Encoding:"vex m:2 p:2 l:0 w:0 0x5E /r:reg"/"" { .Instruction = ND_INS_TDPBSUD, .Category = ND_CAT_AMX, .IsaSet = ND_SET_AMXINT8, - .Mnemonic = 861, + .Mnemonic = 880, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -72317,6 +75706,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_AMX_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -72331,12 +75721,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2593 Instruction:"TDPBUSD rTt,mTt,vTt" Encoding:"vex m:2 p:1 l:0 w:0 0x5E /r:reg"/"" + // Pos:2621 Instruction:"TDPBUSD rTt,mTt,vTt" Encoding:"vex m:2 p:1 l:0 w:0 0x5E /r:reg"/"" { .Instruction = ND_INS_TDPBUSD, .Category = ND_CAT_AMX, .IsaSet = ND_SET_AMXINT8, - .Mnemonic = 862, + .Mnemonic = 881, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -72345,6 +75735,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_AMX_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -72359,12 +75750,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2594 Instruction:"TDPBUUD rTt,mTt,vTt" Encoding:"vex m:2 p:0 l:0 w:0 0x5E /r:reg"/"" + // Pos:2622 Instruction:"TDPBUUD rTt,mTt,vTt" Encoding:"vex m:2 p:0 l:0 w:0 0x5E /r:reg"/"" { .Instruction = ND_INS_TDPBUUD, .Category = ND_CAT_AMX, .IsaSet = ND_SET_AMXINT8, - .Mnemonic = 863, + .Mnemonic = 882, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -72373,6 +75764,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_AMX_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -72387,12 +75779,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2595 Instruction:"TDPFP16PS rTt,mTt,vTt" Encoding:"vex m:2 p:3 l:0 w:0 0x5C /r:reg"/"" + // Pos:2623 Instruction:"TDPFP16PS rTt,mTt,vTt" Encoding:"vex m:2 p:3 l:0 w:0 0x5C /r:reg"/"" { .Instruction = ND_INS_TDPFP16PS, .Category = ND_CAT_AMX, .IsaSet = ND_SET_AMXFP16, - .Mnemonic = 864, + .Mnemonic = 883, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -72401,6 +75793,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_AMX_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -72415,12 +75808,70 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2596 Instruction:"TEST Eb,Gb" Encoding:"0x84 /r"/"MR" + // Pos:2624 Instruction:"TDPHBF8PS rTt,mTt,vTt" Encoding:"vex m:5 p:2 l:0 w:0 0xFD /r:reg"/"" + { + .Instruction = ND_INS_TDPHBF8PS, + .Category = ND_CAT_AMX, + .IsaSet = ND_SET_AMXFP8, + .Mnemonic = 884, + .ValidPrefixes = 0, + .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, + .ValidDecorators = 0, + .OpsCount = ND_OPS_CNT(3, 0), + .TupleType = 0, + .ExcType = ND_EXT_AMX_E4, + .FpuFlags = 0, + .EvexMode = 0, + .SimdExc = 0, + .TestedFlags = 0, + .ModifiedFlags = 0, + .SetFlags = 0, + .ClearedFlags = 0, + .Attributes = ND_FLAG_MODRM|ND_FLAG_O64, + .CpuidFlag = ND_CFF_AMXFP8, + .Operands = + { + OP(ND_OPT_rT, ND_OPS_t, 0, ND_OPA_RW, 0, 0), + OP(ND_OPT_mT, ND_OPS_t, 0, ND_OPA_R, 0, 0), + OP(ND_OPT_vT, ND_OPS_t, 0, ND_OPA_R, 0, 0), + }, + }, + + // Pos:2625 Instruction:"TDPHF8PS rTt,mTt,vTt" Encoding:"vex m:5 p:1 l:0 w:0 0xFD /r:reg"/"" + { + .Instruction = ND_INS_TDPHF8PS, + .Category = ND_CAT_AMX, + .IsaSet = ND_SET_AMXFP8, + .Mnemonic = 885, + .ValidPrefixes = 0, + .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, + .ValidDecorators = 0, + .OpsCount = ND_OPS_CNT(3, 0), + .TupleType = 0, + .ExcType = ND_EXT_AMX_E4, + .FpuFlags = 0, + .EvexMode = 0, + .SimdExc = 0, + .TestedFlags = 0, + .ModifiedFlags = 0, + .SetFlags = 0, + .ClearedFlags = 0, + .Attributes = ND_FLAG_MODRM|ND_FLAG_O64, + .CpuidFlag = ND_CFF_AMXFP8, + .Operands = + { + OP(ND_OPT_rT, ND_OPS_t, 0, ND_OPA_RW, 0, 0), + OP(ND_OPT_mT, ND_OPS_t, 0, ND_OPA_R, 0, 0), + OP(ND_OPT_vT, ND_OPS_t, 0, ND_OPA_R, 0, 0), + }, + }, + + // Pos:2626 Instruction:"TEST Eb,Gb" Encoding:"0x84 /r"/"MR" { .Instruction = ND_INS_TEST, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_I86, - .Mnemonic = 865, + .Mnemonic = 886, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -72429,6 +75880,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -72443,12 +75895,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2597 Instruction:"TEST Ev,Gv" Encoding:"0x85 /r"/"MR" + // Pos:2627 Instruction:"TEST Ev,Gv" Encoding:"0x85 /r"/"MR" { .Instruction = ND_INS_TEST, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_I86, - .Mnemonic = 865, + .Mnemonic = 886, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -72457,6 +75909,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -72471,12 +75924,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2598 Instruction:"TEST AL,Ib" Encoding:"0xA8 ib"/"I" + // Pos:2628 Instruction:"TEST AL,Ib" Encoding:"0xA8 ib"/"I" { .Instruction = ND_INS_TEST, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_I86, - .Mnemonic = 865, + .Mnemonic = 886, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -72485,6 +75938,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -72499,12 +75953,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2599 Instruction:"TEST rAX,Iz" Encoding:"0xA9 iz"/"I" + // Pos:2629 Instruction:"TEST rAX,Iz" Encoding:"0xA9 iz"/"I" { .Instruction = ND_INS_TEST, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_I86, - .Mnemonic = 865, + .Mnemonic = 886, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -72513,6 +75967,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -72527,12 +75982,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2600 Instruction:"TEST Eb,Ib" Encoding:"0xF6 /0 ib"/"MI" + // Pos:2630 Instruction:"TEST Eb,Ib" Encoding:"0xF6 /0 ib"/"MI" { .Instruction = ND_INS_TEST, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_I86, - .Mnemonic = 865, + .Mnemonic = 886, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -72541,6 +75996,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -72555,12 +76011,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2601 Instruction:"TEST Eb,Ib" Encoding:"0xF6 /1 ib"/"MI" + // Pos:2631 Instruction:"TEST Eb,Ib" Encoding:"0xF6 /1 ib"/"MI" { .Instruction = ND_INS_TEST, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_I86, - .Mnemonic = 865, + .Mnemonic = 886, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -72569,6 +76025,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -72583,12 +76040,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2602 Instruction:"TEST Ev,Iz" Encoding:"0xF7 /0 iz"/"MI" + // Pos:2632 Instruction:"TEST Ev,Iz" Encoding:"0xF7 /0 iz"/"MI" { .Instruction = ND_INS_TEST, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_I86, - .Mnemonic = 865, + .Mnemonic = 886, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -72597,6 +76054,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -72611,12 +76069,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2603 Instruction:"TEST Ev,Iz" Encoding:"0xF7 /1 iz"/"MI" + // Pos:2633 Instruction:"TEST Ev,Iz" Encoding:"0xF7 /1 iz"/"MI" { .Instruction = ND_INS_TEST, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_I86, - .Mnemonic = 865, + .Mnemonic = 886, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -72625,6 +76083,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -72639,12 +76098,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2604 Instruction:"TESTUI" Encoding:"0xF3 0x0F 0x01 /0xED"/"" + // Pos:2634 Instruction:"TESTUI" Encoding:"0xF3 0x0F 0x01 /0xED"/"" { .Instruction = ND_INS_TESTUI, .Category = ND_CAT_UINTR, .IsaSet = ND_SET_UINTR, - .Mnemonic = 866, + .Mnemonic = 887, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -72653,6 +76112,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF, .SetFlags = 0, @@ -72666,12 +76126,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2605 Instruction:"TILELOADD rTt,Mt" Encoding:"evex m:2 p:3 l:0 nf:0 w:0 0x4B /r:mem rm:4 sibmem"/"M" + // Pos:2635 Instruction:"TILELOADD rTt,Mt" Encoding:"evex m:2 p:3 l:0 nf:0 w:0 0x4B /r:mem rm:4 sibmem"/"M" { .Instruction = ND_INS_TILELOADD, .Category = ND_CAT_AMX, .IsaSet = ND_SET_APX_F, - .Mnemonic = 867, + .Mnemonic = 888, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -72680,6 +76140,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_AMX_EVEX_E3, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -72693,12 +76154,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2606 Instruction:"TILELOADD rTt,Mt" Encoding:"vex m:2 p:3 l:0 w:0 0x4B /r:mem sibmem"/"M" + // Pos:2636 Instruction:"TILELOADD rTt,Mt" Encoding:"vex m:2 p:3 l:0 w:0 0x4B /r:mem sibmem"/"M" { .Instruction = ND_INS_TILELOADD, .Category = ND_CAT_AMX, .IsaSet = ND_SET_AMXTILE, - .Mnemonic = 867, + .Mnemonic = 888, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -72707,6 +76168,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_AMX_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -72720,12 +76182,68 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2607 Instruction:"TILELOADDT1 rTt,Mt" Encoding:"evex m:2 p:1 l:0 nf:0 w:0 0x4B /r:mem rm:4 sibmem"/"M" + // Pos:2637 Instruction:"TILELOADDRS rTt,Mt" Encoding:"vex m:2 p:3 l:0 w:0 0x4A /r:mem sibmem"/"M" + { + .Instruction = ND_INS_TILELOADDRS, + .Category = ND_CAT_AMX, + .IsaSet = ND_SET_AMXMOVRS, + .Mnemonic = 889, + .ValidPrefixes = 0, + .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, + .ValidDecorators = 0, + .OpsCount = ND_OPS_CNT(2, 0), + .TupleType = 0, + .ExcType = ND_EXT_AMX_E3, + .FpuFlags = 0, + .EvexMode = 0, + .SimdExc = 0, + .TestedFlags = 0, + .ModifiedFlags = 0, + .SetFlags = 0, + .ClearedFlags = 0, + .Attributes = ND_FLAG_MODRM|ND_FLAG_SIBMEM|ND_FLAG_NOV|ND_FLAG_O64, + .CpuidFlag = ND_CFF_AMXMOVRS, + .Operands = + { + OP(ND_OPT_rT, ND_OPS_t, 0, ND_OPA_W, 0, 0), + OP(ND_OPT_M, ND_OPS_t, 0, ND_OPA_R, 0, 0), + }, + }, + + // Pos:2638 Instruction:"TILELOADDRST1 rTt,Mt" Encoding:"vex m:2 p:1 l:0 w:0 0x4A /r:mem sibmem"/"M" + { + .Instruction = ND_INS_TILELOADDRST1, + .Category = ND_CAT_AMX, + .IsaSet = ND_SET_AMXMOVRS, + .Mnemonic = 890, + .ValidPrefixes = 0, + .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, + .ValidDecorators = 0, + .OpsCount = ND_OPS_CNT(2, 0), + .TupleType = 0, + .ExcType = ND_EXT_AMX_E3, + .FpuFlags = 0, + .EvexMode = 0, + .SimdExc = 0, + .TestedFlags = 0, + .ModifiedFlags = 0, + .SetFlags = 0, + .ClearedFlags = 0, + .Attributes = ND_FLAG_MODRM|ND_FLAG_SIBMEM|ND_FLAG_NOV|ND_FLAG_O64, + .CpuidFlag = ND_CFF_AMXMOVRS, + .Operands = + { + OP(ND_OPT_rT, ND_OPS_t, 0, ND_OPA_W, 0, 0), + OP(ND_OPT_M, ND_OPS_t, 0, ND_OPA_R, 0, 0), + }, + }, + + // Pos:2639 Instruction:"TILELOADDT1 rTt,Mt" Encoding:"evex m:2 p:1 l:0 nf:0 w:0 0x4B /r:mem rm:4 sibmem"/"M" { .Instruction = ND_INS_TILELOADDT1, .Category = ND_CAT_AMX, .IsaSet = ND_SET_APX_F, - .Mnemonic = 868, + .Mnemonic = 891, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -72734,6 +76252,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_AMX_EVEX_E3, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -72747,12 +76266,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2608 Instruction:"TILELOADDT1 rTt,Mt" Encoding:"vex m:2 p:1 l:0 w:0 0x4B /r:mem sibmem"/"M" + // Pos:2640 Instruction:"TILELOADDT1 rTt,Mt" Encoding:"vex m:2 p:1 l:0 w:0 0x4B /r:mem sibmem"/"M" { .Instruction = ND_INS_TILELOADDT1, .Category = ND_CAT_AMX, .IsaSet = ND_SET_AMXTILE, - .Mnemonic = 868, + .Mnemonic = 891, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -72761,6 +76280,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_AMX_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -72774,12 +76294,70 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2609 Instruction:"TILERELEASE" Encoding:"vex m:2 p:0 l:0 w:0 0x49 /0xC0"/"" + // Pos:2641 Instruction:"TILEMOVROW Voq,mTt,Bd" Encoding:"evex m:2 p:1 l:2 w:0 0x4A /r:reg"/"RV" + { + .Instruction = ND_INS_TILEMOVROW, + .Category = ND_CAT_AMX, + .IsaSet = ND_SET_AMXAVX512, + .Mnemonic = 892, + .ValidPrefixes = 0, + .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, + .ValidDecorators = 0, + .OpsCount = ND_OPS_CNT(3, 0), + .TupleType = 0, + .ExcType = ND_EXT_AMX_EVEX_E8, + .FpuFlags = 0, + .EvexMode = 0, + .SimdExc = 0, + .TestedFlags = 0, + .ModifiedFlags = 0, + .SetFlags = 0, + .ClearedFlags = 0, + .Attributes = ND_FLAG_MODRM|ND_FLAG_VECTOR, + .CpuidFlag = ND_CFF_AMXAVX512, + .Operands = + { + OP(ND_OPT_V, ND_OPS_oq, 0, ND_OPA_W, 0, 0), + OP(ND_OPT_mT, ND_OPS_t, 0, ND_OPA_R, 0, 0), + OP(ND_OPT_B, ND_OPS_d, 0, ND_OPA_R, 0, 0), + }, + }, + + // Pos:2642 Instruction:"TILEMOVROW Voq,mTt,Ib" Encoding:"evex m:3 p:1 l:2 w:0 0x07 /r:reg ib"/"RI" + { + .Instruction = ND_INS_TILEMOVROW, + .Category = ND_CAT_AMX, + .IsaSet = ND_SET_AMXAVX512, + .Mnemonic = 892, + .ValidPrefixes = 0, + .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, + .ValidDecorators = 0, + .OpsCount = ND_OPS_CNT(3, 0), + .TupleType = 0, + .ExcType = ND_EXT_AMX_EVEX_E7, + .FpuFlags = 0, + .EvexMode = 0, + .SimdExc = 0, + .TestedFlags = 0, + .ModifiedFlags = 0, + .SetFlags = 0, + .ClearedFlags = 0, + .Attributes = ND_FLAG_MODRM|ND_FLAG_VECTOR|ND_FLAG_NOV|ND_FLAG_NOVP, + .CpuidFlag = ND_CFF_AMXAVX512, + .Operands = + { + OP(ND_OPT_V, ND_OPS_oq, 0, ND_OPA_W, 0, 0), + OP(ND_OPT_mT, ND_OPS_t, 0, ND_OPA_R, 0, 0), + OP(ND_OPT_I, ND_OPS_b, 0, ND_OPA_R, 0, 0), + }, + }, + + // Pos:2643 Instruction:"TILERELEASE" Encoding:"vex m:2 p:0 l:0 w:0 0x49 /0xC0"/"" { .Instruction = ND_INS_TILERELEASE, .Category = ND_CAT_AMX, .IsaSet = ND_SET_AMXTILE, - .Mnemonic = 869, + .Mnemonic = 893, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -72788,6 +76366,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_AMX_E6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -72800,12 +76379,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2610 Instruction:"TILESTORED Mt,rTt" Encoding:"evex m:2 p:2 l:0 nf:0 w:0 0x4B /r:mem rm:4 sibmem"/"M" + // Pos:2644 Instruction:"TILESTORED Mt,rTt" Encoding:"evex m:2 p:2 l:0 nf:0 w:0 0x4B /r:mem rm:4 sibmem"/"M" { .Instruction = ND_INS_TILESTORED, .Category = ND_CAT_AMX, .IsaSet = ND_SET_APX_F, - .Mnemonic = 870, + .Mnemonic = 894, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -72814,6 +76393,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_AMX_EVEX_E3, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -72827,12 +76407,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2611 Instruction:"TILESTORED Mt,rTt" Encoding:"vex m:2 p:2 l:0 w:0 0x4B /r:mem sibmem"/"M" + // Pos:2645 Instruction:"TILESTORED Mt,rTt" Encoding:"vex m:2 p:2 l:0 w:0 0x4B /r:mem sibmem"/"M" { .Instruction = ND_INS_TILESTORED, .Category = ND_CAT_AMX, .IsaSet = ND_SET_AMXTILE, - .Mnemonic = 870, + .Mnemonic = 894, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -72841,6 +76421,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_AMX_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -72854,12 +76435,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2612 Instruction:"TILEZERO rTt" Encoding:"vex m:2 p:3 l:0 w:0 0x49 /r:reg rm:0"/"" + // Pos:2646 Instruction:"TILEZERO rTt" Encoding:"vex m:2 p:3 l:0 w:0 0x49 /r:reg rm:0"/"" { .Instruction = ND_INS_TILEZERO, .Category = ND_CAT_AMX, .IsaSet = ND_SET_AMXTILE, - .Mnemonic = 871, + .Mnemonic = 895, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -72868,6 +76449,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_AMX_E5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -72880,12 +76462,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2613 Instruction:"TLBSYNC" Encoding:"NP 0x0F 0x01 /0xFF"/"" + // Pos:2647 Instruction:"TLBSYNC" Encoding:"NP 0x0F 0x01 /0xFF"/"" { .Instruction = ND_INS_TLBSYNC, .Category = ND_CAT_SYSTEM, .IsaSet = ND_SET_INVLPGB, - .Mnemonic = 872, + .Mnemonic = 896, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -72894,6 +76476,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -72906,12 +76489,41 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2614 Instruction:"TPAUSE Ry" Encoding:"0x66 0x0F 0xAE /6:reg"/"M" + // Pos:2648 Instruction:"TMMULTF32PS rTt,mTt,vTt" Encoding:"vex m:2 p:1 l:0 w:0 0x48 /r:reg"/"" + { + .Instruction = ND_INS_TMMULTF32PS, + .Category = ND_CAT_AMX, + .IsaSet = ND_SET_AMXTF32, + .Mnemonic = 897, + .ValidPrefixes = 0, + .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, + .ValidDecorators = 0, + .OpsCount = ND_OPS_CNT(3, 0), + .TupleType = 0, + .ExcType = ND_EXT_AMX_E4, + .FpuFlags = 0, + .EvexMode = 0, + .SimdExc = 0, + .TestedFlags = 0, + .ModifiedFlags = 0, + .SetFlags = 0, + .ClearedFlags = 0, + .Attributes = ND_FLAG_MODRM|ND_FLAG_O64, + .CpuidFlag = ND_CFF_AMXTF32, + .Operands = + { + OP(ND_OPT_rT, ND_OPS_t, 0, ND_OPA_RW, 0, 0), + OP(ND_OPT_mT, ND_OPS_t, 0, ND_OPA_R, 0, 0), + OP(ND_OPT_vT, ND_OPS_t, 0, ND_OPA_R, 0, 0), + }, + }, + + // Pos:2649 Instruction:"TPAUSE Ry" Encoding:"0x66 0x0F 0xAE /6:reg"/"M" { .Instruction = ND_INS_TPAUSE, .Category = ND_CAT_WAITPKG, .IsaSet = ND_SET_WAITPKG, - .Mnemonic = 873, + .Mnemonic = 898, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -72920,6 +76532,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF, .SetFlags = 0, @@ -72935,12 +76548,185 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2615 Instruction:"TZCNT Gv,Ev" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xF4 /r"/"RM" + // Pos:2650 Instruction:"TTCMMIMFP16PS rTt,mTt,vTt" Encoding:"vex m:2 p:3 l:0 w:0 0x6B /r:reg"/"" + { + .Instruction = ND_INS_TTCMMIMFP16PS, + .Category = ND_CAT_AMX, + .IsaSet = ND_SET_AMXTRANSPOSE, + .Mnemonic = 899, + .ValidPrefixes = 0, + .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, + .ValidDecorators = 0, + .OpsCount = ND_OPS_CNT(3, 0), + .TupleType = 0, + .ExcType = ND_EXT_AMX_E10, + .FpuFlags = 0, + .EvexMode = 0, + .SimdExc = 0, + .TestedFlags = 0, + .ModifiedFlags = 0, + .SetFlags = 0, + .ClearedFlags = 0, + .Attributes = ND_FLAG_MODRM|ND_FLAG_O64, + .CpuidFlag = ND_CFF_AMXTRANSPOSE, + .Operands = + { + OP(ND_OPT_rT, ND_OPS_t, 0, ND_OPA_RW, 0, 0), + OP(ND_OPT_mT, ND_OPS_t, 0, ND_OPA_R, 0, 0), + OP(ND_OPT_vT, ND_OPS_t, 0, ND_OPA_R, 0, 0), + }, + }, + + // Pos:2651 Instruction:"TTCMMRLFP16PS rTt,mTt,vTt" Encoding:"vex m:2 p:2 l:0 w:0 0x6B /r:reg"/"" + { + .Instruction = ND_INS_TTCMMRLFP16PS, + .Category = ND_CAT_AMX, + .IsaSet = ND_SET_AMXTRANSPOSE, + .Mnemonic = 900, + .ValidPrefixes = 0, + .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, + .ValidDecorators = 0, + .OpsCount = ND_OPS_CNT(3, 0), + .TupleType = 0, + .ExcType = ND_EXT_AMX_E10, + .FpuFlags = 0, + .EvexMode = 0, + .SimdExc = 0, + .TestedFlags = 0, + .ModifiedFlags = 0, + .SetFlags = 0, + .ClearedFlags = 0, + .Attributes = ND_FLAG_MODRM|ND_FLAG_O64, + .CpuidFlag = ND_CFF_AMXTRANSPOSE, + .Operands = + { + OP(ND_OPT_rT, ND_OPS_t, 0, ND_OPA_RW, 0, 0), + OP(ND_OPT_mT, ND_OPS_t, 0, ND_OPA_R, 0, 0), + OP(ND_OPT_vT, ND_OPS_t, 0, ND_OPA_R, 0, 0), + }, + }, + + // Pos:2652 Instruction:"TTDPBF16PS rTt,mTt,vTt" Encoding:"vex m:2 p:2 l:0 w:0 0x6C /r:reg"/"" + { + .Instruction = ND_INS_TTDPBF16PS, + .Category = ND_CAT_AMX, + .IsaSet = ND_SET_AMXTRANSPOSE, + .Mnemonic = 901, + .ValidPrefixes = 0, + .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, + .ValidDecorators = 0, + .OpsCount = ND_OPS_CNT(3, 0), + .TupleType = 0, + .ExcType = ND_EXT_AMX_E10, + .FpuFlags = 0, + .EvexMode = 0, + .SimdExc = 0, + .TestedFlags = 0, + .ModifiedFlags = 0, + .SetFlags = 0, + .ClearedFlags = 0, + .Attributes = ND_FLAG_MODRM|ND_FLAG_O64, + .CpuidFlag = ND_CFF_AMXTRANSPOSE, + .Operands = + { + OP(ND_OPT_rT, ND_OPS_t, 0, ND_OPA_RW, 0, 0), + OP(ND_OPT_mT, ND_OPS_t, 0, ND_OPA_R, 0, 0), + OP(ND_OPT_vT, ND_OPS_t, 0, ND_OPA_R, 0, 0), + }, + }, + + // Pos:2653 Instruction:"TTDPFP16PS rTt,mTt,vTt" Encoding:"vex m:2 p:3 l:0 w:0 0x6C /r:reg"/"" + { + .Instruction = ND_INS_TTDPFP16PS, + .Category = ND_CAT_AMX, + .IsaSet = ND_SET_AMXTRANSPOSE, + .Mnemonic = 902, + .ValidPrefixes = 0, + .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, + .ValidDecorators = 0, + .OpsCount = ND_OPS_CNT(3, 0), + .TupleType = 0, + .ExcType = ND_EXT_AMX_E10, + .FpuFlags = 0, + .EvexMode = 0, + .SimdExc = 0, + .TestedFlags = 0, + .ModifiedFlags = 0, + .SetFlags = 0, + .ClearedFlags = 0, + .Attributes = ND_FLAG_MODRM|ND_FLAG_O64, + .CpuidFlag = ND_CFF_AMXTRANSPOSE, + .Operands = + { + OP(ND_OPT_rT, ND_OPS_t, 0, ND_OPA_RW, 0, 0), + OP(ND_OPT_mT, ND_OPS_t, 0, ND_OPA_R, 0, 0), + OP(ND_OPT_vT, ND_OPS_t, 0, ND_OPA_R, 0, 0), + }, + }, + + // Pos:2654 Instruction:"TTMMULTF32PS rTt,mTt,vTt" Encoding:"vex m:2 p:0 l:0 w:0 0x48 /r:reg"/"" + { + .Instruction = ND_INS_TTMMULTF32PS, + .Category = ND_CAT_AMX, + .IsaSet = ND_SET_AMXTRANSPOSE, + .Mnemonic = 903, + .ValidPrefixes = 0, + .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, + .ValidDecorators = 0, + .OpsCount = ND_OPS_CNT(3, 0), + .TupleType = 0, + .ExcType = ND_EXT_AMX_E10, + .FpuFlags = 0, + .EvexMode = 0, + .SimdExc = 0, + .TestedFlags = 0, + .ModifiedFlags = 0, + .SetFlags = 0, + .ClearedFlags = 0, + .Attributes = ND_FLAG_MODRM|ND_FLAG_O64, + .CpuidFlag = ND_CFF_AMXTRANSPOSE, + .Operands = + { + OP(ND_OPT_rT, ND_OPS_t, 0, ND_OPA_RW, 0, 0), + OP(ND_OPT_mT, ND_OPS_t, 0, ND_OPA_R, 0, 0), + OP(ND_OPT_vT, ND_OPS_t, 0, ND_OPA_R, 0, 0), + }, + }, + + // Pos:2655 Instruction:"TTRANSPOSED rTt,mTt" Encoding:"vex m:2 p:2 l:0 w:0 0x5F /r:reg"/"" + { + .Instruction = ND_INS_TTRANSPOSED, + .Category = ND_CAT_AMX, + .IsaSet = ND_SET_AMXTRANSPOSE, + .Mnemonic = 904, + .ValidPrefixes = 0, + .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, + .ValidDecorators = 0, + .OpsCount = ND_OPS_CNT(2, 0), + .TupleType = 0, + .ExcType = ND_EXT_AMX_E9, + .FpuFlags = 0, + .EvexMode = 0, + .SimdExc = 0, + .TestedFlags = 0, + .ModifiedFlags = 0, + .SetFlags = 0, + .ClearedFlags = 0, + .Attributes = ND_FLAG_MODRM|ND_FLAG_NOV|ND_FLAG_O64, + .CpuidFlag = ND_CFF_AMXTRANSPOSE, + .Operands = + { + OP(ND_OPT_rT, ND_OPS_t, 0, ND_OPA_W, 0, 0), + OP(ND_OPT_mT, ND_OPS_t, 0, ND_OPA_R, 0, 0), + }, + }, + + // Pos:2656 Instruction:"TZCNT Gv,Ev" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0xF4 /r"/"RM" { .Instruction = ND_INS_TZCNT, .Category = ND_CAT_BMI1, .IsaSet = ND_SET_APX_F, - .Mnemonic = 874, + .Mnemonic = 905, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -72949,6 +76735,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .SetFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_SF|NDR_RFLAG_OF, @@ -72963,12 +76750,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2616 Instruction:"TZCNT Gv,Ev" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xF4 /r"/"RM" + // Pos:2657 Instruction:"TZCNT Gv,Ev" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0xF4 /r"/"RM" { .Instruction = ND_INS_TZCNT, .Category = ND_CAT_BMI1, .IsaSet = ND_SET_APX_F, - .Mnemonic = 874, + .Mnemonic = 905, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -72977,6 +76764,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .SetFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_SF|NDR_RFLAG_OF, @@ -72991,12 +76779,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2617 Instruction:"TZCNT Gv,Ev" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xF4 /r"/"RM" + // Pos:2658 Instruction:"TZCNT Gv,Ev" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0xF4 /r"/"RM" { .Instruction = ND_INS_TZCNT, .Category = ND_CAT_BMI1, .IsaSet = ND_SET_APX_F, - .Mnemonic = 874, + .Mnemonic = 905, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -73005,6 +76793,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -73018,12 +76807,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2618 Instruction:"TZCNT Gv,Ev" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xF4 /r"/"RM" + // Pos:2659 Instruction:"TZCNT Gv,Ev" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0xF4 /r"/"RM" { .Instruction = ND_INS_TZCNT, .Category = ND_CAT_BMI1, .IsaSet = ND_SET_APX_F, - .Mnemonic = 874, + .Mnemonic = 905, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -73032,6 +76821,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -73045,12 +76835,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2619 Instruction:"TZCNT Gv,Ev" Encoding:"repz 0x0F 0xBC /r"/"RM" + // Pos:2660 Instruction:"TZCNT Gv,Ev" Encoding:"repz 0x0F 0xBC /r"/"RM" { .Instruction = ND_INS_TZCNT, .Category = ND_CAT_BMI1, .IsaSet = ND_SET_BMI1, - .Mnemonic = 874, + .Mnemonic = 905, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -73059,6 +76849,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .SetFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_SF|NDR_RFLAG_OF, @@ -73073,12 +76864,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2620 Instruction:"TZMSK By,Ey" Encoding:"xop m:9 0x01 /4"/"VM" + // Pos:2661 Instruction:"TZMSK By,Ey" Encoding:"xop m:9 0x01 /4"/"VM" { .Instruction = ND_INS_TZMSK, .Category = ND_CAT_BITBYTE, .IsaSet = ND_SET_TBM, - .Mnemonic = 875, + .Mnemonic = 906, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -73087,6 +76878,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -73100,12 +76892,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2621 Instruction:"UCOMISD Vsd,Wsd" Encoding:"0x66 0x0F 0x2E /r"/"RM" + // Pos:2662 Instruction:"UCOMISD Vsd,Wsd" Encoding:"0x66 0x0F 0x2E /r"/"RM" { .Instruction = ND_INS_UCOMISD, .Category = ND_CAT_SSE2, .IsaSet = ND_SET_SSE2, - .Mnemonic = 876, + .Mnemonic = 907, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -73114,6 +76906,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF, .SetFlags = 0, @@ -73128,20 +76921,21 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2622 Instruction:"UCOMISS Vss,Wss" Encoding:"NP 0x0F 0x2E /r"/"RM" + // Pos:2663 Instruction:"UCOMISS Vss,Wss" Encoding:"NP 0x0F 0x2E /r"/"RM" { .Instruction = ND_INS_UCOMISS, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE, - .Mnemonic = 877, + .Mnemonic = 908, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, .OpsCount = ND_OPS_CNT(2, 1), .TupleType = 0, - .ExcType = 0, + .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF, .SetFlags = 0, @@ -73156,12 +76950,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2623 Instruction:"UD0 Gd,Ed" Encoding:"0x0F 0xFF /r"/"RM" + // Pos:2664 Instruction:"UD0 Gd,Ed" Encoding:"0x0F 0xFF /r"/"RM" { .Instruction = ND_INS_UD0, .Category = ND_CAT_UD, .IsaSet = ND_SET_UD, - .Mnemonic = 878, + .Mnemonic = 909, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -73170,6 +76964,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -73183,12 +76978,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2624 Instruction:"UD1 Gd,Ed" Encoding:"0x0F 0xB9 /r"/"RM" + // Pos:2665 Instruction:"UD1 Gd,Ed" Encoding:"0x0F 0xB9 /r"/"RM" { .Instruction = ND_INS_UD1, .Category = ND_CAT_UD, .IsaSet = ND_SET_UD, - .Mnemonic = 879, + .Mnemonic = 910, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -73197,6 +76992,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -73210,12 +77006,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2625 Instruction:"UD2" Encoding:"0x0F 0x0B"/"" + // Pos:2666 Instruction:"UD2" Encoding:"0x0F 0x0B"/"" { .Instruction = ND_INS_UD2, .Category = ND_CAT_MISC, .IsaSet = ND_SET_PPRO, - .Mnemonic = 880, + .Mnemonic = 911, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -73224,6 +77020,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -73236,12 +77033,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2626 Instruction:"UIRET" Encoding:"0xF3 0x0F 0x01 /0xEC"/"" + // Pos:2667 Instruction:"UIRET" Encoding:"0xF3 0x0F 0x01 /0xEC"/"" { .Instruction = ND_INS_UIRET, .Category = ND_CAT_RET, .IsaSet = ND_SET_UINTR, - .Mnemonic = 881, + .Mnemonic = 912, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -73250,6 +77047,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -73267,12 +77065,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2627 Instruction:"UMONITOR mMb" Encoding:"0xF3 0x0F 0xAE /6:reg"/"M" + // Pos:2668 Instruction:"UMONITOR mMb" Encoding:"0xF3 0x0F 0xAE /6:reg"/"M" { .Instruction = ND_INS_UMONITOR, .Category = ND_CAT_WAITPKG, .IsaSet = ND_SET_WAITPKG, - .Mnemonic = 882, + .Mnemonic = 913, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_REAL|ND_MOD_V8086|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -73281,6 +77079,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF, .SetFlags = 0, @@ -73294,12 +77093,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2628 Instruction:"UMWAIT Ry" Encoding:"0xF2 0x0F 0xAE /6:reg"/"M" + // Pos:2669 Instruction:"UMWAIT Ry" Encoding:"0xF2 0x0F 0xAE /6:reg"/"M" { .Instruction = ND_INS_UMWAIT, .Category = ND_CAT_WAITPKG, .IsaSet = ND_SET_WAITPKG, - .Mnemonic = 883, + .Mnemonic = 914, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_REAL|ND_MOD_V8086|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -73308,6 +77107,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -73322,12 +77122,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2629 Instruction:"UNPCKHPD Vx,Wx" Encoding:"0x66 0x0F 0x15 /r"/"RM" + // Pos:2670 Instruction:"UNPCKHPD Vx,Wx" Encoding:"0x66 0x0F 0x15 /r"/"RM" { .Instruction = ND_INS_UNPCKHPD, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 884, + .Mnemonic = 915, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -73336,6 +77136,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -73349,12 +77150,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2630 Instruction:"UNPCKHPS Vx,Wx" Encoding:"NP 0x0F 0x15 /r"/"RM" + // Pos:2671 Instruction:"UNPCKHPS Vx,Wx" Encoding:"NP 0x0F 0x15 /r"/"RM" { .Instruction = ND_INS_UNPCKHPS, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE, - .Mnemonic = 885, + .Mnemonic = 916, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -73363,6 +77164,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -73376,12 +77178,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2631 Instruction:"UNPCKLPD Vx,Wx" Encoding:"0x66 0x0F 0x14 /r"/"RM" + // Pos:2672 Instruction:"UNPCKLPD Vx,Wx" Encoding:"0x66 0x0F 0x14 /r"/"RM" { .Instruction = ND_INS_UNPCKLPD, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE2, - .Mnemonic = 886, + .Mnemonic = 917, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -73390,6 +77192,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -73403,12 +77206,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2632 Instruction:"UNPCKLPS Vx,Wx" Encoding:"NP 0x0F 0x14 /r"/"RM" + // Pos:2673 Instruction:"UNPCKLPS Vx,Wx" Encoding:"NP 0x0F 0x14 /r"/"RM" { .Instruction = ND_INS_UNPCKLPS, .Category = ND_CAT_SSE, .IsaSet = ND_SET_SSE, - .Mnemonic = 887, + .Mnemonic = 918, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -73417,6 +77220,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -73430,12 +77234,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2633 Instruction:"URDMSR Eq,Gq" Encoding:"evex m:4 l:0 nd:0 nf:0 p:3 w:0 0xF8 /r:reg"/"MR" + // Pos:2674 Instruction:"URDMSR Eq,Gq" Encoding:"evex m:4 l:0 nd:0 nf:0 p:3 w:0 0xF8 /r:reg"/"MR" { .Instruction = ND_INS_URDMSR, .Category = ND_CAT_USER_MSR, .IsaSet = ND_SET_APX_F, - .Mnemonic = 888, + .Mnemonic = 919, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -73444,6 +77248,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_USER_MSR, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -73457,12 +77262,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2634 Instruction:"URDMSR Rq,Id" Encoding:"evex m:7 nf:0 p:3 l:0 w:0 0xF8 /0:reg id"/"MI" + // Pos:2675 Instruction:"URDMSR Rq,Id" Encoding:"evex m:7 nf:0 p:3 l:0 w:0 0xF8 /0:reg id"/"MI" { .Instruction = ND_INS_URDMSR, .Category = ND_CAT_USER_MSR, .IsaSet = ND_SET_APX_F, - .Mnemonic = 888, + .Mnemonic = 919, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -73471,6 +77276,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -73485,12 +77291,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2635 Instruction:"URDMSR Rq,Gq" Encoding:"0xF2 0x0F 0x38 0xF8 /r:reg"/"MR" + // Pos:2676 Instruction:"URDMSR Rq,Gq" Encoding:"0xF2 0x0F 0x38 0xF8 /r:reg"/"MR" { .Instruction = ND_INS_URDMSR, .Category = ND_CAT_USER_MSR, .IsaSet = ND_SET_USER_MSR, - .Mnemonic = 888, + .Mnemonic = 919, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -73499,6 +77305,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -73513,12 +77320,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2636 Instruction:"URDMSR Rq,Id" Encoding:"vex m:7 p:3 l:0 w:0 0xF8 /0:reg id"/"MI" + // Pos:2677 Instruction:"URDMSR Rq,Id" Encoding:"vex m:7 p:3 l:0 w:0 0xF8 /0:reg id"/"MI" { .Instruction = ND_INS_URDMSR, .Category = ND_CAT_USER_MSR, .IsaSet = ND_SET_USER_MSR, - .Mnemonic = 888, + .Mnemonic = 919, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -73527,6 +77334,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -73541,12 +77349,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2637 Instruction:"UWRMSR Gq,Eq" Encoding:"evex m:4 l:0 nd:0 nf:0 p:2 w:0 0xF8 /r:reg"/"RM" + // Pos:2678 Instruction:"UWRMSR Gq,Eq" Encoding:"evex m:4 l:0 nd:0 nf:0 p:2 w:0 0xF8 /r:reg"/"RM" { .Instruction = ND_INS_UWRMSR, .Category = ND_CAT_USER_MSR, .IsaSet = ND_SET_APX_F, - .Mnemonic = 889, + .Mnemonic = 920, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -73555,6 +77363,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_USER_MSR, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -73568,12 +77377,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2638 Instruction:"UWRMSR Id,Rq" Encoding:"evex m:7 nf:0 p:2 l:0 w:0 0xF8 /0:reg id"/"IM" + // Pos:2679 Instruction:"UWRMSR Id,Rq" Encoding:"evex m:7 nf:0 p:2 l:0 w:0 0xF8 /0:reg id"/"IM" { .Instruction = ND_INS_UWRMSR, .Category = ND_CAT_USER_MSR, .IsaSet = ND_SET_APX_F, - .Mnemonic = 889, + .Mnemonic = 920, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -73582,6 +77391,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -73596,12 +77406,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2639 Instruction:"UWRMSR Gq,Rq" Encoding:"0xF3 0x0F 0x38 0xF8 /r:reg"/"RM" + // Pos:2680 Instruction:"UWRMSR Gq,Rq" Encoding:"0xF3 0x0F 0x38 0xF8 /r:reg"/"RM" { .Instruction = ND_INS_UWRMSR, .Category = ND_CAT_USER_MSR, .IsaSet = ND_SET_USER_MSR, - .Mnemonic = 889, + .Mnemonic = 920, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -73610,6 +77420,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -73624,12 +77435,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2640 Instruction:"UWRMSR Id,Rq" Encoding:"vex m:7 p:2 l:0 w:0 0xF8 /0:reg id"/"IM" + // Pos:2681 Instruction:"UWRMSR Id,Rq" Encoding:"vex m:7 p:2 l:0 w:0 0xF8 /0:reg id"/"IM" { .Instruction = ND_INS_UWRMSR, .Category = ND_CAT_USER_MSR, .IsaSet = ND_SET_USER_MSR, - .Mnemonic = 889, + .Mnemonic = 920, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -73638,6 +77449,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -73652,12 +77464,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2641 Instruction:"V4FMADDPS Voq{K}{z},aKq,Hoq+3,Mdq" Encoding:"evex m:2 p:3 l:2 w:0 0x9A /r:mem"/"RAVM" + // Pos:2682 Instruction:"V4FMADDPS Voq{K}{z},aKq,Hoq+3,Mdq" Encoding:"evex m:2 p:3 l:2 w:0 0x9A /r:mem"/"RAVM" { .Instruction = ND_INS_V4FMADDPS, .Category = ND_CAT_VFMAPS, .IsaSet = ND_SET_AVX5124FMAPS, - .Mnemonic = 890, + .Mnemonic = 921, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -73666,6 +77478,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -73681,12 +77494,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2642 Instruction:"V4FMADDSS Vdq{K}{z},aKq,Hdq+3,Mdq" Encoding:"evex m:2 p:3 l:i w:0 0x9B /r:mem"/"RAVM" + // Pos:2683 Instruction:"V4FMADDSS Vdq{K}{z},aKq,Hdq+3,Mdq" Encoding:"evex m:2 p:3 l:i w:0 0x9B /r:mem"/"RAVM" { .Instruction = ND_INS_V4FMADDSS, .Category = ND_CAT_VFMAPS, .IsaSet = ND_SET_AVX5124FMAPS, - .Mnemonic = 891, + .Mnemonic = 922, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -73695,6 +77508,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -73710,12 +77524,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2643 Instruction:"V4FNMADDPS Voq{K}{z},aKq,Hoq+3,Mdq" Encoding:"evex m:2 p:3 l:2 w:0 0xAA /r:mem"/"RAVM" + // Pos:2684 Instruction:"V4FNMADDPS Voq{K}{z},aKq,Hoq+3,Mdq" Encoding:"evex m:2 p:3 l:2 w:0 0xAA /r:mem"/"RAVM" { .Instruction = ND_INS_V4FNMADDPS, .Category = ND_CAT_VFMAPS, .IsaSet = ND_SET_AVX5124FMAPS, - .Mnemonic = 892, + .Mnemonic = 923, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -73724,6 +77538,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -73739,12 +77554,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2644 Instruction:"V4FNMADDSS Vdq{K}{z},aKq,Hdq+3,Mdq" Encoding:"evex m:2 p:3 l:i w:0 0xAB /r:mem"/"RAVM" + // Pos:2685 Instruction:"V4FNMADDSS Vdq{K}{z},aKq,Hdq+3,Mdq" Encoding:"evex m:2 p:3 l:i w:0 0xAB /r:mem"/"RAVM" { .Instruction = ND_INS_V4FNMADDSS, .Category = ND_CAT_VFMAPS, .IsaSet = ND_SET_AVX5124FMAPS, - .Mnemonic = 893, + .Mnemonic = 924, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -73753,6 +77568,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -73768,12 +77584,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2645 Instruction:"VADDNEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16" Encoding:"evex m:5 p:1 l:x w:0 0x58 /r"/"RAVM" + // Pos:2686 Instruction:"VADDNEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16" Encoding:"evex m:5 p:1 l:x w:0 0x58 /r"/"RAVM" { .Instruction = ND_INS_VADDNEPBF16, .Category = ND_CAT_AVX10BF16, .IsaSet = ND_SET_AVX102, - .Mnemonic = 894, + .Mnemonic = 925, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -73782,6 +77598,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -73797,12 +77614,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2646 Instruction:"VADDPD Vfv{K}{z},aKq,Hfv,Wfv|B64{er}" Encoding:"evex m:1 p:1 l:x w:1 0x58 /r"/"RAVM" + // Pos:2687 Instruction:"VADDPD Vfv{K}{z},aKq,Hfv,Wfv|B64{er}" Encoding:"evex m:1 p:1 l:x w:1 0x58 /r"/"RAVM" { .Instruction = ND_INS_VADDPD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 895, + .Mnemonic = 926, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -73811,6 +77628,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -73826,12 +77644,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2647 Instruction:"VADDPD Vpd,Hpd,Wpd" Encoding:"vex m:1 p:1 l:x w:i 0x58 /r"/"RVM" + // Pos:2688 Instruction:"VADDPD Vpd,Hpd,Wpd" Encoding:"vex m:1 p:1 l:x w:i 0x58 /r"/"RVM" { .Instruction = ND_INS_VADDPD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 895, + .Mnemonic = 926, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -73840,6 +77658,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -73854,12 +77673,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2648 Instruction:"VADDPH Vfv{K}{z},aKq,Hfv,Wfv|B16{er}" Encoding:"evex m:5 p:0 l:x w:0 0x58 /r"/"RAVM" + // Pos:2689 Instruction:"VADDPH Vfv{K}{z},aKq,Hfv,Wfv|B16{er}" Encoding:"evex m:5 p:0 l:x w:0 0x58 /r"/"RAVM" { .Instruction = ND_INS_VADDPH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 896, + .Mnemonic = 927, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -73868,6 +77687,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -73883,12 +77703,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2649 Instruction:"VADDPS Vfv{K}{z},aKq,Hfv,Wfv|B32{er}" Encoding:"evex m:1 p:0 l:x w:0 0x58 /r"/"RAVM" + // Pos:2690 Instruction:"VADDPS Vfv{K}{z},aKq,Hfv,Wfv|B32{er}" Encoding:"evex m:1 p:0 l:x w:0 0x58 /r"/"RAVM" { .Instruction = ND_INS_VADDPS, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 897, + .Mnemonic = 928, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -73897,6 +77717,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -73912,12 +77733,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2650 Instruction:"VADDPS Vps,Hps,Wps" Encoding:"vex m:1 p:0 l:x w:i 0x58 /r"/"RVM" + // Pos:2691 Instruction:"VADDPS Vps,Hps,Wps" Encoding:"vex m:1 p:0 l:x w:i 0x58 /r"/"RVM" { .Instruction = ND_INS_VADDPS, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 897, + .Mnemonic = 928, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -73926,6 +77747,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -73940,12 +77762,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2651 Instruction:"VADDSD Vdq{K}{z},aKq,Hdq,Wsd{er}" Encoding:"evex m:1 p:3 l:i w:1 0x58 /r"/"RAVM" + // Pos:2692 Instruction:"VADDSD Vdq{K}{z},aKq,Hdq,Wsd{er}" Encoding:"evex m:1 p:3 l:i w:1 0x58 /r"/"RAVM" { .Instruction = ND_INS_VADDSD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 898, + .Mnemonic = 929, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -73954,6 +77776,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -73969,12 +77792,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2652 Instruction:"VADDSD Vsd,Hsd,Wsd" Encoding:"vex m:1 p:3 l:i w:i 0x58 /r"/"RVM" + // Pos:2693 Instruction:"VADDSD Vsd,Hsd,Wsd" Encoding:"vex m:1 p:3 l:i w:i 0x58 /r"/"RVM" { .Instruction = ND_INS_VADDSD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 898, + .Mnemonic = 929, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -73983,6 +77806,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -73997,12 +77821,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2653 Instruction:"VADDSH Vdq{K}{z},aKq,Hdq,Wsh{er}" Encoding:"evex m:5 p:2 l:i w:0 0x58 /r"/"RAVM" + // Pos:2694 Instruction:"VADDSH Vdq{K}{z},aKq,Hdq,Wsh{er}" Encoding:"evex m:5 p:2 l:i w:0 0x58 /r"/"RAVM" { .Instruction = ND_INS_VADDSH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 899, + .Mnemonic = 930, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -74011,6 +77835,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -74026,12 +77851,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2654 Instruction:"VADDSS Vdq{K}{z},aKq,Hdq,Wss{er}" Encoding:"evex m:1 p:2 l:i w:0 0x58 /r"/"RAVM" + // Pos:2695 Instruction:"VADDSS Vdq{K}{z},aKq,Hdq,Wss{er}" Encoding:"evex m:1 p:2 l:i w:0 0x58 /r"/"RAVM" { .Instruction = ND_INS_VADDSS, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 900, + .Mnemonic = 931, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -74040,6 +77865,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -74055,12 +77881,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2655 Instruction:"VADDSS Vss,Hss,Wss" Encoding:"vex m:1 p:2 l:i w:i 0x58 /r"/"RVM" + // Pos:2696 Instruction:"VADDSS Vss,Hss,Wss" Encoding:"vex m:1 p:2 l:i w:i 0x58 /r"/"RVM" { .Instruction = ND_INS_VADDSS, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 900, + .Mnemonic = 931, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -74069,6 +77895,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -74083,12 +77910,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2656 Instruction:"VADDSUBPD Vpd,Hpd,Wpd" Encoding:"vex m:1 p:1 l:x w:i 0xD0 /r"/"RVM" + // Pos:2697 Instruction:"VADDSUBPD Vpd,Hpd,Wpd" Encoding:"vex m:1 p:1 l:x w:i 0xD0 /r"/"RVM" { .Instruction = ND_INS_VADDSUBPD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 901, + .Mnemonic = 932, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -74097,6 +77924,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -74111,12 +77939,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2657 Instruction:"VADDSUBPS Vps,Hps,Wps" Encoding:"vex m:1 p:3 l:x w:i 0xD0 /r"/"RVM" + // Pos:2698 Instruction:"VADDSUBPS Vps,Hps,Wps" Encoding:"vex m:1 p:3 l:x w:i 0xD0 /r"/"RVM" { .Instruction = ND_INS_VADDSUBPS, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 902, + .Mnemonic = 933, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -74125,6 +77953,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -74139,12 +77968,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2658 Instruction:"VAESDEC Vfv,Hfv,Wfv" Encoding:"evex m:2 p:1 l:x w:i 0xDE /r"/"RVM" + // Pos:2699 Instruction:"VAESDEC Vfv,Hfv,Wfv" Encoding:"evex m:2 p:1 l:x w:i 0xDE /r"/"RVM" { .Instruction = ND_INS_VAESDEC, .Category = ND_CAT_VAES, .IsaSet = ND_SET_VAES, - .Mnemonic = 903, + .Mnemonic = 934, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -74153,6 +77982,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -74167,12 +77997,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2659 Instruction:"VAESDEC Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0xDE /r"/"RVM" + // Pos:2700 Instruction:"VAESDEC Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0xDE /r"/"RVM" { .Instruction = ND_INS_VAESDEC, .Category = ND_CAT_AES, .IsaSet = ND_SET_AES, - .Mnemonic = 903, + .Mnemonic = 934, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -74181,6 +78011,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -74195,12 +78026,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2660 Instruction:"VAESDECLAST Vfv,Hfv,Wfv" Encoding:"evex m:2 p:1 l:x w:i 0xDF /r"/"RVM" + // Pos:2701 Instruction:"VAESDECLAST Vfv,Hfv,Wfv" Encoding:"evex m:2 p:1 l:x w:i 0xDF /r"/"RVM" { .Instruction = ND_INS_VAESDECLAST, .Category = ND_CAT_VAES, .IsaSet = ND_SET_VAES, - .Mnemonic = 904, + .Mnemonic = 935, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -74209,6 +78040,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -74223,12 +78055,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2661 Instruction:"VAESDECLAST Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0xDF /r"/"RVM" + // Pos:2702 Instruction:"VAESDECLAST Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0xDF /r"/"RVM" { .Instruction = ND_INS_VAESDECLAST, .Category = ND_CAT_AES, .IsaSet = ND_SET_AES, - .Mnemonic = 904, + .Mnemonic = 935, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -74237,6 +78069,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -74251,12 +78084,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2662 Instruction:"VAESENC Vfv,Hfv,Wfv" Encoding:"evex m:2 p:1 l:x w:i 0xDC /r"/"RVM" + // Pos:2703 Instruction:"VAESENC Vfv,Hfv,Wfv" Encoding:"evex m:2 p:1 l:x w:i 0xDC /r"/"RVM" { .Instruction = ND_INS_VAESENC, .Category = ND_CAT_VAES, .IsaSet = ND_SET_VAES, - .Mnemonic = 905, + .Mnemonic = 936, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -74265,6 +78098,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -74279,12 +78113,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2663 Instruction:"VAESENC Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0xDC /r"/"RVM" + // Pos:2704 Instruction:"VAESENC Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0xDC /r"/"RVM" { .Instruction = ND_INS_VAESENC, .Category = ND_CAT_AES, .IsaSet = ND_SET_AES, - .Mnemonic = 905, + .Mnemonic = 936, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -74293,6 +78127,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -74307,12 +78142,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2664 Instruction:"VAESENCLAST Vfv,Hfv,Wfv" Encoding:"evex m:2 p:1 l:x w:i 0xDD /r"/"RVM" + // Pos:2705 Instruction:"VAESENCLAST Vfv,Hfv,Wfv" Encoding:"evex m:2 p:1 l:x w:i 0xDD /r"/"RVM" { .Instruction = ND_INS_VAESENCLAST, .Category = ND_CAT_VAES, .IsaSet = ND_SET_VAES, - .Mnemonic = 906, + .Mnemonic = 937, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -74321,6 +78156,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -74335,12 +78171,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2665 Instruction:"VAESENCLAST Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0xDD /r"/"RVM" + // Pos:2706 Instruction:"VAESENCLAST Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0xDD /r"/"RVM" { .Instruction = ND_INS_VAESENCLAST, .Category = ND_CAT_AES, .IsaSet = ND_SET_AES, - .Mnemonic = 906, + .Mnemonic = 937, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -74349,6 +78185,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -74363,12 +78200,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2666 Instruction:"VAESIMC Vdq,Wdq" Encoding:"vex m:2 p:1 l:0 w:i 0xDB /r"/"RM" + // Pos:2707 Instruction:"VAESIMC Vdq,Wdq" Encoding:"vex m:2 p:1 l:0 w:i 0xDB /r"/"RM" { .Instruction = ND_INS_VAESIMC, .Category = ND_CAT_AES, .IsaSet = ND_SET_AES, - .Mnemonic = 907, + .Mnemonic = 938, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -74377,6 +78214,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -74390,12 +78228,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2667 Instruction:"VAESKEYGENASSIST Vdq,Wdq,Ib" Encoding:"vex m:3 p:1 l:0 w:i 0xDF /r ib"/"RMI" + // Pos:2708 Instruction:"VAESKEYGENASSIST Vdq,Wdq,Ib" Encoding:"vex m:3 p:1 l:0 w:i 0xDF /r ib"/"RMI" { .Instruction = ND_INS_VAESKEYGENASSIST, .Category = ND_CAT_AES, .IsaSet = ND_SET_AES, - .Mnemonic = 908, + .Mnemonic = 939, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -74404,6 +78242,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -74418,12 +78257,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2668 Instruction:"VALIGND Vfv{K}{z},aKq,Hfv,Wfv|B32,Ib" Encoding:"evex m:3 p:1 l:x w:0 0x03 /r ib"/"RAVMI" + // Pos:2709 Instruction:"VALIGND Vfv{K}{z},aKq,Hfv,Wfv|B32,Ib" Encoding:"evex m:3 p:1 l:x w:0 0x03 /r ib"/"RAVMI" { .Instruction = ND_INS_VALIGND, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 909, + .Mnemonic = 940, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -74432,6 +78271,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -74448,12 +78288,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2669 Instruction:"VALIGNQ Vfv{K}{z},aKq,Hfv,Wfv|B64,Ib" Encoding:"evex m:3 p:1 l:x w:1 0x03 /r ib"/"RAVMI" + // Pos:2710 Instruction:"VALIGNQ Vfv{K}{z},aKq,Hfv,Wfv|B64,Ib" Encoding:"evex m:3 p:1 l:x w:1 0x03 /r ib"/"RAVMI" { .Instruction = ND_INS_VALIGNQ, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 910, + .Mnemonic = 941, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -74462,6 +78302,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -74478,12 +78319,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2670 Instruction:"VANDNPD Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:1 p:1 l:x w:1 0x55 /r"/"RAVM" + // Pos:2711 Instruction:"VANDNPD Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:1 p:1 l:x w:1 0x55 /r"/"RAVM" { .Instruction = ND_INS_VANDNPD, .Category = ND_CAT_LOGICAL_FP, .IsaSet = ND_SET_AVX512DQ, - .Mnemonic = 911, + .Mnemonic = 942, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -74492,6 +78333,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -74507,12 +78349,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2671 Instruction:"VANDNPD Vpd,Hpd,Wpd" Encoding:"vex m:1 p:1 l:x w:i 0x55 /r"/"RVM" + // Pos:2712 Instruction:"VANDNPD Vpd,Hpd,Wpd" Encoding:"vex m:1 p:1 l:x w:i 0x55 /r"/"RVM" { .Instruction = ND_INS_VANDNPD, .Category = ND_CAT_LOGICAL_FP, .IsaSet = ND_SET_AVX, - .Mnemonic = 911, + .Mnemonic = 942, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -74521,6 +78363,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -74535,12 +78378,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2672 Instruction:"VANDNPS Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:1 p:0 l:x w:0 0x55 /r"/"RAVM" + // Pos:2713 Instruction:"VANDNPS Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:1 p:0 l:x w:0 0x55 /r"/"RAVM" { .Instruction = ND_INS_VANDNPS, .Category = ND_CAT_LOGICAL_FP, .IsaSet = ND_SET_AVX512DQ, - .Mnemonic = 912, + .Mnemonic = 943, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -74549,6 +78392,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -74564,12 +78408,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2673 Instruction:"VANDNPS Vps,Hps,Wps" Encoding:"vex m:1 p:0 l:x w:i 0x55 /r"/"RVM" + // Pos:2714 Instruction:"VANDNPS Vps,Hps,Wps" Encoding:"vex m:1 p:0 l:x w:i 0x55 /r"/"RVM" { .Instruction = ND_INS_VANDNPS, .Category = ND_CAT_LOGICAL_FP, .IsaSet = ND_SET_AVX, - .Mnemonic = 912, + .Mnemonic = 943, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -74578,6 +78422,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -74592,12 +78437,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2674 Instruction:"VANDPD Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:1 p:1 l:x w:1 0x54 /r"/"RAVM" + // Pos:2715 Instruction:"VANDPD Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:1 p:1 l:x w:1 0x54 /r"/"RAVM" { .Instruction = ND_INS_VANDPD, .Category = ND_CAT_LOGICAL_FP, .IsaSet = ND_SET_AVX512DQ, - .Mnemonic = 913, + .Mnemonic = 944, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -74606,6 +78451,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -74621,12 +78467,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2675 Instruction:"VANDPD Vpd,Hpd,Wpd" Encoding:"vex m:1 p:1 l:x w:i 0x54 /r"/"RVM" + // Pos:2716 Instruction:"VANDPD Vpd,Hpd,Wpd" Encoding:"vex m:1 p:1 l:x w:i 0x54 /r"/"RVM" { .Instruction = ND_INS_VANDPD, .Category = ND_CAT_LOGICAL_FP, .IsaSet = ND_SET_AVX, - .Mnemonic = 913, + .Mnemonic = 944, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -74635,6 +78481,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -74649,12 +78496,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2676 Instruction:"VANDPS Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:1 p:0 l:x w:0 0x54 /r"/"RAVM" + // Pos:2717 Instruction:"VANDPS Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:1 p:0 l:x w:0 0x54 /r"/"RAVM" { .Instruction = ND_INS_VANDPS, .Category = ND_CAT_LOGICAL_FP, .IsaSet = ND_SET_AVX512DQ, - .Mnemonic = 914, + .Mnemonic = 945, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -74663,6 +78510,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -74678,12 +78526,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2677 Instruction:"VANDPS Vps,Hps,Wps" Encoding:"vex m:1 p:0 l:x w:i 0x54 /r"/"RVM" + // Pos:2718 Instruction:"VANDPS Vps,Hps,Wps" Encoding:"vex m:1 p:0 l:x w:i 0x54 /r"/"RVM" { .Instruction = ND_INS_VANDPS, .Category = ND_CAT_LOGICAL_FP, .IsaSet = ND_SET_AVX, - .Mnemonic = 914, + .Mnemonic = 945, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -74692,6 +78540,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -74706,12 +78555,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2678 Instruction:"VBCSTNEBF162PS Vx,Mw" Encoding:"vex m:2 p:2 l:x w:0 0xB1 /r:mem"/"RM" + // Pos:2719 Instruction:"VBCSTNEBF162PS Vx,Mw" Encoding:"vex m:2 p:2 l:x w:0 0xB1 /r:mem"/"RM" { .Instruction = ND_INS_VBCSTNEBF162PS, .Category = ND_CAT_AVXNECONVERT, .IsaSet = ND_SET_AVXNECONVERT, - .Mnemonic = 915, + .Mnemonic = 946, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -74720,6 +78569,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -74733,12 +78583,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2679 Instruction:"VBCSTNESH2PS Vx,Mw" Encoding:"vex m:2 p:1 l:x w:0 0xB1 /r:mem"/"RM" + // Pos:2720 Instruction:"VBCSTNESH2PS Vx,Mw" Encoding:"vex m:2 p:1 l:x w:0 0xB1 /r:mem"/"RM" { .Instruction = ND_INS_VBCSTNESH2PS, .Category = ND_CAT_AVXNECONVERT, .IsaSet = ND_SET_AVXNECONVERT, - .Mnemonic = 916, + .Mnemonic = 947, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -74747,6 +78597,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -74760,12 +78611,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2680 Instruction:"VBLENDMPD Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x65 /r"/"RAVM" + // Pos:2721 Instruction:"VBLENDMPD Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x65 /r"/"RAVM" { .Instruction = ND_INS_VBLENDMPD, .Category = ND_CAT_BLEND, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 917, + .Mnemonic = 948, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -74774,6 +78625,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -74789,12 +78641,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2681 Instruction:"VBLENDMPS Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x65 /r"/"RAVM" + // Pos:2722 Instruction:"VBLENDMPS Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x65 /r"/"RAVM" { .Instruction = ND_INS_VBLENDMPS, .Category = ND_CAT_BLEND, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 918, + .Mnemonic = 949, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -74803,6 +78655,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -74818,12 +78671,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2682 Instruction:"VBLENDPD Vx,Hx,Wx,Ib" Encoding:"vex m:3 p:1 l:x w:i 0x0D /r ib"/"RVMI" + // Pos:2723 Instruction:"VBLENDPD Vx,Hx,Wx,Ib" Encoding:"vex m:3 p:1 l:x w:i 0x0D /r ib"/"RVMI" { .Instruction = ND_INS_VBLENDPD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 919, + .Mnemonic = 950, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -74832,6 +78685,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -74847,12 +78701,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2683 Instruction:"VBLENDPS Vx,Hx,Wx,Ib" Encoding:"vex m:3 p:1 l:x w:i 0x0C /r ib"/"RVMI" + // Pos:2724 Instruction:"VBLENDPS Vx,Hx,Wx,Ib" Encoding:"vex m:3 p:1 l:x w:i 0x0C /r ib"/"RVMI" { .Instruction = ND_INS_VBLENDPS, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 920, + .Mnemonic = 951, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -74861,6 +78715,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -74876,12 +78731,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2684 Instruction:"VBLENDVPD Vx,Hx,Wx,Lx" Encoding:"vex m:3 p:1 l:x w:0 0x4B /r is4"/"RVML" + // Pos:2725 Instruction:"VBLENDVPD Vx,Hx,Wx,Lx" Encoding:"vex m:3 p:1 l:x w:0 0x4B /r is4"/"RVML" { .Instruction = ND_INS_VBLENDVPD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 921, + .Mnemonic = 952, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -74890,6 +78745,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -74905,12 +78761,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2685 Instruction:"VBLENDVPS Vx,Hx,Wx,Lx" Encoding:"vex m:3 p:1 l:x w:0 0x4A /r is4"/"RVML" + // Pos:2726 Instruction:"VBLENDVPS Vx,Hx,Wx,Lx" Encoding:"vex m:3 p:1 l:x w:0 0x4A /r is4"/"RVML" { .Instruction = ND_INS_VBLENDVPS, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 922, + .Mnemonic = 953, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -74919,6 +78775,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -74934,12 +78791,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2686 Instruction:"VBROADCASTF128 Vqq,Mdq" Encoding:"vex m:2 p:1 l:1 w:0 0x1A /r:mem"/"RM" + // Pos:2727 Instruction:"VBROADCASTF128 Vqq,Mdq" Encoding:"vex m:2 p:1 l:1 w:0 0x1A /r:mem"/"RM" { .Instruction = ND_INS_VBROADCASTF128, .Category = ND_CAT_BROADCAST, .IsaSet = ND_SET_AVX, - .Mnemonic = 923, + .Mnemonic = 954, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -74948,6 +78805,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -74961,12 +78819,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2687 Instruction:"VBROADCASTF32X2 Vuv{K}{z},aKq,Wq" Encoding:"evex m:2 p:1 l:x w:0 0x19 /r"/"RAM" + // Pos:2728 Instruction:"VBROADCASTF32X2 Vuv{K}{z},aKq,Wq" Encoding:"evex m:2 p:1 l:x w:0 0x19 /r"/"RAM" { .Instruction = ND_INS_VBROADCASTF32X2, .Category = ND_CAT_BROADCAST, .IsaSet = ND_SET_AVX512DQ, - .Mnemonic = 924, + .Mnemonic = 955, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -74975,6 +78833,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -74989,12 +78848,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2688 Instruction:"VBROADCASTF32X4 Vuv{K}{z},aKq,Mdq" Encoding:"evex m:2 p:1 l:x w:0 0x1A /r:mem"/"RAM" + // Pos:2729 Instruction:"VBROADCASTF32X4 Vuv{K}{z},aKq,Mdq" Encoding:"evex m:2 p:1 l:x w:0 0x1A /r:mem"/"RAM" { .Instruction = ND_INS_VBROADCASTF32X4, .Category = ND_CAT_BROADCAST, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 925, + .Mnemonic = 956, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -75003,6 +78862,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -75017,12 +78877,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2689 Instruction:"VBROADCASTF32X8 Voq{K}{z},aKq,Mqq" Encoding:"evex m:2 p:1 l:2 w:0 0x1B /r:mem"/"RAM" + // Pos:2730 Instruction:"VBROADCASTF32X8 Voq{K}{z},aKq,Mqq" Encoding:"evex m:2 p:1 l:2 w:0 0x1B /r:mem"/"RAM" { .Instruction = ND_INS_VBROADCASTF32X8, .Category = ND_CAT_BROADCAST, .IsaSet = ND_SET_AVX512DQ, - .Mnemonic = 926, + .Mnemonic = 957, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -75031,6 +78891,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -75045,12 +78906,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2690 Instruction:"VBROADCASTF64X2 Vuv{K}{z},aKq,Mdq" Encoding:"evex m:2 p:1 l:x w:1 0x1A /r:mem"/"RAM" + // Pos:2731 Instruction:"VBROADCASTF64X2 Vuv{K}{z},aKq,Mdq" Encoding:"evex m:2 p:1 l:x w:1 0x1A /r:mem"/"RAM" { .Instruction = ND_INS_VBROADCASTF64X2, .Category = ND_CAT_BROADCAST, .IsaSet = ND_SET_AVX512DQ, - .Mnemonic = 927, + .Mnemonic = 958, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -75059,6 +78920,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -75073,12 +78935,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2691 Instruction:"VBROADCASTF64X4 Voq{K}{z},aKq,Mqq" Encoding:"evex m:2 p:1 l:2 w:1 0x1B /r:mem"/"RAM" + // Pos:2732 Instruction:"VBROADCASTF64X4 Voq{K}{z},aKq,Mqq" Encoding:"evex m:2 p:1 l:2 w:1 0x1B /r:mem"/"RAM" { .Instruction = ND_INS_VBROADCASTF64X4, .Category = ND_CAT_BROADCAST, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 928, + .Mnemonic = 959, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -75087,6 +78949,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -75101,12 +78964,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2692 Instruction:"VBROADCASTI128 Vqq,Mdq" Encoding:"vex m:2 p:1 l:1 w:0 0x5A /r:mem"/"RM" + // Pos:2733 Instruction:"VBROADCASTI128 Vqq,Mdq" Encoding:"vex m:2 p:1 l:1 w:0 0x5A /r:mem"/"RM" { .Instruction = ND_INS_VBROADCASTI128, .Category = ND_CAT_BROADCAST, .IsaSet = ND_SET_AVX2, - .Mnemonic = 929, + .Mnemonic = 960, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -75115,6 +78978,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -75128,12 +78992,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2693 Instruction:"VBROADCASTI32X2 Vfv{K}{z},aKq,Wq" Encoding:"evex m:2 p:1 l:x w:0 0x59 /r"/"RAM" + // Pos:2734 Instruction:"VBROADCASTI32X2 Vfv{K}{z},aKq,Wq" Encoding:"evex m:2 p:1 l:x w:0 0x59 /r"/"RAM" { .Instruction = ND_INS_VBROADCASTI32X2, .Category = ND_CAT_BROADCAST, .IsaSet = ND_SET_AVX512DQ, - .Mnemonic = 930, + .Mnemonic = 961, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -75142,6 +79006,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -75156,12 +79021,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2694 Instruction:"VBROADCASTI32X4 Vuv{K}{z},aKq,Mdq" Encoding:"evex m:2 p:1 l:x w:0 0x5A /r:mem"/"RAM" + // Pos:2735 Instruction:"VBROADCASTI32X4 Vuv{K}{z},aKq,Mdq" Encoding:"evex m:2 p:1 l:x w:0 0x5A /r:mem"/"RAM" { .Instruction = ND_INS_VBROADCASTI32X4, .Category = ND_CAT_BROADCAST, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 931, + .Mnemonic = 962, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -75170,6 +79035,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -75184,12 +79050,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2695 Instruction:"VBROADCASTI32X8 Voq{K}{z},aKq,Mqq" Encoding:"evex m:2 p:1 l:2 w:0 0x5B /r:mem"/"RAM" + // Pos:2736 Instruction:"VBROADCASTI32X8 Voq{K}{z},aKq,Mqq" Encoding:"evex m:2 p:1 l:2 w:0 0x5B /r:mem"/"RAM" { .Instruction = ND_INS_VBROADCASTI32X8, .Category = ND_CAT_BROADCAST, .IsaSet = ND_SET_AVX512DQ, - .Mnemonic = 932, + .Mnemonic = 963, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -75198,6 +79064,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -75212,12 +79079,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2696 Instruction:"VBROADCASTI64X2 Vuv{K}{z},aKq,Mdq" Encoding:"evex m:2 p:1 l:x w:1 0x5A /r:mem"/"RAM" + // Pos:2737 Instruction:"VBROADCASTI64X2 Vuv{K}{z},aKq,Mdq" Encoding:"evex m:2 p:1 l:x w:1 0x5A /r:mem"/"RAM" { .Instruction = ND_INS_VBROADCASTI64X2, .Category = ND_CAT_BROADCAST, .IsaSet = ND_SET_AVX512DQ, - .Mnemonic = 933, + .Mnemonic = 964, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -75226,6 +79093,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -75240,12 +79108,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2697 Instruction:"VBROADCASTI64X4 Voq{K}{z},aKq,Mqq" Encoding:"evex m:2 p:1 l:2 w:1 0x5B /r:mem"/"RAM" + // Pos:2738 Instruction:"VBROADCASTI64X4 Voq{K}{z},aKq,Mqq" Encoding:"evex m:2 p:1 l:2 w:1 0x5B /r:mem"/"RAM" { .Instruction = ND_INS_VBROADCASTI64X4, .Category = ND_CAT_BROADCAST, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 934, + .Mnemonic = 965, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -75254,6 +79122,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -75268,12 +79137,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2698 Instruction:"VBROADCASTSD Vuv{K}{z},aKq,Wsd" Encoding:"evex m:2 p:1 l:x w:1 0x19 /r"/"RAM" + // Pos:2739 Instruction:"VBROADCASTSD Vuv{K}{z},aKq,Wsd" Encoding:"evex m:2 p:1 l:x w:1 0x19 /r"/"RAM" { .Instruction = ND_INS_VBROADCASTSD, .Category = ND_CAT_BROADCAST, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 935, + .Mnemonic = 966, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -75282,6 +79151,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -75296,12 +79166,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2699 Instruction:"VBROADCASTSD Vqq,Wsd" Encoding:"vex m:2 p:1 l:x w:0 0x19 /r"/"RM" + // Pos:2740 Instruction:"VBROADCASTSD Vqq,Wsd" Encoding:"vex m:2 p:1 l:x w:0 0x19 /r"/"RM" { .Instruction = ND_INS_VBROADCASTSD, .Category = ND_CAT_BROADCAST, .IsaSet = ND_SET_AVX, - .Mnemonic = 935, + .Mnemonic = 966, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -75310,6 +79180,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -75323,12 +79194,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2700 Instruction:"VBROADCASTSS Vfv{K}{z},aKq,Wss" Encoding:"evex m:2 p:1 l:x w:0 0x18 /r"/"RAM" + // Pos:2741 Instruction:"VBROADCASTSS Vfv{K}{z},aKq,Wss" Encoding:"evex m:2 p:1 l:x w:0 0x18 /r"/"RAM" { .Instruction = ND_INS_VBROADCASTSS, .Category = ND_CAT_BROADCAST, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 936, + .Mnemonic = 967, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -75337,6 +79208,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -75351,12 +79223,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2701 Instruction:"VBROADCASTSS Vx,Wss" Encoding:"vex m:2 p:1 l:x w:0 0x18 /r"/"RM" + // Pos:2742 Instruction:"VBROADCASTSS Vx,Wss" Encoding:"vex m:2 p:1 l:x w:0 0x18 /r"/"RM" { .Instruction = ND_INS_VBROADCASTSS, .Category = ND_CAT_BROADCAST, .IsaSet = ND_SET_AVX, - .Mnemonic = 936, + .Mnemonic = 967, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -75365,6 +79237,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -75378,12 +79251,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2702 Instruction:"VCMPPBF16 rK{K},aKq,Hfv,Wfv|B16,Ib" Encoding:"evex m:3 p:3 l:x w:0 0xC2 /r ib"/"RAVMI" + // Pos:2743 Instruction:"VCMPPBF16 rK{K},aKq,Hfv,Wfv|B16,Ib" Encoding:"evex m:3 p:3 l:x w:0 0xC2 /r ib"/"RAVMI" { .Instruction = ND_INS_VCMPPBF16, .Category = ND_CAT_AVX10BF16, .IsaSet = ND_SET_AVX102, - .Mnemonic = 937, + .Mnemonic = 968, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_BROADCAST, @@ -75392,6 +79265,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -75408,12 +79282,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2703 Instruction:"VCMPPD rKq{K},aKq,Hfv,Wfv|B64{sae},Ib" Encoding:"evex m:1 p:1 l:x w:1 0xC2 /r ib"/"RAVMI" + // Pos:2744 Instruction:"VCMPPD rKq{K},aKq,Hfv,Wfv|B64{sae},Ib" Encoding:"evex m:1 p:1 l:x w:1 0xC2 /r ib"/"RAVMI" { .Instruction = ND_INS_VCMPPD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 938, + .Mnemonic = 969, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -75422,6 +79296,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -75438,12 +79313,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2704 Instruction:"VCMPPD Vpd,Hpd,Wpd,Ib" Encoding:"vex m:1 p:1 l:x w:i 0xC2 /r ib"/"RVMI" + // Pos:2745 Instruction:"VCMPPD Vpd,Hpd,Wpd,Ib" Encoding:"vex m:1 p:1 l:x w:i 0xC2 /r ib"/"RVMI" { .Instruction = ND_INS_VCMPPD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 938, + .Mnemonic = 969, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -75452,6 +79327,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -75467,12 +79343,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2705 Instruction:"VCMPPH rK{K},aKq,Hfv,Wfv|B16{sae},Ib" Encoding:"evex m:3 p:0 l:x w:0 0xC2 /r ib"/"RAVMI" + // Pos:2746 Instruction:"VCMPPH rK{K},aKq,Hfv,Wfv|B16{sae},Ib" Encoding:"evex m:3 p:0 l:x w:0 0xC2 /r ib"/"RAVMI" { .Instruction = ND_INS_VCMPPH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 939, + .Mnemonic = 970, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -75481,6 +79357,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -75497,12 +79374,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2706 Instruction:"VCMPPS rKq{K},aKq,Hfv,Wfv|B32{sae},Ib" Encoding:"evex m:1 p:0 l:x w:0 0xC2 /r ib"/"RAVMI" + // Pos:2747 Instruction:"VCMPPS rKq{K},aKq,Hfv,Wfv|B32{sae},Ib" Encoding:"evex m:1 p:0 l:x w:0 0xC2 /r ib"/"RAVMI" { .Instruction = ND_INS_VCMPPS, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 940, + .Mnemonic = 971, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -75511,6 +79388,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -75527,12 +79405,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2707 Instruction:"VCMPPS Vss,Hss,Wss,Ib" Encoding:"vex m:1 p:0 l:i w:i 0xC2 /r ib"/"RVMI" + // Pos:2748 Instruction:"VCMPPS Vss,Hss,Wss,Ib" Encoding:"vex m:1 p:0 l:i w:i 0xC2 /r ib"/"RVMI" { .Instruction = ND_INS_VCMPPS, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 940, + .Mnemonic = 971, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -75541,6 +79419,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -75556,12 +79435,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2708 Instruction:"VCMPSD rKq{K},aKq,Hdq,Wsd{sae},Ib" Encoding:"evex m:1 p:3 l:x w:1 0xC2 /r ib"/"RAVMI" + // Pos:2749 Instruction:"VCMPSD rKq{K},aKq,Hdq,Wsd{sae},Ib" Encoding:"evex m:1 p:3 l:x w:1 0xC2 /r ib"/"RAVMI" { .Instruction = ND_INS_VCMPSD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 941, + .Mnemonic = 972, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_SAE, @@ -75570,6 +79449,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -75586,12 +79466,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2709 Instruction:"VCMPSD Vsd,Hsd,Wsd,Ib" Encoding:"vex m:1 p:3 l:i w:i 0xC2 /r ib"/"RVMI" + // Pos:2750 Instruction:"VCMPSD Vsd,Hsd,Wsd,Ib" Encoding:"vex m:1 p:3 l:i w:i 0xC2 /r ib"/"RVMI" { .Instruction = ND_INS_VCMPSD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 941, + .Mnemonic = 972, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -75600,6 +79480,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -75615,12 +79496,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2710 Instruction:"VCMPSH rK{K},aKq,Hfv,Wsh{sae},Ib" Encoding:"evex m:3 p:2 l:i w:0 0xC2 /r ib"/"RAVMI" + // Pos:2751 Instruction:"VCMPSH rK{K},aKq,Hfv,Wsh{sae},Ib" Encoding:"evex m:3 p:2 l:i w:0 0xC2 /r ib"/"RAVMI" { .Instruction = ND_INS_VCMPSH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 942, + .Mnemonic = 973, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_SAE, @@ -75629,6 +79510,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -75645,12 +79527,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2711 Instruction:"VCMPSS rKq{K},aKq,Hdq,Wss{sae},Ib" Encoding:"evex m:1 p:2 l:x w:0 0xC2 /r ib"/"RAVMI" + // Pos:2752 Instruction:"VCMPSS rKq{K},aKq,Hdq,Wss{sae},Ib" Encoding:"evex m:1 p:2 l:x w:0 0xC2 /r ib"/"RAVMI" { .Instruction = ND_INS_VCMPSS, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 943, + .Mnemonic = 974, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_SAE, @@ -75659,6 +79541,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -75675,12 +79558,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2712 Instruction:"VCMPSS Vss,Hss,Wss,Ib" Encoding:"vex m:1 p:2 l:i w:i 0xC2 /r ib"/"RVMI" + // Pos:2753 Instruction:"VCMPSS Vss,Hss,Wss,Ib" Encoding:"vex m:1 p:2 l:i w:i 0xC2 /r ib"/"RVMI" { .Instruction = ND_INS_VCMPSS, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 943, + .Mnemonic = 974, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -75689,6 +79572,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -75704,12 +79588,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2713 Instruction:"VCOMISD Vdq,Wsd{sae}" Encoding:"evex m:1 p:1 l:i w:1 0x2F /r"/"RM" + // Pos:2754 Instruction:"VCOMISD Vdq,Wsd{sae}" Encoding:"evex m:1 p:1 l:i w:1 0x2F /r"/"RM" { .Instruction = ND_INS_VCOMISD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 944, + .Mnemonic = 975, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_SAE, @@ -75718,6 +79602,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF, .SetFlags = 0, @@ -75732,12 +79617,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2714 Instruction:"VCOMISD Vsd,Wsd" Encoding:"vex m:1 p:1 l:i w:i 0x2F /r"/"RM" + // Pos:2755 Instruction:"VCOMISD Vsd,Wsd" Encoding:"vex m:1 p:1 l:i w:i 0x2F /r"/"RM" { .Instruction = ND_INS_VCOMISD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 944, + .Mnemonic = 975, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -75746,6 +79631,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF, .SetFlags = 0, @@ -75760,12 +79646,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2715 Instruction:"VCOMISH Vdq,Wsh{sae}" Encoding:"evex m:5 p:0 l:i w:0 0x2F /r"/"RM" + // Pos:2756 Instruction:"VCOMISH Vdq,Wsh{sae}" Encoding:"evex m:5 p:0 l:i w:0 0x2F /r"/"RM" { .Instruction = ND_INS_VCOMISH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 945, + .Mnemonic = 976, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_SAE, @@ -75774,6 +79660,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_ZF|NDR_RFLAG_PF|NDR_RFLAG_CF, .SetFlags = 0, @@ -75788,12 +79675,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2716 Instruction:"VCOMISS Vdq,Wss{sae}" Encoding:"evex m:1 p:0 l:i w:0 0x2F /r"/"RM" + // Pos:2757 Instruction:"VCOMISS Vdq,Wss{sae}" Encoding:"evex m:1 p:0 l:i w:0 0x2F /r"/"RM" { .Instruction = ND_INS_VCOMISS, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 946, + .Mnemonic = 977, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_SAE, @@ -75802,6 +79689,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF, .SetFlags = 0, @@ -75816,12 +79704,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2717 Instruction:"VCOMISS Vss,Wss" Encoding:"vex m:1 p:0 l:i w:i 0x2F /r"/"RM" + // Pos:2758 Instruction:"VCOMISS Vss,Wss" Encoding:"vex m:1 p:0 l:i w:i 0x2F /r"/"RM" { .Instruction = ND_INS_VCOMISS, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 946, + .Mnemonic = 977, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -75830,6 +79718,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF, .SetFlags = 0, @@ -75844,12 +79733,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2718 Instruction:"VCOMPRESSPD Wfv{K}{z},aKq,Vfv" Encoding:"evex m:2 p:1 l:x w:1 0x8A /r"/"MAR" + // Pos:2759 Instruction:"VCOMPRESSPD Wfv{K}{z},aKq,Vfv" Encoding:"evex m:2 p:1 l:x w:1 0x8A /r"/"MAR" { .Instruction = ND_INS_VCOMPRESSPD, .Category = ND_CAT_COMPRESS, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 947, + .Mnemonic = 978, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -75858,6 +79747,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -75872,12 +79762,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2719 Instruction:"VCOMPRESSPS Wfv{K}{z},aKq,Vfv" Encoding:"evex m:2 p:1 l:x w:0 0x8A /r"/"MAR" + // Pos:2760 Instruction:"VCOMPRESSPS Wfv{K}{z},aKq,Vfv" Encoding:"evex m:2 p:1 l:x w:0 0x8A /r"/"MAR" { .Instruction = ND_INS_VCOMPRESSPS, .Category = ND_CAT_COMPRESS, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 948, + .Mnemonic = 979, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -75886,6 +79776,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -75900,12 +79791,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2720 Instruction:"VCOMSBF16 Vdq,Wsh" Encoding:"evex m:5 p:1 l:i w:0 0x2F /r"/"RM" + // Pos:2761 Instruction:"VCOMSBF16 Vdq,Wsh" Encoding:"evex m:5 p:1 l:i w:0 0x2F /r"/"RM" { .Instruction = ND_INS_VCOMSBF16, .Category = ND_CAT_AVX10BF16, .IsaSet = ND_SET_AVX102, - .Mnemonic = 949, + .Mnemonic = 980, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -75914,6 +79805,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E10NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_ZF|NDR_RFLAG_PF|NDR_RFLAG_CF, .SetFlags = 0, @@ -75928,12 +79820,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2721 Instruction:"VCOMXSD Vdq,Wsd{sae}" Encoding:"evex m:1 p:2 l:0 w:1 0x2F /r"/"RM" + // Pos:2762 Instruction:"VCOMXSD Vdq,Wsd{sae}" Encoding:"evex m:1 p:3 l:i w:1 0x2F /r"/"RM" { .Instruction = ND_INS_VCOMXSD, .Category = ND_CAT_AVX10CMPSFP, .IsaSet = ND_SET_AVX102, - .Mnemonic = 950, + .Mnemonic = 981, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_SAE, @@ -75942,11 +79834,12 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, .ClearedFlags = 0|NDR_RFLAG_AF, - .Attributes = ND_FLAG_MODRM|ND_FLAG_VECTOR|ND_FLAG_NOV|ND_FLAG_NOVP, + .Attributes = ND_FLAG_LIG|ND_FLAG_MODRM|ND_FLAG_VECTOR|ND_FLAG_NOV|ND_FLAG_NOVP, .CpuidFlag = 0, .Operands = { @@ -75956,12 +79849,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2722 Instruction:"VCOMXSH Vdq,Wsh{sae}" Encoding:"evex m:5 p:3 l:0 w:0 0x2F /r"/"RM" + // Pos:2763 Instruction:"VCOMXSH Vdq,Wsh{sae}" Encoding:"evex m:5 p:2 l:i w:0 0x2F /r"/"RM" { .Instruction = ND_INS_VCOMXSH, .Category = ND_CAT_AVX10CMPSFP, .IsaSet = ND_SET_AVX102, - .Mnemonic = 951, + .Mnemonic = 982, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_SAE, @@ -75970,11 +79863,12 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, .ClearedFlags = 0|NDR_RFLAG_AF, - .Attributes = ND_FLAG_MODRM|ND_FLAG_VECTOR|ND_FLAG_NOV|ND_FLAG_NOVP, + .Attributes = ND_FLAG_LIG|ND_FLAG_MODRM|ND_FLAG_VECTOR|ND_FLAG_NOV|ND_FLAG_NOVP, .CpuidFlag = 0, .Operands = { @@ -75984,12 +79878,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2723 Instruction:"VCOMXSS Vdq,Wss{sae}" Encoding:"evex m:1 p:3 l:0 w:0 0x2F /r"/"RM" + // Pos:2764 Instruction:"VCOMXSS Vdq,Wss{sae}" Encoding:"evex m:1 p:2 l:i w:0 0x2F /r"/"RM" { .Instruction = ND_INS_VCOMXSS, .Category = ND_CAT_AVX10CMPSFP, .IsaSet = ND_SET_AVX102, - .Mnemonic = 952, + .Mnemonic = 983, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_SAE, @@ -75998,11 +79892,12 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, .ClearedFlags = 0|NDR_RFLAG_AF, - .Attributes = ND_FLAG_MODRM|ND_FLAG_VECTOR|ND_FLAG_NOV|ND_FLAG_NOVP, + .Attributes = ND_FLAG_LIG|ND_FLAG_MODRM|ND_FLAG_VECTOR|ND_FLAG_NOV|ND_FLAG_NOVP, .CpuidFlag = 0, .Operands = { @@ -76012,12 +79907,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2724 Instruction:"VCVT2PS2PHX Vfv{K}{z},aKq,Hfv,Wfv|B32{er}" Encoding:"evex m:2 p:1 l:x w:0 0x67 /r"/"RAVM" + // Pos:2765 Instruction:"VCVT2PS2PHX Vfv{K}{z},aKq,Hfv,Wfv|B32{er}" Encoding:"evex m:2 p:1 l:x w:0 0x67 /r"/"RAVM" { .Instruction = ND_INS_VCVT2PS2PHX, .Category = ND_CAT_AVX10CONVERT, .IsaSet = ND_SET_AVX102, - .Mnemonic = 953, + .Mnemonic = 984, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -76026,6 +79921,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -76041,12 +79937,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2725 Instruction:"VCVTBIASPH2BF8 Vhv{K}{z},aKq,Hfv,Wfv|B16" Encoding:"evex m:2 p:0 l:x w:0 0x74 /r"/"RAVM" + // Pos:2766 Instruction:"VCVTBIASPH2BF8 Vhv{K}{z},aKq,Hfv,Wfv|B16" Encoding:"evex m:2 p:0 l:x w:0 0x74 /r"/"RAVM" { .Instruction = ND_INS_VCVTBIASPH2BF8, .Category = ND_CAT_AVX10CONVERT, .IsaSet = ND_SET_AVX102, - .Mnemonic = 954, + .Mnemonic = 985, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -76055,6 +79951,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -76070,12 +79967,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2726 Instruction:"VCVTBIASPH2BF8S Vhv{K}{z},aKq,Hfv,Wfv|B16" Encoding:"evex m:5 p:0 l:x w:0 0x74 /r"/"RAVM" + // Pos:2767 Instruction:"VCVTBIASPH2BF8S Vhv{K}{z},aKq,Hfv,Wfv|B16" Encoding:"evex m:5 p:0 l:x w:0 0x74 /r"/"RAVM" { .Instruction = ND_INS_VCVTBIASPH2BF8S, .Category = ND_CAT_AVX10CONVERT, .IsaSet = ND_SET_AVX102, - .Mnemonic = 955, + .Mnemonic = 986, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -76084,6 +79981,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -76099,12 +79997,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2727 Instruction:"VCVTBIASPH2HF8 Vhv{K}{z},aKq,Hfv,Wfv|B16" Encoding:"evex m:5 p:0 l:x w:0 0x18 /r"/"RAVM" + // Pos:2768 Instruction:"VCVTBIASPH2HF8 Vhv{K}{z},aKq,Hfv,Wfv|B16" Encoding:"evex m:5 p:0 l:x w:0 0x18 /r"/"RAVM" { .Instruction = ND_INS_VCVTBIASPH2HF8, .Category = ND_CAT_AVX10CONVERT, .IsaSet = ND_SET_AVX102, - .Mnemonic = 956, + .Mnemonic = 987, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -76113,6 +80011,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -76128,12 +80027,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2728 Instruction:"VCVTBIASPH2HF8S Vhv{K}{z},aKq,Hfv,Wfv|B16" Encoding:"evex m:5 p:0 l:x w:0 0x1B /r"/"RAVM" + // Pos:2769 Instruction:"VCVTBIASPH2HF8S Vhv{K}{z},aKq,Hfv,Wfv|B16" Encoding:"evex m:5 p:0 l:x w:0 0x1B /r"/"RAVM" { .Instruction = ND_INS_VCVTBIASPH2HF8S, .Category = ND_CAT_AVX10CONVERT, .IsaSet = ND_SET_AVX102, - .Mnemonic = 957, + .Mnemonic = 988, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -76142,6 +80041,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -76157,12 +80057,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2729 Instruction:"VCVTDQ2PD Vfv{K}{z},aKq,Whv|B32" Encoding:"evex m:1 p:2 l:x w:0 0xE6 /r"/"RAM" + // Pos:2770 Instruction:"VCVTDQ2PD Vfv{K}{z},aKq,Whv|B32" Encoding:"evex m:1 p:2 l:x w:0 0xE6 /r"/"RAM" { .Instruction = ND_INS_VCVTDQ2PD, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 958, + .Mnemonic = 989, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -76171,6 +80071,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -76185,12 +80086,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2730 Instruction:"VCVTDQ2PD Vdq,Wq" Encoding:"vex m:1 p:2 l:0 w:i 0xE6 /r"/"RM" + // Pos:2771 Instruction:"VCVTDQ2PD Vdq,Wq" Encoding:"vex m:1 p:2 l:0 w:i 0xE6 /r"/"RM" { .Instruction = ND_INS_VCVTDQ2PD, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX, - .Mnemonic = 958, + .Mnemonic = 989, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -76199,6 +80100,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -76212,12 +80114,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2731 Instruction:"VCVTDQ2PD Vqq,Wdq" Encoding:"vex m:1 p:2 l:1 w:i 0xE6 /r"/"RM" + // Pos:2772 Instruction:"VCVTDQ2PD Vqq,Wdq" Encoding:"vex m:1 p:2 l:1 w:i 0xE6 /r"/"RM" { .Instruction = ND_INS_VCVTDQ2PD, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX, - .Mnemonic = 958, + .Mnemonic = 989, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -76226,6 +80128,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -76239,12 +80142,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2732 Instruction:"VCVTDQ2PH Vhv{K}{z},aKq,Wfv|B32{er}" Encoding:"evex m:5 p:0 l:x w:0 0x5B /r"/"RAM" + // Pos:2773 Instruction:"VCVTDQ2PH Vhv{K}{z},aKq,Wfv|B32{er}" Encoding:"evex m:5 p:0 l:x w:0 0x5B /r"/"RAM" { .Instruction = ND_INS_VCVTDQ2PH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 959, + .Mnemonic = 990, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -76253,6 +80156,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_PE|ND_SIMD_EXC_OE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -76267,12 +80171,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2733 Instruction:"VCVTDQ2PS Vfv{K}{z},aKq,Wfv|B32{er}" Encoding:"evex m:1 p:0 l:x w:0 0x5B /r"/"RAM" + // Pos:2774 Instruction:"VCVTDQ2PS Vfv{K}{z},aKq,Wfv|B32{er}" Encoding:"evex m:1 p:0 l:x w:0 0x5B /r"/"RAM" { .Instruction = ND_INS_VCVTDQ2PS, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 960, + .Mnemonic = 991, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -76281,6 +80185,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -76295,12 +80200,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2734 Instruction:"VCVTDQ2PS Vps,Wps" Encoding:"vex m:1 p:0 l:x w:i 0x5B /r"/"RM" + // Pos:2775 Instruction:"VCVTDQ2PS Vps,Wps" Encoding:"vex m:1 p:0 l:x w:i 0x5B /r"/"RM" { .Instruction = ND_INS_VCVTDQ2PS, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX, - .Mnemonic = 960, + .Mnemonic = 991, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -76309,6 +80214,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -76322,12 +80228,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2735 Instruction:"VCVTHF82PH Vfv{K}{z},aKq,Whv" Encoding:"evex m:5 p:3 l:x w:0 0x1E /r"/"RAM" + // Pos:2776 Instruction:"VCVTHF82PH Vfv{K}{z},aKq,Whv" Encoding:"evex m:5 p:3 l:x w:0 0x1E /r"/"RAM" { .Instruction = ND_INS_VCVTHF82PH, .Category = ND_CAT_AVX10CONVERT, .IsaSet = ND_SET_AVX102, - .Mnemonic = 961, + .Mnemonic = 992, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -76336,6 +80242,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -76350,12 +80257,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2736 Instruction:"VCVTNE2PH2BF8 Vfv{K}{z},aKq,Hfv,Wfv|B16" Encoding:"evex m:1 p:3 l:x w:0 0x74 /r"/"RAVM" + // Pos:2777 Instruction:"VCVTNE2PH2BF8 Vfv{K}{z},aKq,Hfv,Wfv|B16" Encoding:"evex m:2 p:3 l:x w:0 0x74 /r"/"RAVM" { .Instruction = ND_INS_VCVTNE2PH2BF8, .Category = ND_CAT_AVX10CONVERT, .IsaSet = ND_SET_AVX102, - .Mnemonic = 962, + .Mnemonic = 993, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -76364,6 +80271,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -76379,12 +80287,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2737 Instruction:"VCVTNE2PH2BF8S Vfv{K}{z},aKq,Hfv,Wfv|B16" Encoding:"evex m:5 p:3 l:x w:0 0x74 /r"/"RAVM" + // Pos:2778 Instruction:"VCVTNE2PH2BF8S Vfv{K}{z},aKq,Hfv,Wfv|B16" Encoding:"evex m:5 p:3 l:x w:0 0x74 /r"/"RAVM" { .Instruction = ND_INS_VCVTNE2PH2BF8S, .Category = ND_CAT_AVX10CONVERT, .IsaSet = ND_SET_AVX102, - .Mnemonic = 963, + .Mnemonic = 994, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -76393,6 +80301,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -76408,12 +80317,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2738 Instruction:"VCVTNE2PH2HF8 Vfv{K}{z},aKq,Hfv,Wfv|B16" Encoding:"evex m:5 p:3 l:x w:0 0x18 /r"/"RAVM" + // Pos:2779 Instruction:"VCVTNE2PH2HF8 Vfv{K}{z},aKq,Hfv,Wfv|B16" Encoding:"evex m:5 p:3 l:x w:0 0x18 /r"/"RAVM" { .Instruction = ND_INS_VCVTNE2PH2HF8, .Category = ND_CAT_AVX10CONVERT, .IsaSet = ND_SET_AVX102, - .Mnemonic = 964, + .Mnemonic = 995, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -76422,6 +80331,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -76437,12 +80347,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2739 Instruction:"VCVTNE2PH2HF8S Vfv{K}{z},aKq,Hfv,Wfv|B16" Encoding:"evex m:5 p:3 l:x w:0 0x1B /r"/"RAVM" + // Pos:2780 Instruction:"VCVTNE2PH2HF8S Vfv{K}{z},aKq,Hfv,Wfv|B16" Encoding:"evex m:5 p:3 l:x w:0 0x1B /r"/"RAVM" { .Instruction = ND_INS_VCVTNE2PH2HF8S, .Category = ND_CAT_AVX10CONVERT, .IsaSet = ND_SET_AVX102, - .Mnemonic = 965, + .Mnemonic = 996, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -76451,6 +80361,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -76466,12 +80377,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2740 Instruction:"VCVTNE2PS2BF16 Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:3 l:x w:0 0x72 /r"/"RAVM" + // Pos:2781 Instruction:"VCVTNE2PS2BF16 Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:3 l:x w:0 0x72 /r"/"RAVM" { .Instruction = ND_INS_VCVTNE2PS2BF16, .Category = ND_CAT_AVX512BF16, .IsaSet = ND_SET_AVX512BF16, - .Mnemonic = 966, + .Mnemonic = 997, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -76480,6 +80391,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -76495,12 +80407,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2741 Instruction:"VCVTNEBF162IBS Vfv{K}{z},aKq,Wfv|B16" Encoding:"evex m:5 p:3 l:x w:0 0x69 /r"/"RAM" + // Pos:2782 Instruction:"VCVTNEBF162IBS Vfv{K}{z},aKq,Wfv|B16" Encoding:"evex m:5 p:3 l:x w:0 0x69 /r"/"RAM" { .Instruction = ND_INS_VCVTNEBF162IBS, .Category = ND_CAT_AVX10SCONVERT, .IsaSet = ND_SET_AVX102, - .Mnemonic = 967, + .Mnemonic = 998, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -76509,6 +80421,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -76523,12 +80436,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2742 Instruction:"VCVTNEBF162IUBS Vfv{K}{z},aKq,Wfv|B16" Encoding:"evex m:5 p:3 l:x w:0 0x6B /r"/"RAM" + // Pos:2783 Instruction:"VCVTNEBF162IUBS Vfv{K}{z},aKq,Wfv|B16" Encoding:"evex m:5 p:3 l:x w:0 0x6B /r"/"RAM" { .Instruction = ND_INS_VCVTNEBF162IUBS, .Category = ND_CAT_AVX10SCONVERT, .IsaSet = ND_SET_AVX102, - .Mnemonic = 968, + .Mnemonic = 999, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -76537,6 +80450,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -76551,12 +80465,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2743 Instruction:"VCVTNEEBF162PS Vx,Mx" Encoding:"vex m:2 p:2 l:x w:0 0xB0 /r:mem"/"RM" + // Pos:2784 Instruction:"VCVTNEEBF162PS Vx,Mx" Encoding:"vex m:2 p:2 l:x w:0 0xB0 /r:mem"/"RM" { .Instruction = ND_INS_VCVTNEEBF162PS, .Category = ND_CAT_AVXNECONVERT, .IsaSet = ND_SET_AVXNECONVERT, - .Mnemonic = 969, + .Mnemonic = 1000, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -76565,6 +80479,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -76578,12 +80493,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2744 Instruction:"VCVTNEEPH2PS Vx,Mx" Encoding:"vex m:2 p:1 l:x w:0 0xB0 /r:mem"/"RM" + // Pos:2785 Instruction:"VCVTNEEPH2PS Vx,Mx" Encoding:"vex m:2 p:1 l:x w:0 0xB0 /r:mem"/"RM" { .Instruction = ND_INS_VCVTNEEPH2PS, .Category = ND_CAT_AVXNECONVERT, .IsaSet = ND_SET_AVXNECONVERT, - .Mnemonic = 970, + .Mnemonic = 1001, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -76592,6 +80507,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -76605,12 +80521,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2745 Instruction:"VCVTNEOBF162PS Vx,Mx" Encoding:"vex m:2 p:3 l:x w:0 0xB0 /r:mem"/"RM" + // Pos:2786 Instruction:"VCVTNEOBF162PS Vx,Mx" Encoding:"vex m:2 p:3 l:x w:0 0xB0 /r:mem"/"RM" { .Instruction = ND_INS_VCVTNEOBF162PS, .Category = ND_CAT_AVXNECONVERT, .IsaSet = ND_SET_AVXNECONVERT, - .Mnemonic = 971, + .Mnemonic = 1002, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -76619,6 +80535,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -76632,12 +80549,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2746 Instruction:"VCVTNEOPH2PS Vx,Mx" Encoding:"vex m:2 p:0 l:x w:0 0xB0 /r:mem"/"RM" + // Pos:2787 Instruction:"VCVTNEOPH2PS Vx,Mx" Encoding:"vex m:2 p:0 l:x w:0 0xB0 /r:mem"/"RM" { .Instruction = ND_INS_VCVTNEOPH2PS, .Category = ND_CAT_AVXNECONVERT, .IsaSet = ND_SET_AVXNECONVERT, - .Mnemonic = 972, + .Mnemonic = 1003, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -76646,6 +80563,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -76659,12 +80577,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2747 Instruction:"VCVTNEPH2BF8 Vhv{K}{z},aKq,Wfv|B16" Encoding:"evex m:1 p:2 l:x w:0 0x74 /r"/"RAM" + // Pos:2788 Instruction:"VCVTNEPH2BF8 Vhv{K}{z},aKq,Wfv|B16" Encoding:"evex m:2 p:2 l:x w:0 0x74 /r"/"RAM" { .Instruction = ND_INS_VCVTNEPH2BF8, .Category = ND_CAT_AVX10CONVERT, .IsaSet = ND_SET_AVX102, - .Mnemonic = 973, + .Mnemonic = 1004, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -76673,6 +80591,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -76687,12 +80606,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2748 Instruction:"VCVTNEPH2BF8S Vhv{K}{z},aKq,Wfv|B16" Encoding:"evex m:5 p:2 l:x w:0 0x74 /r"/"RAM" + // Pos:2789 Instruction:"VCVTNEPH2BF8S Vhv{K}{z},aKq,Wfv|B16" Encoding:"evex m:5 p:2 l:x w:0 0x74 /r"/"RAM" { .Instruction = ND_INS_VCVTNEPH2BF8S, .Category = ND_CAT_AVX10CONVERT, .IsaSet = ND_SET_AVX102, - .Mnemonic = 974, + .Mnemonic = 1005, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -76701,6 +80620,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -76715,12 +80635,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2749 Instruction:"VCVTNEPH2HF8 Vhv{K}{z},aKq,Wfv|B16" Encoding:"evex m:5 p:2 l:x w:0 0x18 /r"/"RAM" + // Pos:2790 Instruction:"VCVTNEPH2HF8 Vhv{K}{z},aKq,Wfv|B16" Encoding:"evex m:5 p:2 l:x w:0 0x18 /r"/"RAM" { .Instruction = ND_INS_VCVTNEPH2HF8, .Category = ND_CAT_AVX10CONVERT, .IsaSet = ND_SET_AVX102, - .Mnemonic = 975, + .Mnemonic = 1006, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -76729,6 +80649,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -76743,12 +80664,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2750 Instruction:"VCVTNEPH2HF8S Vhv{K}{z},aKq,Wfv|B16" Encoding:"evex m:5 p:2 l:x w:0 0x1B /r"/"RAM" + // Pos:2791 Instruction:"VCVTNEPH2HF8S Vhv{K}{z},aKq,Wfv|B16" Encoding:"evex m:5 p:2 l:x w:0 0x1B /r"/"RAM" { .Instruction = ND_INS_VCVTNEPH2HF8S, .Category = ND_CAT_AVX10CONVERT, .IsaSet = ND_SET_AVX102, - .Mnemonic = 976, + .Mnemonic = 1007, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -76757,6 +80678,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -76771,12 +80693,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2751 Instruction:"VCVTNEPS2BF16 Vhv{K}{z},aKq,Wfv|B32" Encoding:"evex m:2 p:2 l:x w:0 0x72 /r"/"RAM" + // Pos:2792 Instruction:"VCVTNEPS2BF16 Vhv{K}{z},aKq,Wfv|B32" Encoding:"evex m:2 p:2 l:x w:0 0x72 /r"/"RAM" { .Instruction = ND_INS_VCVTNEPS2BF16, .Category = ND_CAT_AVX512BF16, .IsaSet = ND_SET_AVX512BF16, - .Mnemonic = 977, + .Mnemonic = 1008, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -76785,6 +80707,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -76799,12 +80722,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2752 Instruction:"VCVTNEPS2BF16 Vx,Wx" Encoding:"vex m:2 p:2 l:x w:0 0x72 /r"/"RM" + // Pos:2793 Instruction:"VCVTNEPS2BF16 Vx,Wx" Encoding:"vex m:2 p:2 l:x w:0 0x72 /r"/"RM" { .Instruction = ND_INS_VCVTNEPS2BF16, .Category = ND_CAT_AVXNECONVERT, .IsaSet = ND_SET_AVXNECONVERT, - .Mnemonic = 977, + .Mnemonic = 1008, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -76813,6 +80736,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -76826,12 +80750,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2753 Instruction:"VCVTPD2DQ Vhv{K}{z},aKq,Wfv|B64{er}" Encoding:"evex m:1 p:3 l:x w:1 0xE6 /r"/"RAM" + // Pos:2794 Instruction:"VCVTPD2DQ Vhv{K}{z},aKq,Wfv|B64{er}" Encoding:"evex m:1 p:3 l:x w:1 0xE6 /r"/"RAM" { .Instruction = ND_INS_VCVTPD2DQ, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 978, + .Mnemonic = 1009, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -76840,6 +80764,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -76854,12 +80779,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2754 Instruction:"VCVTPD2DQ Vdq,Wx" Encoding:"vex m:1 p:3 l:x w:i 0xE6 /r"/"RM" + // Pos:2795 Instruction:"VCVTPD2DQ Vdq,Wx" Encoding:"vex m:1 p:3 l:x w:i 0xE6 /r"/"RM" { .Instruction = ND_INS_VCVTPD2DQ, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX, - .Mnemonic = 978, + .Mnemonic = 1009, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -76868,6 +80793,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -76881,12 +80807,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2755 Instruction:"VCVTPD2PH Vdq{K}{z},aKq,Wfv|B64{er}" Encoding:"evex m:5 p:1 l:x w:1 0x5A /r"/"RAM" + // Pos:2796 Instruction:"VCVTPD2PH Vdq{K}{z},aKq,Wfv|B64{er}" Encoding:"evex m:5 p:1 l:x w:1 0x5A /r"/"RAM" { .Instruction = ND_INS_VCVTPD2PH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 979, + .Mnemonic = 1010, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -76895,6 +80821,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -76909,12 +80836,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2756 Instruction:"VCVTPD2PS Vhv{K}{z},aKq,Wfv|B64{er}" Encoding:"evex m:1 p:1 l:x w:1 0x5A /r"/"RAM" + // Pos:2797 Instruction:"VCVTPD2PS Vhv{K}{z},aKq,Wfv|B64{er}" Encoding:"evex m:1 p:1 l:x w:1 0x5A /r"/"RAM" { .Instruction = ND_INS_VCVTPD2PS, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 980, + .Mnemonic = 1011, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -76923,6 +80850,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -76937,12 +80865,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2757 Instruction:"VCVTPD2PS Vdq,Wdq" Encoding:"vex m:1 p:1 l:0 w:i 0x5A /r"/"RM" + // Pos:2798 Instruction:"VCVTPD2PS Vdq,Wdq" Encoding:"vex m:1 p:1 l:0 w:i 0x5A /r"/"RM" { .Instruction = ND_INS_VCVTPD2PS, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX, - .Mnemonic = 980, + .Mnemonic = 1011, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -76951,6 +80879,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -76964,12 +80893,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2758 Instruction:"VCVTPD2PS Vdq,Wqq" Encoding:"vex m:1 p:1 l:1 w:i 0x5A /r"/"RM" + // Pos:2799 Instruction:"VCVTPD2PS Vdq,Wqq" Encoding:"vex m:1 p:1 l:1 w:i 0x5A /r"/"RM" { .Instruction = ND_INS_VCVTPD2PS, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX, - .Mnemonic = 980, + .Mnemonic = 1011, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -76978,6 +80907,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -76991,12 +80921,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2759 Instruction:"VCVTPD2QQ Vfv{K}{z},aKq,Wfv|B64{er}" Encoding:"evex m:1 p:1 l:x w:1 0x7B /r"/"RAM" + // Pos:2800 Instruction:"VCVTPD2QQ Vfv{K}{z},aKq,Wfv|B64{er}" Encoding:"evex m:1 p:1 l:x w:1 0x7B /r"/"RAM" { .Instruction = ND_INS_VCVTPD2QQ, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX512DQ, - .Mnemonic = 981, + .Mnemonic = 1012, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -77005,6 +80935,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -77019,12 +80950,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2760 Instruction:"VCVTPD2UDQ Vhv{K}{z},aKq,Wfv|B64{er}" Encoding:"evex m:1 p:0 l:x w:1 0x79 /r"/"RAM" + // Pos:2801 Instruction:"VCVTPD2UDQ Vhv{K}{z},aKq,Wfv|B64{er}" Encoding:"evex m:1 p:0 l:x w:1 0x79 /r"/"RAM" { .Instruction = ND_INS_VCVTPD2UDQ, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 982, + .Mnemonic = 1013, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -77033,6 +80964,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -77047,12 +80979,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2761 Instruction:"VCVTPD2UQQ Vfv{K}{z},aKq,Wfv|B64{er}" Encoding:"evex m:1 p:1 l:x w:1 0x79 /r"/"RAM" + // Pos:2802 Instruction:"VCVTPD2UQQ Vfv{K}{z},aKq,Wfv|B64{er}" Encoding:"evex m:1 p:1 l:x w:1 0x79 /r"/"RAM" { .Instruction = ND_INS_VCVTPD2UQQ, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX512DQ, - .Mnemonic = 983, + .Mnemonic = 1014, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -77061,6 +80993,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -77075,12 +81008,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2762 Instruction:"VCVTPH2DQ Vfv{K}{z},aKq,Whv|B16{er}" Encoding:"evex m:5 p:1 l:x w:0 0x5B /r"/"RAM" + // Pos:2803 Instruction:"VCVTPH2DQ Vfv{K}{z},aKq,Whv|B16{er}" Encoding:"evex m:5 p:1 l:x w:0 0x5B /r"/"RAM" { .Instruction = ND_INS_VCVTPH2DQ, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 984, + .Mnemonic = 1015, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -77089,6 +81022,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -77103,12 +81037,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2763 Instruction:"VCVTPH2IBS Vfv{K}{z},aKq,Wfv|B16{er}" Encoding:"evex m:5 p:0 l:x w:0 0x69 /r"/"RAM" + // Pos:2804 Instruction:"VCVTPH2IBS Vfv{K}{z},aKq,Wfv|B16{er}" Encoding:"evex m:5 p:0 l:x w:0 0x69 /r"/"RAM" { .Instruction = ND_INS_VCVTPH2IBS, .Category = ND_CAT_AVX10SCONVERT, .IsaSet = ND_SET_AVX102, - .Mnemonic = 985, + .Mnemonic = 1016, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -77117,6 +81051,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -77131,12 +81066,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2764 Instruction:"VCVTPH2IUBS Vfv{K}{z},aKq,Wfv|B16{er}" Encoding:"evex m:5 p:0 l:x w:0 0x6B /r"/"RAM" + // Pos:2805 Instruction:"VCVTPH2IUBS Vfv{K}{z},aKq,Wfv|B16{er}" Encoding:"evex m:5 p:0 l:x w:0 0x6B /r"/"RAM" { .Instruction = ND_INS_VCVTPH2IUBS, .Category = ND_CAT_AVX10SCONVERT, .IsaSet = ND_SET_AVX102, - .Mnemonic = 986, + .Mnemonic = 1017, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -77145,6 +81080,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -77159,12 +81095,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2765 Instruction:"VCVTPH2PD Vfv{K}{z},aKq,Wqv|B16{sae}" Encoding:"evex m:5 p:0 l:x w:0 0x5A /r"/"RAM" + // Pos:2806 Instruction:"VCVTPH2PD Vfv{K}{z},aKq,Wqv|B16{sae}" Encoding:"evex m:5 p:0 l:x w:0 0x5A /r"/"RAM" { .Instruction = ND_INS_VCVTPH2PD, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 987, + .Mnemonic = 1018, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -77173,6 +81109,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -77187,12 +81124,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2766 Instruction:"VCVTPH2PS Vfv{K}{z},aKq,Whv{sae}" Encoding:"evex m:2 p:1 l:x w:0 0x13 /r"/"RAM" + // Pos:2807 Instruction:"VCVTPH2PS Vfv{K}{z},aKq,Whv{sae}" Encoding:"evex m:2 p:1 l:x w:0 0x13 /r"/"RAM" { .Instruction = ND_INS_VCVTPH2PS, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 988, + .Mnemonic = 1019, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE, @@ -77201,6 +81138,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E11, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -77215,12 +81153,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2767 Instruction:"VCVTPH2PS Vdq,Wq" Encoding:"vex m:2 p:1 l:0 w:0 0x13 /r"/"RM" + // Pos:2808 Instruction:"VCVTPH2PS Vdq,Wq" Encoding:"vex m:2 p:1 l:0 w:0 0x13 /r"/"RM" { .Instruction = ND_INS_VCVTPH2PS, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_F16C, - .Mnemonic = 988, + .Mnemonic = 1019, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -77229,6 +81167,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_11, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -77242,12 +81181,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2768 Instruction:"VCVTPH2PS Vqq,Wdq" Encoding:"vex m:2 p:1 l:1 w:0 0x13 /r"/"RM" + // Pos:2809 Instruction:"VCVTPH2PS Vqq,Wdq" Encoding:"vex m:2 p:1 l:1 w:0 0x13 /r"/"RM" { .Instruction = ND_INS_VCVTPH2PS, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_F16C, - .Mnemonic = 988, + .Mnemonic = 1019, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -77256,6 +81195,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_11, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -77269,12 +81209,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2769 Instruction:"VCVTPH2PSX Vfv{K}{z},aKq,Whv|B16{sae}" Encoding:"evex m:6 p:1 l:x w:0 0x13 /r"/"RAM" + // Pos:2810 Instruction:"VCVTPH2PSX Vfv{K}{z},aKq,Whv|B16{sae}" Encoding:"evex m:6 p:1 l:x w:0 0x13 /r"/"RAM" { .Instruction = ND_INS_VCVTPH2PSX, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 989, + .Mnemonic = 1020, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -77283,6 +81223,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -77297,12 +81238,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2770 Instruction:"VCVTPH2QQ Vfv{K}{z},aKq,Wqv|B16{er}" Encoding:"evex m:5 p:1 l:x w:0 0x7B /r"/"RAM" + // Pos:2811 Instruction:"VCVTPH2QQ Vfv{K}{z},aKq,Wqv|B16{er}" Encoding:"evex m:5 p:1 l:x w:0 0x7B /r"/"RAM" { .Instruction = ND_INS_VCVTPH2QQ, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 990, + .Mnemonic = 1021, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -77311,6 +81252,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -77325,12 +81267,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2771 Instruction:"VCVTPH2UDQ Vfv{K}{z},aKq,Whv|B16{er}" Encoding:"evex m:5 p:0 l:x w:0 0x79 /r"/"RAM" + // Pos:2812 Instruction:"VCVTPH2UDQ Vfv{K}{z},aKq,Whv|B16{er}" Encoding:"evex m:5 p:0 l:x w:0 0x79 /r"/"RAM" { .Instruction = ND_INS_VCVTPH2UDQ, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 991, + .Mnemonic = 1022, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -77339,6 +81281,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -77353,12 +81296,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2772 Instruction:"VCVTPH2UQQ Vfv{K}{z},aKq,Wqv|B16{er}" Encoding:"evex m:5 p:1 l:x w:0 0x79 /r"/"RAM" + // Pos:2813 Instruction:"VCVTPH2UQQ Vfv{K}{z},aKq,Wqv|B16{er}" Encoding:"evex m:5 p:1 l:x w:0 0x79 /r"/"RAM" { .Instruction = ND_INS_VCVTPH2UQQ, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 992, + .Mnemonic = 1023, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -77367,6 +81310,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -77381,12 +81325,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2773 Instruction:"VCVTPH2UW Vfv{K}{z},aKq,Wfv|B16{er}" Encoding:"evex m:5 p:0 l:x w:0 0x7D /r"/"RAM" + // Pos:2814 Instruction:"VCVTPH2UW Vfv{K}{z},aKq,Wfv|B16{er}" Encoding:"evex m:5 p:0 l:x w:0 0x7D /r"/"RAM" { .Instruction = ND_INS_VCVTPH2UW, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 993, + .Mnemonic = 1024, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -77395,6 +81339,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -77409,12 +81354,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2774 Instruction:"VCVTPH2W Vfv{K}{z},aKq,Wfv|B16{er}" Encoding:"evex m:5 p:1 l:x w:0 0x7D /r"/"RAM" + // Pos:2815 Instruction:"VCVTPH2W Vfv{K}{z},aKq,Wfv|B16{er}" Encoding:"evex m:5 p:1 l:x w:0 0x7D /r"/"RAM" { .Instruction = ND_INS_VCVTPH2W, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 994, + .Mnemonic = 1025, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -77423,6 +81368,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -77437,12 +81383,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2775 Instruction:"VCVTPS2DQ Vfv{K}{z},aKq,Wfv|B32{er}" Encoding:"evex m:1 p:1 l:x w:0 0x5B /r"/"RAM" + // Pos:2816 Instruction:"VCVTPS2DQ Vfv{K}{z},aKq,Wfv|B32{er}" Encoding:"evex m:1 p:1 l:x w:0 0x5B /r"/"RAM" { .Instruction = ND_INS_VCVTPS2DQ, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 995, + .Mnemonic = 1026, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -77451,6 +81397,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -77465,12 +81412,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2776 Instruction:"VCVTPS2DQ Vps,Wps" Encoding:"vex m:1 p:1 l:x w:i 0x5B /r"/"RM" + // Pos:2817 Instruction:"VCVTPS2DQ Vps,Wps" Encoding:"vex m:1 p:1 l:x w:i 0x5B /r"/"RM" { .Instruction = ND_INS_VCVTPS2DQ, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX, - .Mnemonic = 995, + .Mnemonic = 1026, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -77479,6 +81426,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -77492,12 +81440,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2777 Instruction:"VCVTPS2IBS Vfv{K}{z},aKq,Wfv|B32{er}" Encoding:"evex m:5 p:1 l:x w:0 0x69 /r"/"RAM" + // Pos:2818 Instruction:"VCVTPS2IBS Vfv{K}{z},aKq,Wfv|B32{er}" Encoding:"evex m:5 p:1 l:x w:0 0x69 /r"/"RAM" { .Instruction = ND_INS_VCVTPS2IBS, .Category = ND_CAT_AVX10SCONVERT, .IsaSet = ND_SET_AVX102, - .Mnemonic = 996, + .Mnemonic = 1027, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -77506,6 +81454,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -77520,12 +81469,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2778 Instruction:"VCVTPS2IUBS Vfv{K}{z},aKq,Wfv|B32{er}" Encoding:"evex m:5 p:1 l:x w:0 0x6B /r"/"RAM" + // Pos:2819 Instruction:"VCVTPS2IUBS Vfv{K}{z},aKq,Wfv|B32{er}" Encoding:"evex m:5 p:1 l:x w:0 0x6B /r"/"RAM" { .Instruction = ND_INS_VCVTPS2IUBS, .Category = ND_CAT_AVX10SCONVERT, .IsaSet = ND_SET_AVX102, - .Mnemonic = 997, + .Mnemonic = 1028, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -77534,6 +81483,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -77548,12 +81498,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2779 Instruction:"VCVTPS2PD Vfv{K}{z},aKq,Whv|B32{sae}" Encoding:"evex m:1 p:0 l:x w:0 0x5A /r"/"RAM" + // Pos:2820 Instruction:"VCVTPS2PD Vfv{K}{z},aKq,Whv|B32{sae}" Encoding:"evex m:1 p:0 l:x w:0 0x5A /r"/"RAM" { .Instruction = ND_INS_VCVTPS2PD, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 998, + .Mnemonic = 1029, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -77562,6 +81512,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -77576,12 +81527,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2780 Instruction:"VCVTPS2PD Vpd,Wq" Encoding:"vex m:1 p:0 l:0 w:i 0x5A /r"/"RM" + // Pos:2821 Instruction:"VCVTPS2PD Vpd,Wq" Encoding:"vex m:1 p:0 l:0 w:i 0x5A /r"/"RM" { .Instruction = ND_INS_VCVTPS2PD, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX, - .Mnemonic = 998, + .Mnemonic = 1029, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -77590,6 +81541,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -77603,12 +81555,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2781 Instruction:"VCVTPS2PD Vqq,Wdq" Encoding:"vex m:1 p:0 l:1 w:i 0x5A /r"/"RM" + // Pos:2822 Instruction:"VCVTPS2PD Vqq,Wdq" Encoding:"vex m:1 p:0 l:1 w:i 0x5A /r"/"RM" { .Instruction = ND_INS_VCVTPS2PD, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX, - .Mnemonic = 998, + .Mnemonic = 1029, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -77617,6 +81569,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -77630,12 +81583,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2782 Instruction:"VCVTPS2PH Whv{K}{z},aKq,Vfv{sae},Ib" Encoding:"evex m:3 p:1 l:x w:0 0x1D /r ib"/"MARI" + // Pos:2823 Instruction:"VCVTPS2PH Whv{K}{z},aKq,Vfv{sae},Ib" Encoding:"evex m:3 p:1 l:x w:0 0x1D /r ib"/"MARI" { .Instruction = ND_INS_VCVTPS2PH, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 999, + .Mnemonic = 1030, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE, @@ -77644,6 +81597,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E11, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -77659,12 +81613,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2783 Instruction:"VCVTPS2PH Wq,Vdq,Ib" Encoding:"vex m:3 p:1 l:0 w:0 0x1D /r ib"/"MRI" + // Pos:2824 Instruction:"VCVTPS2PH Wq,Vdq,Ib" Encoding:"vex m:3 p:1 l:0 w:0 0x1D /r ib"/"MRI" { .Instruction = ND_INS_VCVTPS2PH, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_F16C, - .Mnemonic = 999, + .Mnemonic = 1030, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -77673,6 +81627,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_11, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -77687,12 +81642,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2784 Instruction:"VCVTPS2PH Wdq,Vqq,Ib" Encoding:"vex m:3 p:1 l:1 w:0 0x1D /r ib"/"MRI" + // Pos:2825 Instruction:"VCVTPS2PH Wdq,Vqq,Ib" Encoding:"vex m:3 p:1 l:1 w:0 0x1D /r ib"/"MRI" { .Instruction = ND_INS_VCVTPS2PH, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_F16C, - .Mnemonic = 999, + .Mnemonic = 1030, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -77701,6 +81656,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_11, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -77715,12 +81671,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2785 Instruction:"VCVTPS2PHX Vhv{K}{z},aKq,Wfv|B32{er}" Encoding:"evex m:5 p:1 l:x w:0 0x1D /r"/"RAM" + // Pos:2826 Instruction:"VCVTPS2PHX Vhv{K}{z},aKq,Wfv|B32{er}" Encoding:"evex m:5 p:1 l:x w:0 0x1D /r"/"RAM" { .Instruction = ND_INS_VCVTPS2PHX, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1000, + .Mnemonic = 1031, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -77729,6 +81685,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -77743,12 +81700,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2786 Instruction:"VCVTPS2QQ Vfv{K}{z},aKq,Whv|B32{er}" Encoding:"evex m:1 p:1 l:x w:0 0x7B /r"/"RAM" + // Pos:2827 Instruction:"VCVTPS2QQ Vfv{K}{z},aKq,Whv|B32{er}" Encoding:"evex m:1 p:1 l:x w:0 0x7B /r"/"RAM" { .Instruction = ND_INS_VCVTPS2QQ, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX512DQ, - .Mnemonic = 1001, + .Mnemonic = 1032, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -77757,6 +81714,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -77771,12 +81729,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2787 Instruction:"VCVTPS2UDQ Vfv{K}{z},aKq,Wfv|B32{er}" Encoding:"evex m:1 p:0 l:x w:0 0x79 /r"/"RAM" + // Pos:2828 Instruction:"VCVTPS2UDQ Vfv{K}{z},aKq,Wfv|B32{er}" Encoding:"evex m:1 p:0 l:x w:0 0x79 /r"/"RAM" { .Instruction = ND_INS_VCVTPS2UDQ, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1002, + .Mnemonic = 1033, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -77785,6 +81743,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -77799,12 +81758,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2788 Instruction:"VCVTPS2UQQ Vfv{K}{z},aKq,Whv|B32{er}" Encoding:"evex m:1 p:1 l:x w:0 0x79 /r"/"RAM" + // Pos:2829 Instruction:"VCVTPS2UQQ Vfv{K}{z},aKq,Whv|B32{er}" Encoding:"evex m:1 p:1 l:x w:0 0x79 /r"/"RAM" { .Instruction = ND_INS_VCVTPS2UQQ, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX512DQ, - .Mnemonic = 1003, + .Mnemonic = 1034, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -77813,6 +81772,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -77827,12 +81787,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2789 Instruction:"VCVTQQ2PD Vfv{K}{z},aKq,Wfv|B64{er}" Encoding:"evex m:1 p:2 l:x w:1 0xE6 /r"/"RAM" + // Pos:2830 Instruction:"VCVTQQ2PD Vfv{K}{z},aKq,Wfv|B64{er}" Encoding:"evex m:1 p:2 l:x w:1 0xE6 /r"/"RAM" { .Instruction = ND_INS_VCVTQQ2PD, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX512DQ, - .Mnemonic = 1004, + .Mnemonic = 1035, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -77841,6 +81801,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -77855,12 +81816,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2790 Instruction:"VCVTQQ2PH Vdq{K}{z},aKq,Wfv|B64{er}" Encoding:"evex m:5 p:0 l:x w:1 0x5B /r"/"RAM" + // Pos:2831 Instruction:"VCVTQQ2PH Vdq{K}{z},aKq,Wfv|B64{er}" Encoding:"evex m:5 p:0 l:x w:1 0x5B /r"/"RAM" { .Instruction = ND_INS_VCVTQQ2PH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1005, + .Mnemonic = 1036, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -77869,6 +81830,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_PE|ND_SIMD_EXC_OE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -77883,12 +81845,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2791 Instruction:"VCVTQQ2PS Vhv{K}{z},aKq,Wfv|B64{er}" Encoding:"evex m:1 p:0 l:x w:1 0x5B /r"/"RAM" + // Pos:2832 Instruction:"VCVTQQ2PS Vhv{K}{z},aKq,Wfv|B64{er}" Encoding:"evex m:1 p:0 l:x w:1 0x5B /r"/"RAM" { .Instruction = ND_INS_VCVTQQ2PS, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX512DQ, - .Mnemonic = 1006, + .Mnemonic = 1037, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -77897,6 +81859,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -77911,12 +81874,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2792 Instruction:"VCVTSD2SH Vdq{K}{z},aKq,Hdq,Wsd{er}" Encoding:"evex m:5 p:3 l:i w:1 0x5A /r"/"RAVM" + // Pos:2833 Instruction:"VCVTSD2SH Vdq{K}{z},aKq,Hdq,Wsd{er}" Encoding:"evex m:5 p:3 l:i w:1 0x5A /r"/"RAVM" { .Instruction = ND_INS_VCVTSD2SH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1007, + .Mnemonic = 1038, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -77925,6 +81888,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -77940,12 +81904,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2793 Instruction:"VCVTSD2SI Gy,Wsd{er}" Encoding:"evex m:1 p:3 l:i w:x 0x2D /r"/"RM" + // Pos:2834 Instruction:"VCVTSD2SI Gy,Wsd{er}" Encoding:"evex m:1 p:3 l:i w:x 0x2D /r"/"RM" { .Instruction = ND_INS_VCVTSD2SI, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1008, + .Mnemonic = 1039, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ER, @@ -77954,6 +81918,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -77967,12 +81932,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2794 Instruction:"VCVTSD2SI Gy,Wsd" Encoding:"vex m:1 p:3 l:i w:x 0x2D /r"/"RM" + // Pos:2835 Instruction:"VCVTSD2SI Gy,Wsd" Encoding:"vex m:1 p:3 l:i w:x 0x2D /r"/"RM" { .Instruction = ND_INS_VCVTSD2SI, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX, - .Mnemonic = 1008, + .Mnemonic = 1039, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -77981,6 +81946,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -77994,12 +81960,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2795 Instruction:"VCVTSD2SS Vdq{K}{z},aKq,Hdq,Wsd{er}" Encoding:"evex m:1 p:3 l:i w:1 0x5A /r"/"RAVM" + // Pos:2836 Instruction:"VCVTSD2SS Vdq{K}{z},aKq,Hdq,Wsd{er}" Encoding:"evex m:1 p:3 l:i w:1 0x5A /r"/"RAVM" { .Instruction = ND_INS_VCVTSD2SS, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1009, + .Mnemonic = 1040, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -78008,6 +81974,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -78023,12 +81990,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2796 Instruction:"VCVTSD2SS Vss,Hx,Wsd" Encoding:"vex m:1 p:3 l:i w:i 0x5A /r"/"RVM" + // Pos:2837 Instruction:"VCVTSD2SS Vss,Hx,Wsd" Encoding:"vex m:1 p:3 l:i w:i 0x5A /r"/"RVM" { .Instruction = ND_INS_VCVTSD2SS, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX, - .Mnemonic = 1009, + .Mnemonic = 1040, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -78037,6 +82004,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -78051,12 +82019,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2797 Instruction:"VCVTSD2USI Gy,Wsd{er}" Encoding:"evex m:1 p:3 l:i w:x 0x79 /r"/"RM" + // Pos:2838 Instruction:"VCVTSD2USI Gy,Wsd{er}" Encoding:"evex m:1 p:3 l:i w:x 0x79 /r"/"RM" { .Instruction = ND_INS_VCVTSD2USI, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1010, + .Mnemonic = 1041, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ER, @@ -78065,6 +82033,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -78078,12 +82047,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2798 Instruction:"VCVTSH2SD Vdq{K}{z},aKq,Hdq,Wsh{sae}" Encoding:"evex m:5 p:2 l:i w:0 0x5A /r"/"RAVM" + // Pos:2839 Instruction:"VCVTSH2SD Vdq{K}{z},aKq,Hdq,Wsh{sae}" Encoding:"evex m:5 p:2 l:i w:0 0x5A /r"/"RAVM" { .Instruction = ND_INS_VCVTSH2SD, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1011, + .Mnemonic = 1042, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE, @@ -78092,6 +82061,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -78107,12 +82077,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2799 Instruction:"VCVTSH2SI Gy,Wsh{er}" Encoding:"evex m:5 p:2 l:i w:x 0x2D /r"/"RM" + // Pos:2840 Instruction:"VCVTSH2SI Gy,Wsh{er}" Encoding:"evex m:5 p:2 l:i w:x 0x2D /r"/"RM" { .Instruction = ND_INS_VCVTSH2SI, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1012, + .Mnemonic = 1043, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ER, @@ -78121,6 +82091,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -78134,12 +82105,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2800 Instruction:"VCVTSH2SS Vdq{K}{z},aKq,Hdq,Wsh{sae}" Encoding:"evex m:6 p:0 l:i w:0 0x13 /r"/"RAVM" + // Pos:2841 Instruction:"VCVTSH2SS Vdq{K}{z},aKq,Hdq,Wsh{sae}" Encoding:"evex m:6 p:0 l:i w:0 0x13 /r"/"RAVM" { .Instruction = ND_INS_VCVTSH2SS, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1013, + .Mnemonic = 1044, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE, @@ -78148,6 +82119,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -78163,12 +82135,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2801 Instruction:"VCVTSH2USI Gy,Wsh{er}" Encoding:"evex m:5 p:2 l:i w:x 0x79 /r"/"RM" + // Pos:2842 Instruction:"VCVTSH2USI Gy,Wsh{er}" Encoding:"evex m:5 p:2 l:i w:x 0x79 /r"/"RM" { .Instruction = ND_INS_VCVTSH2USI, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1014, + .Mnemonic = 1045, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ER, @@ -78177,6 +82149,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -78190,12 +82163,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2802 Instruction:"VCVTSI2SD Vdq,Hdq,Ey" Encoding:"evex m:1 p:3 l:i w:0 0x2A /r"/"RVM" + // Pos:2843 Instruction:"VCVTSI2SD Vdq,Hdq,Ey" Encoding:"evex m:1 p:3 l:i w:0 0x2A /r"/"RVM" { .Instruction = ND_INS_VCVTSI2SD, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1015, + .Mnemonic = 1046, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -78204,6 +82177,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E10NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -78218,12 +82192,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2803 Instruction:"VCVTSI2SD Vdq,Hdq{er},Ey" Encoding:"evex m:1 p:3 l:i w:1 0x2A /r"/"RVM" + // Pos:2844 Instruction:"VCVTSI2SD Vdq,Hdq{er},Ey" Encoding:"evex m:1 p:3 l:i w:1 0x2A /r"/"RVM" { .Instruction = ND_INS_VCVTSI2SD, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1015, + .Mnemonic = 1046, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ER, @@ -78232,6 +82206,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -78246,12 +82221,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2804 Instruction:"VCVTSI2SD Vsd,Hsd,Ey" Encoding:"vex m:1 p:3 l:i w:x 0x2A /r"/"RVM" + // Pos:2845 Instruction:"VCVTSI2SD Vsd,Hsd,Ey" Encoding:"vex m:1 p:3 l:i w:x 0x2A /r"/"RVM" { .Instruction = ND_INS_VCVTSI2SD, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX, - .Mnemonic = 1015, + .Mnemonic = 1046, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -78260,6 +82235,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -78274,12 +82250,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2805 Instruction:"VCVTSI2SH Vdq,Hdq,Ey" Encoding:"evex m:5 p:2 l:i w:x 0x2A /r"/"RVM" + // Pos:2846 Instruction:"VCVTSI2SH Vdq,Hdq,Ey" Encoding:"evex m:5 p:2 l:i w:x 0x2A /r"/"RVM" { .Instruction = ND_INS_VCVTSI2SH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1016, + .Mnemonic = 1047, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -78288,6 +82264,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_OE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -78302,12 +82279,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2806 Instruction:"VCVTSI2SS Vdq,Hdq{er},Ey" Encoding:"evex m:1 p:2 l:i w:x 0x2A /r"/"RVM" + // Pos:2847 Instruction:"VCVTSI2SS Vdq,Hdq{er},Ey" Encoding:"evex m:1 p:2 l:i w:x 0x2A /r"/"RVM" { .Instruction = ND_INS_VCVTSI2SS, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1017, + .Mnemonic = 1048, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ER, @@ -78316,6 +82293,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -78330,12 +82308,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2807 Instruction:"VCVTSI2SS Vss,Hss,Ey" Encoding:"vex m:1 p:2 l:i w:x 0x2A /r"/"RVM" + // Pos:2848 Instruction:"VCVTSI2SS Vss,Hss,Ey" Encoding:"vex m:1 p:2 l:i w:x 0x2A /r"/"RVM" { .Instruction = ND_INS_VCVTSI2SS, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX, - .Mnemonic = 1017, + .Mnemonic = 1048, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -78344,6 +82322,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -78358,12 +82337,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2808 Instruction:"VCVTSS2SD Vdq{K}{z},aKq,Hdq,Wss{sae}" Encoding:"evex m:1 p:2 l:i w:0 0x5A /r"/"RAVM" + // Pos:2849 Instruction:"VCVTSS2SD Vdq{K}{z},aKq,Hdq,Wss{sae}" Encoding:"evex m:1 p:2 l:i w:0 0x5A /r"/"RAVM" { .Instruction = ND_INS_VCVTSS2SD, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1018, + .Mnemonic = 1049, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE, @@ -78372,6 +82351,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -78387,12 +82367,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2809 Instruction:"VCVTSS2SD Vsd,Hx,Wss" Encoding:"vex m:1 p:2 l:i w:i 0x5A /r"/"RVM" + // Pos:2850 Instruction:"VCVTSS2SD Vsd,Hx,Wss" Encoding:"vex m:1 p:2 l:i w:i 0x5A /r"/"RVM" { .Instruction = ND_INS_VCVTSS2SD, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX, - .Mnemonic = 1018, + .Mnemonic = 1049, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -78401,6 +82381,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -78415,12 +82396,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2810 Instruction:"VCVTSS2SH Vdq{K}{z},aKq,Hdq,Wss{er}" Encoding:"evex m:5 p:0 l:i w:0 0x1D /r"/"RAVM" + // Pos:2851 Instruction:"VCVTSS2SH Vdq{K}{z},aKq,Hdq,Wss{er}" Encoding:"evex m:5 p:0 l:i w:0 0x1D /r"/"RAVM" { .Instruction = ND_INS_VCVTSS2SH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1019, + .Mnemonic = 1050, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -78429,6 +82410,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -78444,12 +82426,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2811 Instruction:"VCVTSS2SI Gy,Wss{er}" Encoding:"evex m:1 p:2 l:i w:x 0x2D /r"/"RM" + // Pos:2852 Instruction:"VCVTSS2SI Gy,Wss{er}" Encoding:"evex m:1 p:2 l:i w:x 0x2D /r"/"RM" { .Instruction = ND_INS_VCVTSS2SI, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1020, + .Mnemonic = 1051, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ER, @@ -78458,6 +82440,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -78471,12 +82454,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2812 Instruction:"VCVTSS2SI Gy,Wss" Encoding:"vex m:1 p:2 l:i w:x 0x2D /r"/"RM" + // Pos:2853 Instruction:"VCVTSS2SI Gy,Wss" Encoding:"vex m:1 p:2 l:i w:x 0x2D /r"/"RM" { .Instruction = ND_INS_VCVTSS2SI, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX, - .Mnemonic = 1020, + .Mnemonic = 1051, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -78485,6 +82468,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -78498,12 +82482,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2813 Instruction:"VCVTSS2USI Gy,Wss{er}" Encoding:"evex m:1 p:2 l:i w:x 0x79 /r"/"RM" + // Pos:2854 Instruction:"VCVTSS2USI Gy,Wss{er}" Encoding:"evex m:1 p:2 l:i w:x 0x79 /r"/"RM" { .Instruction = ND_INS_VCVTSS2USI, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1021, + .Mnemonic = 1052, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ER, @@ -78512,6 +82496,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -78525,12 +82510,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2814 Instruction:"VCVTTNEBF162IBS Vfv{K}{z},aKq,Wfv|B16" Encoding:"evex m:5 p:3 l:x w:0 0x68 /r"/"RAM" + // Pos:2855 Instruction:"VCVTTNEBF162IBS Vfv{K}{z},aKq,Wfv|B16" Encoding:"evex m:5 p:3 l:x w:0 0x68 /r"/"RAM" { .Instruction = ND_INS_VCVTTNEBF162IBS, .Category = ND_CAT_AVX10SCONVERT, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1022, + .Mnemonic = 1053, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -78539,6 +82524,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -78553,12 +82539,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2815 Instruction:"VCVTTNEBF162IUBS Vfv{K}{z},aKq,Wfv|B16" Encoding:"evex m:5 p:3 l:x w:0 0x6A /r"/"RAM" + // Pos:2856 Instruction:"VCVTTNEBF162IUBS Vfv{K}{z},aKq,Wfv|B16" Encoding:"evex m:5 p:3 l:x w:0 0x6A /r"/"RAM" { .Instruction = ND_INS_VCVTTNEBF162IUBS, .Category = ND_CAT_AVX10SCONVERT, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1023, + .Mnemonic = 1054, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -78567,6 +82553,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -78581,12 +82568,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2816 Instruction:"VCVTTPD2DQ Vhv{K}{z},aKq,Wfv|B64{sae}" Encoding:"evex m:1 p:1 l:x w:1 0xE6 /r"/"RAM" + // Pos:2857 Instruction:"VCVTTPD2DQ Vhv{K}{z},aKq,Wfv|B64{sae}" Encoding:"evex m:1 p:1 l:x w:1 0xE6 /r"/"RAM" { .Instruction = ND_INS_VCVTTPD2DQ, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1024, + .Mnemonic = 1055, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -78595,6 +82582,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -78609,12 +82597,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2817 Instruction:"VCVTTPD2DQ Vdq,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xE6 /r"/"RM" + // Pos:2858 Instruction:"VCVTTPD2DQ Vdq,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xE6 /r"/"RM" { .Instruction = ND_INS_VCVTTPD2DQ, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX, - .Mnemonic = 1024, + .Mnemonic = 1055, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -78623,6 +82611,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -78636,12 +82625,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2818 Instruction:"VCVTTPD2DQS Vhv{K}{z},aKq,Wfv|B64{sae}" Encoding:"evex m:5 p:0 l:x w:1 0x6D /r"/"RAM" + // Pos:2859 Instruction:"VCVTTPD2DQS Vhv{K}{z},aKq,Wfv|B64{sae}" Encoding:"evex m:5 p:0 l:x w:1 0x6D /r"/"RAM" { .Instruction = ND_INS_VCVTTPD2DQS, .Category = ND_CAT_AVX10SCONVERT, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1025, + .Mnemonic = 1056, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -78650,6 +82639,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -78664,12 +82654,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2819 Instruction:"VCVTTPD2QQ Vfv{K}{z},aKq,Wfv|B64{sae}" Encoding:"evex m:1 p:1 l:x w:1 0x7A /r"/"RAM" + // Pos:2860 Instruction:"VCVTTPD2QQ Vfv{K}{z},aKq,Wfv|B64{sae}" Encoding:"evex m:1 p:1 l:x w:1 0x7A /r"/"RAM" { .Instruction = ND_INS_VCVTTPD2QQ, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX512DQ, - .Mnemonic = 1026, + .Mnemonic = 1057, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -78678,6 +82668,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -78692,12 +82683,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2820 Instruction:"VCVTTPD2QQS Vfv{K}{z},aKq,Wfv|B64{sae}" Encoding:"evex m:5 p:1 l:x w:1 0x6D /r"/"RAM" + // Pos:2861 Instruction:"VCVTTPD2QQS Vfv{K}{z},aKq,Wfv|B64{sae}" Encoding:"evex m:5 p:1 l:x w:1 0x6D /r"/"RAM" { .Instruction = ND_INS_VCVTTPD2QQS, .Category = ND_CAT_AVX10SCONVERT, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1027, + .Mnemonic = 1058, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -78706,6 +82697,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -78720,12 +82712,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2821 Instruction:"VCVTTPD2UDQ Vhv{K}{z},aKq,Wfv|B64{sae}" Encoding:"evex m:1 p:0 l:x w:1 0x78 /r"/"RAM" + // Pos:2862 Instruction:"VCVTTPD2UDQ Vhv{K}{z},aKq,Wfv|B64{sae}" Encoding:"evex m:1 p:0 l:x w:1 0x78 /r"/"RAM" { .Instruction = ND_INS_VCVTTPD2UDQ, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1028, + .Mnemonic = 1059, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -78734,6 +82726,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -78748,12 +82741,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2822 Instruction:"VCVTTPD2UDQS Vhv{K}{z},aKq,Wfv|B64{sae}" Encoding:"evex m:5 p:0 l:x w:1 0x6C /r"/"RAM" + // Pos:2863 Instruction:"VCVTTPD2UDQS Vhv{K}{z},aKq,Wfv|B64{sae}" Encoding:"evex m:5 p:0 l:x w:1 0x6C /r"/"RAM" { .Instruction = ND_INS_VCVTTPD2UDQS, .Category = ND_CAT_AVX10SCONVERT, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1029, + .Mnemonic = 1060, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -78762,6 +82755,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -78776,12 +82770,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2823 Instruction:"VCVTTPD2UQQ Vfv{K}{z},aKq,Wfv|B64{sae}" Encoding:"evex m:1 p:1 l:x w:1 0x78 /r"/"RAM" + // Pos:2864 Instruction:"VCVTTPD2UQQ Vfv{K}{z},aKq,Wfv|B64{sae}" Encoding:"evex m:1 p:1 l:x w:1 0x78 /r"/"RAM" { .Instruction = ND_INS_VCVTTPD2UQQ, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX512DQ, - .Mnemonic = 1030, + .Mnemonic = 1061, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -78790,6 +82784,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -78804,12 +82799,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2824 Instruction:"VCVTTPD2UQQS Vfv{K}{z},aKq,Wfv|B64{sae}" Encoding:"evex m:5 p:1 l:x w:1 0x6C /r"/"RAM" + // Pos:2865 Instruction:"VCVTTPD2UQQS Vfv{K}{z},aKq,Wfv|B64{sae}" Encoding:"evex m:5 p:1 l:x w:1 0x6C /r"/"RAM" { .Instruction = ND_INS_VCVTTPD2UQQS, .Category = ND_CAT_AVX10SCONVERT, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1031, + .Mnemonic = 1062, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -78818,6 +82813,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -78832,12 +82828,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2825 Instruction:"VCVTTPH2DQ Vfv{K}{z},aKq,Whv|B16{sae}" Encoding:"evex m:5 p:2 l:x w:0 0x5B /r"/"RAM" + // Pos:2866 Instruction:"VCVTTPH2DQ Vfv{K}{z},aKq,Whv|B16{sae}" Encoding:"evex m:5 p:2 l:x w:0 0x5B /r"/"RAM" { .Instruction = ND_INS_VCVTTPH2DQ, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1032, + .Mnemonic = 1063, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -78846,6 +82842,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -78860,12 +82857,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2826 Instruction:"VCVTTPH2IBS Vfv{K}{z},aKq,Wfv|B16{sae}" Encoding:"evex m:5 p:0 l:x w:0 0x68 /r"/"RAM" + // Pos:2867 Instruction:"VCVTTPH2IBS Vfv{K}{z},aKq,Wfv|B16{sae}" Encoding:"evex m:5 p:0 l:x w:0 0x68 /r"/"RAM" { .Instruction = ND_INS_VCVTTPH2IBS, .Category = ND_CAT_AVX10SCONVERT, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1033, + .Mnemonic = 1064, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -78874,6 +82871,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -78888,12 +82886,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2827 Instruction:"VCVTTPH2IUBS Vfv{K}{z},aKq,Wfv|B16{sae}" Encoding:"evex m:5 p:0 l:x w:0 0x6A /r"/"RAM" + // Pos:2868 Instruction:"VCVTTPH2IUBS Vfv{K}{z},aKq,Wfv|B16{sae}" Encoding:"evex m:5 p:0 l:x w:0 0x6A /r"/"RAM" { .Instruction = ND_INS_VCVTTPH2IUBS, .Category = ND_CAT_AVX10SCONVERT, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1034, + .Mnemonic = 1065, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -78902,6 +82900,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -78916,12 +82915,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2828 Instruction:"VCVTTPH2QQ Vfv{K}{z},aKq,Wqv|B16{sae}" Encoding:"evex m:5 p:1 l:x w:0 0x7A /r"/"RAM" + // Pos:2869 Instruction:"VCVTTPH2QQ Vfv{K}{z},aKq,Wqv|B16{sae}" Encoding:"evex m:5 p:1 l:x w:0 0x7A /r"/"RAM" { .Instruction = ND_INS_VCVTTPH2QQ, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1035, + .Mnemonic = 1066, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -78930,6 +82929,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -78944,12 +82944,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2829 Instruction:"VCVTTPH2UDQ Vfv{K}{z},aKq,Whv|B16{sae}" Encoding:"evex m:5 p:0 l:x w:0 0x78 /r"/"RAM" + // Pos:2870 Instruction:"VCVTTPH2UDQ Vfv{K}{z},aKq,Whv|B16{sae}" Encoding:"evex m:5 p:0 l:x w:0 0x78 /r"/"RAM" { .Instruction = ND_INS_VCVTTPH2UDQ, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1036, + .Mnemonic = 1067, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -78958,6 +82958,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -78972,12 +82973,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2830 Instruction:"VCVTTPH2UQQ Vfv{K}{z},aKq,Wqv|B16{sae}" Encoding:"evex m:5 p:1 l:x w:0 0x78 /r"/"RAM" + // Pos:2871 Instruction:"VCVTTPH2UQQ Vfv{K}{z},aKq,Wqv|B16{sae}" Encoding:"evex m:5 p:1 l:x w:0 0x78 /r"/"RAM" { .Instruction = ND_INS_VCVTTPH2UQQ, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1037, + .Mnemonic = 1068, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -78986,6 +82987,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -79000,12 +83002,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2831 Instruction:"VCVTTPH2UW Vfv{K}{z},aKq,Wfv|B16{sae}" Encoding:"evex m:5 p:0 l:x w:0 0x7C /r"/"RAM" + // Pos:2872 Instruction:"VCVTTPH2UW Vfv{K}{z},aKq,Wfv|B16{sae}" Encoding:"evex m:5 p:0 l:x w:0 0x7C /r"/"RAM" { .Instruction = ND_INS_VCVTTPH2UW, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1038, + .Mnemonic = 1069, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -79014,6 +83016,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -79028,12 +83031,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2832 Instruction:"VCVTTPH2W Vfv{K}{z},aKq,Wfv|B16{sae}" Encoding:"evex m:5 p:1 l:x w:0 0x7C /r"/"RAM" + // Pos:2873 Instruction:"VCVTTPH2W Vfv{K}{z},aKq,Wfv|B16{sae}" Encoding:"evex m:5 p:1 l:x w:0 0x7C /r"/"RAM" { .Instruction = ND_INS_VCVTTPH2W, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1039, + .Mnemonic = 1070, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -79042,6 +83045,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -79056,12 +83060,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2833 Instruction:"VCVTTPS2DQ Vfv{K}{z},aKq,Wfv|B32{sae}" Encoding:"evex m:1 p:2 l:x w:0 0x5B /r"/"RAM" + // Pos:2874 Instruction:"VCVTTPS2DQ Vfv{K}{z},aKq,Wfv|B32{sae}" Encoding:"evex m:1 p:2 l:x w:0 0x5B /r"/"RAM" { .Instruction = ND_INS_VCVTTPS2DQ, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1040, + .Mnemonic = 1071, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -79070,6 +83074,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -79084,12 +83089,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2834 Instruction:"VCVTTPS2DQ Vps,Wps" Encoding:"vex m:1 p:2 l:x w:i 0x5B /r"/"RM" + // Pos:2875 Instruction:"VCVTTPS2DQ Vps,Wps" Encoding:"vex m:1 p:2 l:x w:i 0x5B /r"/"RM" { .Instruction = ND_INS_VCVTTPS2DQ, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX, - .Mnemonic = 1040, + .Mnemonic = 1071, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -79098,6 +83103,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -79111,12 +83117,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2835 Instruction:"VCVTTPS2DQS Vfv{K}{z},aKq,Wfv|B32{sae}" Encoding:"evex m:5 p:0 l:x w:0 0x6D /r"/"RAM" + // Pos:2876 Instruction:"VCVTTPS2DQS Vfv{K}{z},aKq,Wfv|B32{sae}" Encoding:"evex m:5 p:0 l:x w:0 0x6D /r"/"RAM" { .Instruction = ND_INS_VCVTTPS2DQS, .Category = ND_CAT_AVX10SCONVERT, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1041, + .Mnemonic = 1072, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -79125,6 +83131,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -79139,12 +83146,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2836 Instruction:"VCVTTPS2IBS Vfv{K}{z},aKq,Wfv|B32{sae}" Encoding:"evex m:5 p:1 l:x w:0 0x68 /r"/"RAM" + // Pos:2877 Instruction:"VCVTTPS2IBS Vfv{K}{z},aKq,Wfv|B32{sae}" Encoding:"evex m:5 p:1 l:x w:0 0x68 /r"/"RAM" { .Instruction = ND_INS_VCVTTPS2IBS, .Category = ND_CAT_AVX10SCONVERT, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1042, + .Mnemonic = 1073, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -79153,6 +83160,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -79167,12 +83175,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2837 Instruction:"VCVTTPS2IUBS Vfv{K}{z},aKq,Wfv|B32{sae}" Encoding:"evex m:5 p:1 l:x w:0 0x6A /r"/"RAM" + // Pos:2878 Instruction:"VCVTTPS2IUBS Vfv{K}{z},aKq,Wfv|B32{sae}" Encoding:"evex m:5 p:1 l:x w:0 0x6A /r"/"RAM" { .Instruction = ND_INS_VCVTTPS2IUBS, .Category = ND_CAT_AVX10SCONVERT, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1043, + .Mnemonic = 1074, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -79181,6 +83189,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -79195,12 +83204,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2838 Instruction:"VCVTTPS2QQ Vfv{K}{z},aKq,Whv|B32{sae}" Encoding:"evex m:1 p:1 l:x w:0 0x7A /r"/"RAM" + // Pos:2879 Instruction:"VCVTTPS2QQ Vfv{K}{z},aKq,Whv|B32{sae}" Encoding:"evex m:1 p:1 l:x w:0 0x7A /r"/"RAM" { .Instruction = ND_INS_VCVTTPS2QQ, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX512DQ, - .Mnemonic = 1044, + .Mnemonic = 1075, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -79209,6 +83218,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -79223,12 +83233,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2839 Instruction:"VCVTTPS2QQS Vfv{K}{z},aKq,Whv|B32{sae}" Encoding:"evex m:5 p:1 l:x w:0 0x6D /r"/"RAM" + // Pos:2880 Instruction:"VCVTTPS2QQS Vfv{K}{z},aKq,Whv|B32{sae}" Encoding:"evex m:5 p:1 l:x w:0 0x6D /r"/"RAM" { .Instruction = ND_INS_VCVTTPS2QQS, .Category = ND_CAT_AVX10SCONVERT, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1045, + .Mnemonic = 1076, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -79237,6 +83247,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -79251,12 +83262,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2840 Instruction:"VCVTTPS2UDQ Vfv{K}{z},aKq,Wfv|B32{sae}" Encoding:"evex m:1 p:0 l:x w:0 0x78 /r"/"RAM" + // Pos:2881 Instruction:"VCVTTPS2UDQ Vfv{K}{z},aKq,Wfv|B32{sae}" Encoding:"evex m:1 p:0 l:x w:0 0x78 /r"/"RAM" { .Instruction = ND_INS_VCVTTPS2UDQ, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1046, + .Mnemonic = 1077, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -79265,6 +83276,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -79279,12 +83291,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2841 Instruction:"VCVTTPS2UDQS Vfv{K}{z},aKq,Wfv|B32{sae}" Encoding:"evex m:5 p:0 l:x w:0 0x6C /r"/"RAM" + // Pos:2882 Instruction:"VCVTTPS2UDQS Vfv{K}{z},aKq,Wfv|B32{sae}" Encoding:"evex m:5 p:0 l:x w:0 0x6C /r"/"RAM" { .Instruction = ND_INS_VCVTTPS2UDQS, .Category = ND_CAT_AVX10SCONVERT, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1047, + .Mnemonic = 1078, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -79293,6 +83305,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -79307,12 +83320,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2842 Instruction:"VCVTTPS2UQQ Vfv{K}{z},aKq,Whv|B32{sae}" Encoding:"evex m:1 p:1 l:x w:0 0x78 /r"/"RAM" + // Pos:2883 Instruction:"VCVTTPS2UQQ Vfv{K}{z},aKq,Whv|B32{sae}" Encoding:"evex m:1 p:1 l:x w:0 0x78 /r"/"RAM" { .Instruction = ND_INS_VCVTTPS2UQQ, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX512DQ, - .Mnemonic = 1048, + .Mnemonic = 1079, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -79321,6 +83334,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -79335,12 +83349,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2843 Instruction:"VCVTTPS2UQQS Vfv{K}{z},aKq,Whv|B32{sae}" Encoding:"evex m:5 p:1 l:x w:0 0x6C /r"/"RAM" + // Pos:2884 Instruction:"VCVTTPS2UQQS Vfv{K}{z},aKq,Whv|B32{sae}" Encoding:"evex m:5 p:1 l:x w:0 0x6C /r"/"RAM" { .Instruction = ND_INS_VCVTTPS2UQQS, .Category = ND_CAT_AVX10SCONVERT, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1049, + .Mnemonic = 1080, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -79349,6 +83363,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -79363,12 +83378,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2844 Instruction:"VCVTTSD2SI Gy,Wsd{sae}" Encoding:"evex m:1 p:3 l:i w:x 0x2C /r"/"RM" + // Pos:2885 Instruction:"VCVTTSD2SI Gy,Wsd{sae}" Encoding:"evex m:1 p:3 l:i w:x 0x2C /r"/"RM" { .Instruction = ND_INS_VCVTTSD2SI, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1050, + .Mnemonic = 1081, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_SAE, @@ -79377,6 +83392,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -79390,12 +83406,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2845 Instruction:"VCVTTSD2SI Gy,Wsd" Encoding:"vex m:1 p:3 l:i w:x 0x2C /r"/"RM" + // Pos:2886 Instruction:"VCVTTSD2SI Gy,Wsd" Encoding:"vex m:1 p:3 l:i w:x 0x2C /r"/"RM" { .Instruction = ND_INS_VCVTTSD2SI, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX, - .Mnemonic = 1050, + .Mnemonic = 1081, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -79404,6 +83420,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -79417,12 +83434,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2846 Instruction:"VCVTTSD2SIS Gy,Wsd{sae}" Encoding:"evex m:5 p:3 l:i w:x 0x6D /r"/"RM" + // Pos:2887 Instruction:"VCVTTSD2SIS Gy,Wsd{sae}" Encoding:"evex m:5 p:3 l:i w:x 0x6D /r"/"RM" { .Instruction = ND_INS_VCVTTSD2SIS, .Category = ND_CAT_AVX10SCONVERT, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1051, + .Mnemonic = 1082, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_SAE, @@ -79431,6 +83448,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -79444,12 +83462,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2847 Instruction:"VCVTTSD2USI Gy,Wsd{sae}" Encoding:"evex m:1 p:3 l:i w:x 0x78 /r"/"RM" + // Pos:2888 Instruction:"VCVTTSD2USI Gy,Wsd{sae}" Encoding:"evex m:1 p:3 l:i w:x 0x78 /r"/"RM" { .Instruction = ND_INS_VCVTTSD2USI, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1052, + .Mnemonic = 1083, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_SAE, @@ -79458,6 +83476,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -79471,12 +83490,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2848 Instruction:"VCVTTSD2USIS Gy,Wsd{sae}" Encoding:"evex m:5 p:3 l:i w:x 0x6C /r"/"RM" + // Pos:2889 Instruction:"VCVTTSD2USIS Gy,Wsd{sae}" Encoding:"evex m:5 p:3 l:i w:x 0x6C /r"/"RM" { .Instruction = ND_INS_VCVTTSD2USIS, .Category = ND_CAT_AVX10SCONVERT, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1053, + .Mnemonic = 1084, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_SAE, @@ -79485,6 +83504,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -79498,12 +83518,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2849 Instruction:"VCVTTSH2SI Gy,Wsh{sae}" Encoding:"evex m:5 p:2 l:i w:x 0x2C /r"/"RM" + // Pos:2890 Instruction:"VCVTTSH2SI Gy,Wsh{sae}" Encoding:"evex m:5 p:2 l:i w:x 0x2C /r"/"RM" { .Instruction = ND_INS_VCVTTSH2SI, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1054, + .Mnemonic = 1085, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_SAE, @@ -79512,6 +83532,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -79525,12 +83546,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2850 Instruction:"VCVTTSH2USI Gy,Wsh{sae}" Encoding:"evex m:5 p:2 l:i w:0 0x78 /r"/"RM" + // Pos:2891 Instruction:"VCVTTSH2USI Gy,Wsh{sae}" Encoding:"evex m:5 p:2 l:i w:0 0x78 /r"/"RM" { .Instruction = ND_INS_VCVTTSH2USI, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1055, + .Mnemonic = 1086, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_SAE, @@ -79539,6 +83560,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -79552,12 +83574,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2851 Instruction:"VCVTTSS2SI Gy,Wss{sae}" Encoding:"evex m:1 p:2 l:i w:x 0x2C /r"/"RM" + // Pos:2892 Instruction:"VCVTTSS2SI Gy,Wss{sae}" Encoding:"evex m:1 p:2 l:i w:x 0x2C /r"/"RM" { .Instruction = ND_INS_VCVTTSS2SI, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1056, + .Mnemonic = 1087, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_SAE, @@ -79566,6 +83588,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -79579,12 +83602,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2852 Instruction:"VCVTTSS2SI Gy,Wss" Encoding:"vex m:1 p:2 l:i w:x 0x2C /r"/"RM" + // Pos:2893 Instruction:"VCVTTSS2SI Gy,Wss" Encoding:"vex m:1 p:2 l:i w:x 0x2C /r"/"RM" { .Instruction = ND_INS_VCVTTSS2SI, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX, - .Mnemonic = 1056, + .Mnemonic = 1087, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -79593,6 +83616,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -79606,12 +83630,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2853 Instruction:"VCVTTSS2SIS Gy,Wss{sae}" Encoding:"evex m:5 p:2 l:i w:x 0x6D /r"/"RM" + // Pos:2894 Instruction:"VCVTTSS2SIS Gy,Wss{sae}" Encoding:"evex m:5 p:2 l:i w:x 0x6D /r"/"RM" { .Instruction = ND_INS_VCVTTSS2SIS, .Category = ND_CAT_AVX10SCONVERT, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1057, + .Mnemonic = 1088, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_SAE, @@ -79620,6 +83644,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -79633,12 +83658,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2854 Instruction:"VCVTTSS2USI Gy,Wss{sae}" Encoding:"evex m:1 p:2 l:i w:x 0x78 /r"/"RM" + // Pos:2895 Instruction:"VCVTTSS2USI Gy,Wss{sae}" Encoding:"evex m:1 p:2 l:i w:x 0x78 /r"/"RM" { .Instruction = ND_INS_VCVTTSS2USI, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1058, + .Mnemonic = 1089, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_SAE, @@ -79647,6 +83672,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -79660,12 +83686,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2855 Instruction:"VCVTTSS2USIS Gy,Wss{sae}" Encoding:"evex m:5 p:2 l:i w:x 0x6C /r"/"RM" + // Pos:2896 Instruction:"VCVTTSS2USIS Gy,Wss{sae}" Encoding:"evex m:5 p:2 l:i w:x 0x6C /r"/"RM" { .Instruction = ND_INS_VCVTTSS2USIS, .Category = ND_CAT_AVX10SCONVERT, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1059, + .Mnemonic = 1090, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_SAE, @@ -79674,6 +83700,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -79687,12 +83714,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2856 Instruction:"VCVTUDQ2PD Vfv{K}{z},aKq,Whv|B32" Encoding:"evex m:1 p:2 l:x w:0 0x7A /r"/"RAM" + // Pos:2897 Instruction:"VCVTUDQ2PD Vfv{K}{z},aKq,Whv|B32" Encoding:"evex m:1 p:2 l:x w:0 0x7A /r"/"RAM" { .Instruction = ND_INS_VCVTUDQ2PD, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1060, + .Mnemonic = 1091, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -79701,6 +83728,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -79715,12 +83743,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2857 Instruction:"VCVTUDQ2PH Vhv{K}{z},aKq,Wfv|B32{er}" Encoding:"evex m:5 p:3 l:x w:0 0x7A /r"/"RAM" + // Pos:2898 Instruction:"VCVTUDQ2PH Vhv{K}{z},aKq,Wfv|B32{er}" Encoding:"evex m:5 p:3 l:x w:0 0x7A /r"/"RAM" { .Instruction = ND_INS_VCVTUDQ2PH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1061, + .Mnemonic = 1092, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -79729,6 +83757,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_PE|ND_SIMD_EXC_OE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -79743,12 +83772,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2858 Instruction:"VCVTUDQ2PS Vfv{K}{z},aKq,Wfv|B32{er}" Encoding:"evex m:1 p:3 l:x w:0 0x7A /r"/"RAM" + // Pos:2899 Instruction:"VCVTUDQ2PS Vfv{K}{z},aKq,Wfv|B32{er}" Encoding:"evex m:1 p:3 l:x w:0 0x7A /r"/"RAM" { .Instruction = ND_INS_VCVTUDQ2PS, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1062, + .Mnemonic = 1093, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -79757,6 +83786,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -79771,12 +83801,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2859 Instruction:"VCVTUQQ2PD Vfv{K}{z},aKq,Wfv|B64{er}" Encoding:"evex m:1 p:2 l:x w:1 0x7A /r"/"RAM" + // Pos:2900 Instruction:"VCVTUQQ2PD Vfv{K}{z},aKq,Wfv|B64{er}" Encoding:"evex m:1 p:2 l:x w:1 0x7A /r"/"RAM" { .Instruction = ND_INS_VCVTUQQ2PD, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX512DQ, - .Mnemonic = 1063, + .Mnemonic = 1094, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -79785,6 +83815,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -79799,12 +83830,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2860 Instruction:"VCVTUQQ2PH Vqv{K}{z},aKq,Wfv|B64{er}" Encoding:"evex m:5 p:3 l:x w:1 0x7A /r"/"RAM" + // Pos:2901 Instruction:"VCVTUQQ2PH Vqv{K}{z},aKq,Wfv|B64{er}" Encoding:"evex m:5 p:3 l:x w:1 0x7A /r"/"RAM" { .Instruction = ND_INS_VCVTUQQ2PH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1064, + .Mnemonic = 1095, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -79813,6 +83844,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_PE|ND_SIMD_EXC_OE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -79827,12 +83859,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2861 Instruction:"VCVTUQQ2PS Vhv{K}{z},aKq,Wfv|B64{er}" Encoding:"evex m:1 p:3 l:x w:1 0x7A /r"/"RAM" + // Pos:2902 Instruction:"VCVTUQQ2PS Vhv{K}{z},aKq,Wfv|B64{er}" Encoding:"evex m:1 p:3 l:x w:1 0x7A /r"/"RAM" { .Instruction = ND_INS_VCVTUQQ2PS, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX512DQ, - .Mnemonic = 1065, + .Mnemonic = 1096, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -79841,6 +83873,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -79855,12 +83888,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2862 Instruction:"VCVTUSI2SD Vdq,Hdq,Ey" Encoding:"evex m:1 p:3 l:i w:0 0x7B /r"/"RVM" + // Pos:2903 Instruction:"VCVTUSI2SD Vdq,Hdq,Ey" Encoding:"evex m:1 p:3 l:i w:0 0x7B /r"/"RVM" { .Instruction = ND_INS_VCVTUSI2SD, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1066, + .Mnemonic = 1097, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -79869,6 +83902,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E10NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -79883,12 +83917,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2863 Instruction:"VCVTUSI2SD Vdq,Hdq{er},Ey" Encoding:"evex m:1 p:3 l:i w:1 0x7B /r"/"RVM" + // Pos:2904 Instruction:"VCVTUSI2SD Vdq,Hdq{er},Ey" Encoding:"evex m:1 p:3 l:i w:1 0x7B /r"/"RVM" { .Instruction = ND_INS_VCVTUSI2SD, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1066, + .Mnemonic = 1097, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ER, @@ -79897,6 +83931,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -79911,12 +83946,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2864 Instruction:"VCVTUSI2SH Vdq,Hdq,Ey{er}" Encoding:"evex m:5 p:2 l:i w:x 0x7B /r"/"RVM" + // Pos:2905 Instruction:"VCVTUSI2SH Vdq,Hdq,Ey{er}" Encoding:"evex m:5 p:2 l:i w:x 0x7B /r"/"RVM" { .Instruction = ND_INS_VCVTUSI2SH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1067, + .Mnemonic = 1098, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ER, @@ -79925,6 +83960,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -79939,12 +83975,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2865 Instruction:"VCVTUSI2SS Vss,Hss{er},Ey" Encoding:"evex m:1 p:2 l:i w:x 0x7B /r"/"RVM" + // Pos:2906 Instruction:"VCVTUSI2SS Vss,Hss{er},Ey" Encoding:"evex m:1 p:2 l:i w:x 0x7B /r"/"RVM" { .Instruction = ND_INS_VCVTUSI2SS, .Category = ND_CAT_CONVERT, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1068, + .Mnemonic = 1099, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ER, @@ -79953,6 +83989,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -79967,12 +84004,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2866 Instruction:"VCVTUW2PH Vfv{K}{z},aKq,Wfv|B16{er}" Encoding:"evex m:5 p:3 l:x w:0 0x7D /r"/"RAM" + // Pos:2907 Instruction:"VCVTUW2PH Vfv{K}{z},aKq,Wfv|B16{er}" Encoding:"evex m:5 p:3 l:x w:0 0x7D /r"/"RAM" { .Instruction = ND_INS_VCVTUW2PH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1069, + .Mnemonic = 1100, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -79981,6 +84018,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_PE|ND_SIMD_EXC_OE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -79995,12 +84033,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2867 Instruction:"VCVTW2PH Vfv{K}{z},aKq,Wfv|B16{er}" Encoding:"evex m:5 p:2 l:x w:0 0x7D /r"/"RAM" + // Pos:2908 Instruction:"VCVTW2PH Vfv{K}{z},aKq,Wfv|B16{er}" Encoding:"evex m:5 p:2 l:x w:0 0x7D /r"/"RAM" { .Instruction = ND_INS_VCVTW2PH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1070, + .Mnemonic = 1101, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -80009,6 +84047,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -80023,12 +84062,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2868 Instruction:"VDBPSADBW Vfv{K}{z},aKq,Hfv,Wfv,Ib" Encoding:"evex m:3 p:1 l:x w:0 0x42 /r ib"/"RAVMI" + // Pos:2909 Instruction:"VDBPSADBW Vfv{K}{z},aKq,Hfv,Wfv,Ib" Encoding:"evex m:3 p:1 l:x w:0 0x42 /r ib"/"RAVMI" { .Instruction = ND_INS_VDBPSADBW, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1071, + .Mnemonic = 1102, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -80037,6 +84076,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NFnb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -80053,12 +84093,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2869 Instruction:"VDIVNEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16" Encoding:"evex m:5 p:1 l:x w:0 0x5E /r"/"RAVM" + // Pos:2910 Instruction:"VDIVNEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16" Encoding:"evex m:5 p:1 l:x w:0 0x5E /r"/"RAVM" { .Instruction = ND_INS_VDIVNEPBF16, .Category = ND_CAT_AVX10BF16, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1072, + .Mnemonic = 1103, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -80067,6 +84107,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -80082,12 +84123,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2870 Instruction:"VDIVPD Vfv{K}{z},aKq,Hfv,Wfv|B64{er}" Encoding:"evex m:1 p:1 l:x w:1 0x5E /r"/"RAVM" + // Pos:2911 Instruction:"VDIVPD Vfv{K}{z},aKq,Hfv,Wfv|B64{er}" Encoding:"evex m:1 p:1 l:x w:1 0x5E /r"/"RAVM" { .Instruction = ND_INS_VDIVPD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1073, + .Mnemonic = 1104, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -80096,6 +84137,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE|ND_SIMD_EXC_ZE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -80111,12 +84153,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2871 Instruction:"VDIVPD Vpd,Hpd,Wpd" Encoding:"vex m:1 p:1 l:x w:i 0x5E /r"/"RVM" + // Pos:2912 Instruction:"VDIVPD Vpd,Hpd,Wpd" Encoding:"vex m:1 p:1 l:x w:i 0x5E /r"/"RVM" { .Instruction = ND_INS_VDIVPD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1073, + .Mnemonic = 1104, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -80125,6 +84167,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE|ND_SIMD_EXC_ZE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -80139,12 +84182,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2872 Instruction:"VDIVPH Vfv{K}{z},aKq,Hfv,Wfv|B16{er}" Encoding:"evex m:5 p:0 l:x w:0 0x5E /r"/"RAVM" + // Pos:2913 Instruction:"VDIVPH Vfv{K}{z},aKq,Hfv,Wfv|B16{er}" Encoding:"evex m:5 p:0 l:x w:0 0x5E /r"/"RAVM" { .Instruction = ND_INS_VDIVPH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1074, + .Mnemonic = 1105, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -80153,6 +84196,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE|ND_SIMD_EXC_ZE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -80168,12 +84212,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2873 Instruction:"VDIVPS Vfv{K}{z},aKq,Hfv,Wfv|B32{er}" Encoding:"evex m:1 p:0 l:x w:0 0x5E /r"/"RAVM" + // Pos:2914 Instruction:"VDIVPS Vfv{K}{z},aKq,Hfv,Wfv|B32{er}" Encoding:"evex m:1 p:0 l:x w:0 0x5E /r"/"RAVM" { .Instruction = ND_INS_VDIVPS, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1075, + .Mnemonic = 1106, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -80182,6 +84226,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE|ND_SIMD_EXC_ZE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -80197,12 +84242,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2874 Instruction:"VDIVPS Vps,Hps,Wps" Encoding:"vex m:1 p:0 l:x w:i 0x5E /r"/"RVM" + // Pos:2915 Instruction:"VDIVPS Vps,Hps,Wps" Encoding:"vex m:1 p:0 l:x w:i 0x5E /r"/"RVM" { .Instruction = ND_INS_VDIVPS, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1075, + .Mnemonic = 1106, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -80211,6 +84256,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE|ND_SIMD_EXC_ZE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -80225,12 +84271,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2875 Instruction:"VDIVSD Vdq{K}{z},aKq,Hdq,Wsd{er}" Encoding:"evex m:1 p:3 l:i w:1 0x5E /r"/"RAVM" + // Pos:2916 Instruction:"VDIVSD Vdq{K}{z},aKq,Hdq,Wsd{er}" Encoding:"evex m:1 p:3 l:i w:1 0x5E /r"/"RAVM" { .Instruction = ND_INS_VDIVSD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1076, + .Mnemonic = 1107, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -80239,6 +84285,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE|ND_SIMD_EXC_ZE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -80254,12 +84301,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2876 Instruction:"VDIVSD Vsd,Hsd,Wsd" Encoding:"vex m:1 p:3 l:i w:i 0x5E /r"/"RVM" + // Pos:2917 Instruction:"VDIVSD Vsd,Hsd,Wsd" Encoding:"vex m:1 p:3 l:i w:i 0x5E /r"/"RVM" { .Instruction = ND_INS_VDIVSD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1076, + .Mnemonic = 1107, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -80268,6 +84315,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE|ND_SIMD_EXC_ZE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -80282,12 +84330,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2877 Instruction:"VDIVSH Vdq{K}{z},aKq,Hdq,Wsh{er}" Encoding:"evex m:5 p:2 l:i w:0 0x5E /r"/"RAVM" + // Pos:2918 Instruction:"VDIVSH Vdq{K}{z},aKq,Hdq,Wsh{er}" Encoding:"evex m:5 p:2 l:i w:0 0x5E /r"/"RAVM" { .Instruction = ND_INS_VDIVSH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1077, + .Mnemonic = 1108, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -80296,6 +84344,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE|ND_SIMD_EXC_ZE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -80311,12 +84360,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2878 Instruction:"VDIVSS Vdq{K}{z},aKq,Hdq,Wss{er}" Encoding:"evex m:1 p:2 l:i w:0 0x5E /r"/"RAVM" + // Pos:2919 Instruction:"VDIVSS Vdq{K}{z},aKq,Hdq,Wss{er}" Encoding:"evex m:1 p:2 l:i w:0 0x5E /r"/"RAVM" { .Instruction = ND_INS_VDIVSS, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1078, + .Mnemonic = 1109, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -80325,6 +84374,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE|ND_SIMD_EXC_ZE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -80340,12 +84390,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2879 Instruction:"VDIVSS Vss,Hss,Wss" Encoding:"vex m:1 p:2 l:i w:i 0x5E /r"/"RVM" + // Pos:2920 Instruction:"VDIVSS Vss,Hss,Wss" Encoding:"vex m:1 p:2 l:i w:i 0x5E /r"/"RVM" { .Instruction = ND_INS_VDIVSS, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1078, + .Mnemonic = 1109, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -80354,6 +84404,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE|ND_SIMD_EXC_ZE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -80368,12 +84419,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2880 Instruction:"VDPBF16PS Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:2 l:x w:0 0x52 /r"/"RAVM" + // Pos:2921 Instruction:"VDPBF16PS Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:2 l:x w:0 0x52 /r"/"RAVM" { .Instruction = ND_INS_VDPBF16PS, .Category = ND_CAT_AVX512BF16, .IsaSet = ND_SET_AVX512BF16, - .Mnemonic = 1079, + .Mnemonic = 1110, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -80382,6 +84433,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -80397,12 +84449,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2881 Instruction:"VDPPD Vdq,Hdq,Wdq,Ib" Encoding:"vex m:3 p:1 l:0 w:i 0x41 /r ib"/"RVMI" + // Pos:2922 Instruction:"VDPPD Vdq,Hdq,Wdq,Ib" Encoding:"vex m:3 p:1 l:0 w:i 0x41 /r ib"/"RVMI" { .Instruction = ND_INS_VDPPD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1080, + .Mnemonic = 1111, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -80411,6 +84463,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -80426,12 +84479,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2882 Instruction:"VDPPHPS Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:0 l:x w:0 0x52 /r"/"RAVM" + // Pos:2923 Instruction:"VDPPHPS Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:0 l:x w:0 0x52 /r"/"RAVM" { .Instruction = ND_INS_VDPPHPS, .Category = ND_CAT_AVX10INT, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1081, + .Mnemonic = 1112, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -80440,6 +84493,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -80455,12 +84509,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2883 Instruction:"VDPPS Vx,Hx,Wx,Ib" Encoding:"vex m:3 p:1 l:x w:i 0x40 /r ib"/"RVMI" + // Pos:2924 Instruction:"VDPPS Vx,Hx,Wx,Ib" Encoding:"vex m:3 p:1 l:x w:i 0x40 /r ib"/"RVMI" { .Instruction = ND_INS_VDPPS, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1082, + .Mnemonic = 1113, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -80469,6 +84523,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -80484,12 +84539,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2884 Instruction:"VERR Ew" Encoding:"0x0F 0x00 /4"/"M" + // Pos:2925 Instruction:"VERR Ew" Encoding:"0x0F 0x00 /4"/"M" { .Instruction = ND_INS_VERR, .Category = ND_CAT_SYSTEM, .IsaSet = ND_SET_I286PROT, - .Mnemonic = 1083, + .Mnemonic = 1114, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -80498,6 +84553,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_ZF, .SetFlags = 0, @@ -80511,12 +84567,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2885 Instruction:"VERW Ew" Encoding:"0x0F 0x00 /5"/"M" + // Pos:2926 Instruction:"VERW Ew" Encoding:"0x0F 0x00 /5"/"M" { .Instruction = ND_INS_VERW, .Category = ND_CAT_SYSTEM, .IsaSet = ND_SET_I286PROT, - .Mnemonic = 1084, + .Mnemonic = 1115, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -80525,6 +84581,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_ZF, .SetFlags = 0, @@ -80538,12 +84595,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2886 Instruction:"VEXP2PD Voq{K}{z},aKq,Woq|B64{sae}" Encoding:"evex m:2 p:1 l:2 w:1 0xC8 /r"/"RAM" + // Pos:2927 Instruction:"VEXP2PD Voq{K}{z},aKq,Woq|B64{sae}" Encoding:"evex m:2 p:1 l:2 w:1 0xC8 /r"/"RAM" { .Instruction = ND_INS_VEXP2PD, .Category = ND_CAT_KNL, .IsaSet = ND_SET_AVX512ER, - .Mnemonic = 1085, + .Mnemonic = 1116, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -80552,6 +84609,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -80566,12 +84624,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2887 Instruction:"VEXP2PS Voq{K}{z},aKq,Woq|B32{sae}" Encoding:"evex m:2 p:1 l:2 w:0 0xC8 /r"/"RAM" + // Pos:2928 Instruction:"VEXP2PS Voq{K}{z},aKq,Woq|B32{sae}" Encoding:"evex m:2 p:1 l:2 w:0 0xC8 /r"/"RAM" { .Instruction = ND_INS_VEXP2PS, .Category = ND_CAT_KNL, .IsaSet = ND_SET_AVX512ER, - .Mnemonic = 1086, + .Mnemonic = 1117, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -80580,6 +84638,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -80594,12 +84653,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2888 Instruction:"VEXPANDPD Vfv{K}{z},aKq,Wfv" Encoding:"evex m:2 p:1 l:x w:1 0x88 /r"/"RAM" + // Pos:2929 Instruction:"VEXPANDPD Vfv{K}{z},aKq,Wfv" Encoding:"evex m:2 p:1 l:x w:1 0x88 /r"/"RAM" { .Instruction = ND_INS_VEXPANDPD, .Category = ND_CAT_EXPAND, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1087, + .Mnemonic = 1118, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -80608,6 +84667,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -80622,12 +84682,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2889 Instruction:"VEXPANDPS Vfv{K}{z},aKq,Wfv" Encoding:"evex m:2 p:1 l:x w:0 0x88 /r"/"RAM" + // Pos:2930 Instruction:"VEXPANDPS Vfv{K}{z},aKq,Wfv" Encoding:"evex m:2 p:1 l:x w:0 0x88 /r"/"RAM" { .Instruction = ND_INS_VEXPANDPS, .Category = ND_CAT_EXPAND, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1088, + .Mnemonic = 1119, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -80636,6 +84696,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -80650,12 +84711,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2890 Instruction:"VEXTRACTF128 Wdq,Vqq,Ib" Encoding:"vex m:3 p:1 l:1 w:0 0x19 /r ib"/"MRI" + // Pos:2931 Instruction:"VEXTRACTF128 Wdq,Vqq,Ib" Encoding:"vex m:3 p:1 l:1 w:0 0x19 /r ib"/"MRI" { .Instruction = ND_INS_VEXTRACTF128, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1089, + .Mnemonic = 1120, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -80664,6 +84725,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -80678,12 +84740,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2891 Instruction:"VEXTRACTF32X4 Wdq{K}{z},aKq,Vuv,Ib" Encoding:"evex m:3 p:1 l:x w:0 0x19 /r ib"/"MARI" + // Pos:2932 Instruction:"VEXTRACTF32X4 Wdq{K}{z},aKq,Vuv,Ib" Encoding:"evex m:3 p:1 l:x w:0 0x19 /r ib"/"MARI" { .Instruction = ND_INS_VEXTRACTF32X4, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1090, + .Mnemonic = 1121, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -80692,6 +84754,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E6NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -80707,12 +84770,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2892 Instruction:"VEXTRACTF32X8 Wqq{K}{z},aKq,Voq,Ib" Encoding:"evex m:3 p:1 l:2 w:0 0x1B /r ib"/"MARI" + // Pos:2933 Instruction:"VEXTRACTF32X8 Wqq{K}{z},aKq,Voq,Ib" Encoding:"evex m:3 p:1 l:2 w:0 0x1B /r ib"/"MARI" { .Instruction = ND_INS_VEXTRACTF32X8, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512DQ, - .Mnemonic = 1091, + .Mnemonic = 1122, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -80721,6 +84784,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E6NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -80736,12 +84800,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2893 Instruction:"VEXTRACTF64X2 Wdq{K}{z},aKq,Vuv,Ib" Encoding:"evex m:3 p:1 l:x w:1 0x19 /r ib"/"MARI" + // Pos:2934 Instruction:"VEXTRACTF64X2 Wdq{K}{z},aKq,Vuv,Ib" Encoding:"evex m:3 p:1 l:x w:1 0x19 /r ib"/"MARI" { .Instruction = ND_INS_VEXTRACTF64X2, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512DQ, - .Mnemonic = 1092, + .Mnemonic = 1123, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -80750,6 +84814,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E6NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -80765,12 +84830,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2894 Instruction:"VEXTRACTF64X4 Wqq{K}{z},aKq,Voq,Ib" Encoding:"evex m:3 p:1 l:2 w:1 0x1B /r ib"/"MARI" + // Pos:2935 Instruction:"VEXTRACTF64X4 Wqq{K}{z},aKq,Voq,Ib" Encoding:"evex m:3 p:1 l:2 w:1 0x1B /r ib"/"MARI" { .Instruction = ND_INS_VEXTRACTF64X4, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1093, + .Mnemonic = 1124, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -80779,6 +84844,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E6NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -80794,12 +84860,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2895 Instruction:"VEXTRACTI128 Wdq,Vqq,Ib" Encoding:"vex m:3 p:1 l:1 w:0 0x39 /r ib"/"MRI" + // Pos:2936 Instruction:"VEXTRACTI128 Wdq,Vqq,Ib" Encoding:"vex m:3 p:1 l:1 w:0 0x39 /r ib"/"MRI" { .Instruction = ND_INS_VEXTRACTI128, .Category = ND_CAT_AVX2, .IsaSet = ND_SET_AVX2, - .Mnemonic = 1094, + .Mnemonic = 1125, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -80808,6 +84874,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -80822,12 +84889,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2896 Instruction:"VEXTRACTI32X4 Wdq{K}{z},aKq,Vuv,Ib" Encoding:"evex m:3 p:1 l:x w:0 0x39 /r ib"/"MARI" + // Pos:2937 Instruction:"VEXTRACTI32X4 Wdq{K}{z},aKq,Vuv,Ib" Encoding:"evex m:3 p:1 l:x w:0 0x39 /r ib"/"MARI" { .Instruction = ND_INS_VEXTRACTI32X4, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1095, + .Mnemonic = 1126, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -80836,6 +84903,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E6NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -80851,12 +84919,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2897 Instruction:"VEXTRACTI32X8 Wqq{K}{z},aKq,Voq,Ib" Encoding:"evex m:3 p:1 l:2 w:0 0x3B /r ib"/"MARI" + // Pos:2938 Instruction:"VEXTRACTI32X8 Wqq{K}{z},aKq,Voq,Ib" Encoding:"evex m:3 p:1 l:2 w:0 0x3B /r ib"/"MARI" { .Instruction = ND_INS_VEXTRACTI32X8, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512DQ, - .Mnemonic = 1096, + .Mnemonic = 1127, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -80865,6 +84933,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E6NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -80880,12 +84949,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2898 Instruction:"VEXTRACTI64X2 Wdq{K}{z},aKq,Vuv,Ib" Encoding:"evex m:3 p:1 l:x w:1 0x39 /r ib"/"MARI" + // Pos:2939 Instruction:"VEXTRACTI64X2 Wdq{K}{z},aKq,Vuv,Ib" Encoding:"evex m:3 p:1 l:x w:1 0x39 /r ib"/"MARI" { .Instruction = ND_INS_VEXTRACTI64X2, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512DQ, - .Mnemonic = 1097, + .Mnemonic = 1128, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -80894,6 +84963,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E6NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -80909,12 +84979,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2899 Instruction:"VEXTRACTI64X4 Wqq{K}{z},aKq,Voq,Ib" Encoding:"evex m:3 p:1 l:2 w:1 0x3B /r ib"/"MARI" + // Pos:2940 Instruction:"VEXTRACTI64X4 Wqq{K}{z},aKq,Voq,Ib" Encoding:"evex m:3 p:1 l:2 w:1 0x3B /r ib"/"MARI" { .Instruction = ND_INS_VEXTRACTI64X4, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1098, + .Mnemonic = 1129, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -80923,6 +84993,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E6NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -80938,12 +85009,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2900 Instruction:"VEXTRACTPS Md,Vdq,Ib" Encoding:"evex m:3 p:1 l:0 w:i 0x17 /r:mem ib"/"MRI" + // Pos:2941 Instruction:"VEXTRACTPS Md,Vdq,Ib" Encoding:"evex m:3 p:1 l:0 w:i 0x17 /r:mem ib"/"MRI" { .Instruction = ND_INS_VEXTRACTPS, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1099, + .Mnemonic = 1130, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -80952,6 +85023,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E9NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -80966,12 +85038,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2901 Instruction:"VEXTRACTPS Ry,Vdq,Ib" Encoding:"evex m:3 p:1 l:0 w:i 0x17 /r:reg ib"/"MRI" + // Pos:2942 Instruction:"VEXTRACTPS Ry,Vdq,Ib" Encoding:"evex m:3 p:1 l:0 w:i 0x17 /r:reg ib"/"MRI" { .Instruction = ND_INS_VEXTRACTPS, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1099, + .Mnemonic = 1130, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -80980,6 +85052,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E9NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -80994,12 +85067,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2902 Instruction:"VEXTRACTPS Md,Vdq,Ib" Encoding:"vex m:3 p:1 l:0 w:i 0x17 /r:mem ib"/"MRI" + // Pos:2943 Instruction:"VEXTRACTPS Md,Vdq,Ib" Encoding:"vex m:3 p:1 l:0 w:i 0x17 /r:mem ib"/"MRI" { .Instruction = ND_INS_VEXTRACTPS, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1099, + .Mnemonic = 1130, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -81008,6 +85081,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -81022,12 +85096,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2903 Instruction:"VEXTRACTPS Ry,Vdq,Ib" Encoding:"vex m:3 p:1 l:0 w:i 0x17 /r:reg ib"/"MRI" + // Pos:2944 Instruction:"VEXTRACTPS Ry,Vdq,Ib" Encoding:"vex m:3 p:1 l:0 w:i 0x17 /r:reg ib"/"MRI" { .Instruction = ND_INS_VEXTRACTPS, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1099, + .Mnemonic = 1130, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -81036,6 +85110,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -81050,12 +85125,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2904 Instruction:"VFCMADDCPH Vfv{K}{z},aKq,Hfv,Wfv|B32{er}" Encoding:"evex m:6 p:3 l:x w:0 0x56 /r"/"RAVM" + // Pos:2945 Instruction:"VFCMADDCPH Vfv{K}{z},aKq,Hfv,Wfv|B32{er}" Encoding:"evex m:6 p:3 l:x w:0 0x56 /r"/"RAVM" { .Instruction = ND_INS_VFCMADDCPH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1100, + .Mnemonic = 1131, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -81064,6 +85139,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4S, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -81079,12 +85155,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2905 Instruction:"VFCMADDCSH Vdq{K}{z},aKq,Hdq,Wd{er}" Encoding:"evex m:6 p:3 l:i w:0 0x57 /r"/"RAVM" + // Pos:2946 Instruction:"VFCMADDCSH Vdq{K}{z},aKq,Hdq,Wd{er}" Encoding:"evex m:6 p:3 l:i w:0 0x57 /r"/"RAVM" { .Instruction = ND_INS_VFCMADDCSH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1101, + .Mnemonic = 1132, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -81093,6 +85169,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E10S, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -81108,12 +85185,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2906 Instruction:"VFCMULCPH Vfv{K}{z},aKq,Hfv,Wfv|B32{er}" Encoding:"evex m:6 p:3 l:x w:0 0xD6 /r"/"RAVM" + // Pos:2947 Instruction:"VFCMULCPH Vfv{K}{z},aKq,Hfv,Wfv|B32{er}" Encoding:"evex m:6 p:3 l:x w:0 0xD6 /r"/"RAVM" { .Instruction = ND_INS_VFCMULCPH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1102, + .Mnemonic = 1133, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -81122,6 +85199,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4S, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -81137,12 +85215,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2907 Instruction:"VFCMULCSH Vdq{K}{z},aKq,Hdq,Wd{er}" Encoding:"evex m:6 p:3 l:i w:0 0xD7 /r"/"RAVM" + // Pos:2948 Instruction:"VFCMULCSH Vdq{K}{z},aKq,Hdq,Wd{er}" Encoding:"evex m:6 p:3 l:i w:0 0xD7 /r"/"RAVM" { .Instruction = ND_INS_VFCMULCSH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1103, + .Mnemonic = 1134, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -81151,6 +85229,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E10S, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -81166,12 +85245,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2908 Instruction:"VFIXUPIMMPD Vfv{K}{z},aKq,Hfv,Wfv|B64{sae},Ib" Encoding:"evex m:3 p:1 l:x w:1 0x54 /r ib"/"RAVMI" + // Pos:2949 Instruction:"VFIXUPIMMPD Vfv{K}{z},aKq,Hfv,Wfv|B64{sae},Ib" Encoding:"evex m:3 p:1 l:x w:1 0x54 /r ib"/"RAVMI" { .Instruction = ND_INS_VFIXUPIMMPD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1104, + .Mnemonic = 1135, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -81180,6 +85259,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_ZE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -81196,12 +85276,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2909 Instruction:"VFIXUPIMMPS Vfv{K}{z},aKq,Hfv,Wfv|B32{sae},Ib" Encoding:"evex m:3 p:1 l:x w:0 0x54 /r ib"/"RAVMI" + // Pos:2950 Instruction:"VFIXUPIMMPS Vfv{K}{z},aKq,Hfv,Wfv|B32{sae},Ib" Encoding:"evex m:3 p:1 l:x w:0 0x54 /r ib"/"RAVMI" { .Instruction = ND_INS_VFIXUPIMMPS, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1105, + .Mnemonic = 1136, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -81210,6 +85290,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_ZE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -81226,12 +85307,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2910 Instruction:"VFIXUPIMMSD Vdq{K}{z},aKq,Hdq,Wsd{sae},Ib" Encoding:"evex m:3 p:1 l:i w:1 0x55 /r ib"/"RAVMI" + // Pos:2951 Instruction:"VFIXUPIMMSD Vdq{K}{z},aKq,Hdq,Wsd{sae},Ib" Encoding:"evex m:3 p:1 l:i w:1 0x55 /r ib"/"RAVMI" { .Instruction = ND_INS_VFIXUPIMMSD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1106, + .Mnemonic = 1137, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE, @@ -81240,6 +85321,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_ZE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -81256,12 +85338,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2911 Instruction:"VFIXUPIMMSS Vdq{K}{z},aKq,Hdq,Wss{sae},Ib" Encoding:"evex m:3 p:1 l:i w:0 0x55 /r ib"/"RAVMI" + // Pos:2952 Instruction:"VFIXUPIMMSS Vdq{K}{z},aKq,Hdq,Wss{sae},Ib" Encoding:"evex m:3 p:1 l:i w:0 0x55 /r ib"/"RAVMI" { .Instruction = ND_INS_VFIXUPIMMSS, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1107, + .Mnemonic = 1138, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE, @@ -81270,6 +85352,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_ZE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -81286,12 +85369,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2912 Instruction:"VFMADD132NEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16" Encoding:"evex m:6 p:0 l:x w:0 0x98 /r"/"RAVM" + // Pos:2953 Instruction:"VFMADD132NEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16" Encoding:"evex m:6 p:0 l:x w:0 0x98 /r"/"RAVM" { .Instruction = ND_INS_VFMADD132NEPBF16, .Category = ND_CAT_AVX10BF16, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1108, + .Mnemonic = 1139, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -81300,6 +85383,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -81315,12 +85399,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2913 Instruction:"VFMADD132PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er}" Encoding:"evex m:2 p:1 l:x w:1 0x98 /r"/"RAVM" + // Pos:2954 Instruction:"VFMADD132PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er}" Encoding:"evex m:2 p:1 l:x w:1 0x98 /r"/"RAVM" { .Instruction = ND_INS_VFMADD132PD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1109, + .Mnemonic = 1140, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -81329,6 +85413,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -81344,12 +85429,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2914 Instruction:"VFMADD132PD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:1 0x98 /r"/"RVM" + // Pos:2955 Instruction:"VFMADD132PD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:1 0x98 /r"/"RVM" { .Instruction = ND_INS_VFMADD132PD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1109, + .Mnemonic = 1140, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -81358,6 +85443,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -81372,12 +85458,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2915 Instruction:"VFMADD132PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er}" Encoding:"evex m:6 p:1 l:x w:0 0x98 /r"/"RAVM" + // Pos:2956 Instruction:"VFMADD132PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er}" Encoding:"evex m:6 p:1 l:x w:0 0x98 /r"/"RAVM" { .Instruction = ND_INS_VFMADD132PH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1110, + .Mnemonic = 1141, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -81386,6 +85472,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -81401,12 +85488,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2916 Instruction:"VFMADD132PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er}" Encoding:"evex m:2 p:1 l:x w:0 0x98 /r"/"RAVM" + // Pos:2957 Instruction:"VFMADD132PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er}" Encoding:"evex m:2 p:1 l:x w:0 0x98 /r"/"RAVM" { .Instruction = ND_INS_VFMADD132PS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1111, + .Mnemonic = 1142, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -81415,6 +85502,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -81430,12 +85518,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2917 Instruction:"VFMADD132PS Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0x98 /r"/"RVM" + // Pos:2958 Instruction:"VFMADD132PS Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0x98 /r"/"RVM" { .Instruction = ND_INS_VFMADD132PS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1111, + .Mnemonic = 1142, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -81444,6 +85532,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -81458,12 +85547,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2918 Instruction:"VFMADD132SD Vdq{K}{z},aKq,Hdq,Wsd{er}" Encoding:"evex m:2 p:1 l:i w:1 0x99 /r"/"RAVM" + // Pos:2959 Instruction:"VFMADD132SD Vdq{K}{z},aKq,Hdq,Wsd{er}" Encoding:"evex m:2 p:1 l:i w:1 0x99 /r"/"RAVM" { .Instruction = ND_INS_VFMADD132SD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1112, + .Mnemonic = 1143, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -81472,6 +85561,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -81487,12 +85577,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2919 Instruction:"VFMADD132SD Vdq,Hdq,Wsd" Encoding:"vex m:2 p:1 l:i w:1 0x99 /r"/"RVM" + // Pos:2960 Instruction:"VFMADD132SD Vdq,Hdq,Wsd" Encoding:"vex m:2 p:1 l:i w:1 0x99 /r"/"RVM" { .Instruction = ND_INS_VFMADD132SD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1112, + .Mnemonic = 1143, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -81501,6 +85591,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -81515,12 +85606,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2920 Instruction:"VFMADD132SH Vdq{K}{z},aKq,Hdq,Wsh{er}" Encoding:"evex m:6 p:1 l:i w:0 0x99 /r"/"RAVM" + // Pos:2961 Instruction:"VFMADD132SH Vdq{K}{z},aKq,Hdq,Wsh{er}" Encoding:"evex m:6 p:1 l:i w:0 0x99 /r"/"RAVM" { .Instruction = ND_INS_VFMADD132SH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1113, + .Mnemonic = 1144, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -81529,6 +85620,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -81544,12 +85636,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2921 Instruction:"VFMADD132SS Vdq{K}{z},aKq,Hdq,Wss{er}" Encoding:"evex m:2 p:1 l:i w:0 0x99 /r"/"RAVM" + // Pos:2962 Instruction:"VFMADD132SS Vdq{K}{z},aKq,Hdq,Wss{er}" Encoding:"evex m:2 p:1 l:i w:0 0x99 /r"/"RAVM" { .Instruction = ND_INS_VFMADD132SS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1114, + .Mnemonic = 1145, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -81558,6 +85650,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -81573,12 +85666,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2922 Instruction:"VFMADD132SS Vdq,Hdq,Wss" Encoding:"vex m:2 p:1 l:i w:0 0x99 /r"/"RVM" + // Pos:2963 Instruction:"VFMADD132SS Vdq,Hdq,Wss" Encoding:"vex m:2 p:1 l:i w:0 0x99 /r"/"RVM" { .Instruction = ND_INS_VFMADD132SS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1114, + .Mnemonic = 1145, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -81587,6 +85680,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -81601,12 +85695,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2923 Instruction:"VFMADD213NEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16" Encoding:"evex m:6 p:0 l:x w:0 0xA8 /r"/"RAVM" + // Pos:2964 Instruction:"VFMADD213NEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16" Encoding:"evex m:6 p:0 l:x w:0 0xA8 /r"/"RAVM" { .Instruction = ND_INS_VFMADD213NEPBF16, .Category = ND_CAT_AVX10BF16, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1115, + .Mnemonic = 1146, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -81615,6 +85709,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -81630,12 +85725,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2924 Instruction:"VFMADD213PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er}" Encoding:"evex m:2 p:1 l:x w:1 0xA8 /r"/"RAVM" + // Pos:2965 Instruction:"VFMADD213PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er}" Encoding:"evex m:2 p:1 l:x w:1 0xA8 /r"/"RAVM" { .Instruction = ND_INS_VFMADD213PD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1116, + .Mnemonic = 1147, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -81644,6 +85739,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -81659,12 +85755,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2925 Instruction:"VFMADD213PD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:1 0xA8 /r"/"RVM" + // Pos:2966 Instruction:"VFMADD213PD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:1 0xA8 /r"/"RVM" { .Instruction = ND_INS_VFMADD213PD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1116, + .Mnemonic = 1147, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -81673,6 +85769,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -81687,12 +85784,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2926 Instruction:"VFMADD213PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er}" Encoding:"evex m:6 p:1 l:x w:0 0xA8 /r"/"RAVM" + // Pos:2967 Instruction:"VFMADD213PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er}" Encoding:"evex m:6 p:1 l:x w:0 0xA8 /r"/"RAVM" { .Instruction = ND_INS_VFMADD213PH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1117, + .Mnemonic = 1148, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -81701,6 +85798,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -81716,12 +85814,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2927 Instruction:"VFMADD213PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er}" Encoding:"evex m:2 p:1 l:x w:0 0xA8 /r"/"RAVM" + // Pos:2968 Instruction:"VFMADD213PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er}" Encoding:"evex m:2 p:1 l:x w:0 0xA8 /r"/"RAVM" { .Instruction = ND_INS_VFMADD213PS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1118, + .Mnemonic = 1149, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -81730,6 +85828,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -81745,12 +85844,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2928 Instruction:"VFMADD213PS Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0xA8 /r"/"RVM" + // Pos:2969 Instruction:"VFMADD213PS Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0xA8 /r"/"RVM" { .Instruction = ND_INS_VFMADD213PS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1118, + .Mnemonic = 1149, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -81759,6 +85858,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -81773,12 +85873,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2929 Instruction:"VFMADD213SD Vdq{K}{z},aKq,Hdq,Wsd{er}" Encoding:"evex m:2 p:1 l:i w:1 0xA9 /r"/"RAVM" + // Pos:2970 Instruction:"VFMADD213SD Vdq{K}{z},aKq,Hdq,Wsd{er}" Encoding:"evex m:2 p:1 l:i w:1 0xA9 /r"/"RAVM" { .Instruction = ND_INS_VFMADD213SD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1119, + .Mnemonic = 1150, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -81787,6 +85887,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -81802,12 +85903,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2930 Instruction:"VFMADD213SD Vdq,Hdq,Wsd" Encoding:"vex m:2 p:1 l:i w:1 0xA9 /r"/"RVM" + // Pos:2971 Instruction:"VFMADD213SD Vdq,Hdq,Wsd" Encoding:"vex m:2 p:1 l:i w:1 0xA9 /r"/"RVM" { .Instruction = ND_INS_VFMADD213SD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1119, + .Mnemonic = 1150, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -81816,6 +85917,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -81830,12 +85932,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2931 Instruction:"VFMADD213SH Vdq{K}{z},aKq,Hdq,Wsh{er}" Encoding:"evex m:6 p:1 l:i w:0 0xA9 /r"/"RAVM" + // Pos:2972 Instruction:"VFMADD213SH Vdq{K}{z},aKq,Hdq,Wsh{er}" Encoding:"evex m:6 p:1 l:i w:0 0xA9 /r"/"RAVM" { .Instruction = ND_INS_VFMADD213SH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1120, + .Mnemonic = 1151, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -81844,6 +85946,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -81859,12 +85962,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2932 Instruction:"VFMADD213SS Vdq{K}{z},aKq,Hdq,Wss{er}" Encoding:"evex m:2 p:1 l:i w:0 0xA9 /r"/"RAVM" + // Pos:2973 Instruction:"VFMADD213SS Vdq{K}{z},aKq,Hdq,Wss{er}" Encoding:"evex m:2 p:1 l:i w:0 0xA9 /r"/"RAVM" { .Instruction = ND_INS_VFMADD213SS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1121, + .Mnemonic = 1152, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -81873,6 +85976,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -81888,12 +85992,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2933 Instruction:"VFMADD213SS Vdq,Hdq,Wss" Encoding:"vex m:2 p:1 l:i w:0 0xA9 /r"/"RVM" + // Pos:2974 Instruction:"VFMADD213SS Vdq,Hdq,Wss" Encoding:"vex m:2 p:1 l:i w:0 0xA9 /r"/"RVM" { .Instruction = ND_INS_VFMADD213SS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1121, + .Mnemonic = 1152, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -81902,6 +86006,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -81916,12 +86021,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2934 Instruction:"VFMADD231NEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16" Encoding:"evex m:6 p:0 l:x w:0 0xB8 /r"/"RAVM" + // Pos:2975 Instruction:"VFMADD231NEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16" Encoding:"evex m:6 p:0 l:x w:0 0xB8 /r"/"RAVM" { .Instruction = ND_INS_VFMADD231NEPBF16, .Category = ND_CAT_AVX10BF16, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1122, + .Mnemonic = 1153, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -81930,6 +86035,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -81945,12 +86051,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2935 Instruction:"VFMADD231PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er}" Encoding:"evex m:2 p:1 l:x w:1 0xB8 /r"/"RAVM" + // Pos:2976 Instruction:"VFMADD231PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er}" Encoding:"evex m:2 p:1 l:x w:1 0xB8 /r"/"RAVM" { .Instruction = ND_INS_VFMADD231PD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1123, + .Mnemonic = 1154, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -81959,6 +86065,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -81974,12 +86081,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2936 Instruction:"VFMADD231PD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:1 0xB8 /r"/"RVM" + // Pos:2977 Instruction:"VFMADD231PD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:1 0xB8 /r"/"RVM" { .Instruction = ND_INS_VFMADD231PD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1123, + .Mnemonic = 1154, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -81988,6 +86095,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -82002,12 +86110,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2937 Instruction:"VFMADD231PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er}" Encoding:"evex m:6 p:1 l:x w:0 0xB8 /r"/"RAVM" + // Pos:2978 Instruction:"VFMADD231PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er}" Encoding:"evex m:6 p:1 l:x w:0 0xB8 /r"/"RAVM" { .Instruction = ND_INS_VFMADD231PH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1124, + .Mnemonic = 1155, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -82016,6 +86124,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -82031,12 +86140,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2938 Instruction:"VFMADD231PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er}" Encoding:"evex m:2 p:1 l:x w:0 0xB8 /r"/"RAVM" + // Pos:2979 Instruction:"VFMADD231PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er}" Encoding:"evex m:2 p:1 l:x w:0 0xB8 /r"/"RAVM" { .Instruction = ND_INS_VFMADD231PS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1125, + .Mnemonic = 1156, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -82045,6 +86154,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -82060,12 +86170,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2939 Instruction:"VFMADD231PS Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0xB8 /r"/"RVM" + // Pos:2980 Instruction:"VFMADD231PS Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0xB8 /r"/"RVM" { .Instruction = ND_INS_VFMADD231PS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1125, + .Mnemonic = 1156, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -82074,6 +86184,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -82088,12 +86199,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2940 Instruction:"VFMADD231SD Vdq{K}{z},aKq,Hdq,Wsd{er}" Encoding:"evex m:2 p:1 l:i w:1 0xB9 /r"/"RAVM" + // Pos:2981 Instruction:"VFMADD231SD Vdq{K}{z},aKq,Hdq,Wsd{er}" Encoding:"evex m:2 p:1 l:i w:1 0xB9 /r"/"RAVM" { .Instruction = ND_INS_VFMADD231SD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1126, + .Mnemonic = 1157, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -82102,6 +86213,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -82117,12 +86229,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2941 Instruction:"VFMADD231SD Vdq,Hdq,Wsd" Encoding:"vex m:2 p:1 l:i w:1 0xB9 /r"/"RVM" + // Pos:2982 Instruction:"VFMADD231SD Vdq,Hdq,Wsd" Encoding:"vex m:2 p:1 l:i w:1 0xB9 /r"/"RVM" { .Instruction = ND_INS_VFMADD231SD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1126, + .Mnemonic = 1157, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -82131,6 +86243,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -82145,12 +86258,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2942 Instruction:"VFMADD231SH Vdq{K}{z},aKq,Hdq,Wsh{er}" Encoding:"evex m:6 p:1 l:i w:0 0xB9 /r"/"RAVM" + // Pos:2983 Instruction:"VFMADD231SH Vdq{K}{z},aKq,Hdq,Wsh{er}" Encoding:"evex m:6 p:1 l:i w:0 0xB9 /r"/"RAVM" { .Instruction = ND_INS_VFMADD231SH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1127, + .Mnemonic = 1158, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -82159,6 +86272,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -82174,12 +86288,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2943 Instruction:"VFMADD231SS Vdq{K}{z},aKq,Hdq,Wss{er}" Encoding:"evex m:2 p:1 l:i w:0 0xB9 /r"/"RAVM" + // Pos:2984 Instruction:"VFMADD231SS Vdq{K}{z},aKq,Hdq,Wss{er}" Encoding:"evex m:2 p:1 l:i w:0 0xB9 /r"/"RAVM" { .Instruction = ND_INS_VFMADD231SS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1128, + .Mnemonic = 1159, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -82188,6 +86302,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -82203,12 +86318,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2944 Instruction:"VFMADD231SS Vdq,Hdq,Wss" Encoding:"vex m:2 p:1 l:i w:0 0xB9 /r"/"RVM" + // Pos:2985 Instruction:"VFMADD231SS Vdq,Hdq,Wss" Encoding:"vex m:2 p:1 l:i w:0 0xB9 /r"/"RVM" { .Instruction = ND_INS_VFMADD231SS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1128, + .Mnemonic = 1159, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -82217,6 +86332,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -82231,12 +86347,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2945 Instruction:"VFMADDCPH Vfv{K}{z},aKq,Hfv,Wfv|B32{er}" Encoding:"evex m:6 p:2 l:x w:0 0x56 /r"/"RAVM" + // Pos:2986 Instruction:"VFMADDCPH Vfv{K}{z},aKq,Hfv,Wfv|B32{er}" Encoding:"evex m:6 p:2 l:x w:0 0x56 /r"/"RAVM" { .Instruction = ND_INS_VFMADDCPH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1129, + .Mnemonic = 1160, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -82245,6 +86361,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4S, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -82260,12 +86377,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2946 Instruction:"VFMADDCSH Vdq{K}{z},aKq,Hdq,Wd{er}" Encoding:"evex m:6 p:2 l:i w:0 0x57 /r"/"RAVM" + // Pos:2987 Instruction:"VFMADDCSH Vdq{K}{z},aKq,Hdq,Wd{er}" Encoding:"evex m:6 p:2 l:i w:0 0x57 /r"/"RAVM" { .Instruction = ND_INS_VFMADDCSH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1130, + .Mnemonic = 1161, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -82274,6 +86391,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E10S, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -82289,12 +86407,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2947 Instruction:"VFMADDPD Vx,Hx,Wx,Lx" Encoding:"vex m:3 p:1 l:x w:0 0x69 /r is4"/"RVML" + // Pos:2988 Instruction:"VFMADDPD Vx,Hx,Wx,Lx" Encoding:"vex m:3 p:1 l:x w:0 0x69 /r is4"/"RVML" { .Instruction = ND_INS_VFMADDPD, .Category = ND_CAT_FMA4, .IsaSet = ND_SET_FMA4, - .Mnemonic = 1131, + .Mnemonic = 1162, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -82303,6 +86421,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -82318,12 +86437,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2948 Instruction:"VFMADDPD Vx,Hx,Lx,Wx" Encoding:"vex m:3 p:1 l:x w:1 0x69 /r is4"/"RVLM" + // Pos:2989 Instruction:"VFMADDPD Vx,Hx,Lx,Wx" Encoding:"vex m:3 p:1 l:x w:1 0x69 /r is4"/"RVLM" { .Instruction = ND_INS_VFMADDPD, .Category = ND_CAT_FMA4, .IsaSet = ND_SET_FMA4, - .Mnemonic = 1131, + .Mnemonic = 1162, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -82332,6 +86451,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -82347,12 +86467,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2949 Instruction:"VFMADDPS Vx,Hx,Wx,Lx" Encoding:"vex m:3 p:1 l:x w:0 0x68 /r is4"/"RVML" + // Pos:2990 Instruction:"VFMADDPS Vx,Hx,Wx,Lx" Encoding:"vex m:3 p:1 l:x w:0 0x68 /r is4"/"RVML" { .Instruction = ND_INS_VFMADDPS, .Category = ND_CAT_FMA4, .IsaSet = ND_SET_FMA4, - .Mnemonic = 1132, + .Mnemonic = 1163, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -82361,6 +86481,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -82376,12 +86497,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2950 Instruction:"VFMADDPS Vx,Hx,Lx,Wx" Encoding:"vex m:3 p:1 l:x w:1 0x68 /r is4"/"RVLM" + // Pos:2991 Instruction:"VFMADDPS Vx,Hx,Lx,Wx" Encoding:"vex m:3 p:1 l:x w:1 0x68 /r is4"/"RVLM" { .Instruction = ND_INS_VFMADDPS, .Category = ND_CAT_FMA4, .IsaSet = ND_SET_FMA4, - .Mnemonic = 1132, + .Mnemonic = 1163, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -82390,6 +86511,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -82405,12 +86527,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2951 Instruction:"VFMADDSD Vdq,Hdq,Wsd,Ldq" Encoding:"vex m:3 p:1 l:x w:0 0x6B /r is4"/"RVML" + // Pos:2992 Instruction:"VFMADDSD Vdq,Hdq,Wsd,Ldq" Encoding:"vex m:3 p:1 l:x w:0 0x6B /r is4"/"RVML" { .Instruction = ND_INS_VFMADDSD, .Category = ND_CAT_FMA4, .IsaSet = ND_SET_FMA4, - .Mnemonic = 1133, + .Mnemonic = 1164, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -82419,6 +86541,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -82434,12 +86557,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2952 Instruction:"VFMADDSD Vdq,Hdq,Ldq,Wsd" Encoding:"vex m:3 p:1 l:x w:1 0x6B /r is4"/"RVLM" + // Pos:2993 Instruction:"VFMADDSD Vdq,Hdq,Ldq,Wsd" Encoding:"vex m:3 p:1 l:x w:1 0x6B /r is4"/"RVLM" { .Instruction = ND_INS_VFMADDSD, .Category = ND_CAT_FMA4, .IsaSet = ND_SET_FMA4, - .Mnemonic = 1133, + .Mnemonic = 1164, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -82448,6 +86571,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -82463,12 +86587,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2953 Instruction:"VFMADDSS Vdq,Hdq,Wss,Ldq" Encoding:"vex m:3 p:1 l:x w:0 0x6A /r is4"/"RVML" + // Pos:2994 Instruction:"VFMADDSS Vdq,Hdq,Wss,Ldq" Encoding:"vex m:3 p:1 l:x w:0 0x6A /r is4"/"RVML" { .Instruction = ND_INS_VFMADDSS, .Category = ND_CAT_FMA4, .IsaSet = ND_SET_FMA4, - .Mnemonic = 1134, + .Mnemonic = 1165, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -82477,6 +86601,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -82492,12 +86617,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2954 Instruction:"VFMADDSS Vdq,Hdq,Ldq,Wss" Encoding:"vex m:3 p:1 l:x w:1 0x6A /r is4"/"RVLM" + // Pos:2995 Instruction:"VFMADDSS Vdq,Hdq,Ldq,Wss" Encoding:"vex m:3 p:1 l:x w:1 0x6A /r is4"/"RVLM" { .Instruction = ND_INS_VFMADDSS, .Category = ND_CAT_FMA4, .IsaSet = ND_SET_FMA4, - .Mnemonic = 1134, + .Mnemonic = 1165, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -82506,6 +86631,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -82521,12 +86647,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2955 Instruction:"VFMADDSUB132PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er}" Encoding:"evex m:2 p:1 l:x w:1 0x96 /r"/"RAVM" + // Pos:2996 Instruction:"VFMADDSUB132PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er}" Encoding:"evex m:2 p:1 l:x w:1 0x96 /r"/"RAVM" { .Instruction = ND_INS_VFMADDSUB132PD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1135, + .Mnemonic = 1166, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -82535,6 +86661,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -82550,12 +86677,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2956 Instruction:"VFMADDSUB132PD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:1 0x96 /r"/"RVM" + // Pos:2997 Instruction:"VFMADDSUB132PD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:1 0x96 /r"/"RVM" { .Instruction = ND_INS_VFMADDSUB132PD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1135, + .Mnemonic = 1166, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -82564,6 +86691,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -82578,12 +86706,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2957 Instruction:"VFMADDSUB132PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er}" Encoding:"evex m:6 p:1 l:x w:0 0x96 /r"/"RAVM" + // Pos:2998 Instruction:"VFMADDSUB132PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er}" Encoding:"evex m:6 p:1 l:x w:0 0x96 /r"/"RAVM" { .Instruction = ND_INS_VFMADDSUB132PH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1136, + .Mnemonic = 1167, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -82592,6 +86720,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -82607,12 +86736,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2958 Instruction:"VFMADDSUB132PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er}" Encoding:"evex m:2 p:1 l:x w:0 0x96 /r"/"RAVM" + // Pos:2999 Instruction:"VFMADDSUB132PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er}" Encoding:"evex m:2 p:1 l:x w:0 0x96 /r"/"RAVM" { .Instruction = ND_INS_VFMADDSUB132PS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1137, + .Mnemonic = 1168, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -82621,6 +86750,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -82636,12 +86766,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2959 Instruction:"VFMADDSUB132PS Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0x96 /r"/"RVM" + // Pos:3000 Instruction:"VFMADDSUB132PS Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0x96 /r"/"RVM" { .Instruction = ND_INS_VFMADDSUB132PS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1137, + .Mnemonic = 1168, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -82650,6 +86780,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -82664,12 +86795,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2960 Instruction:"VFMADDSUB213PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er}" Encoding:"evex m:2 p:1 l:x w:1 0xA6 /r"/"RAVM" + // Pos:3001 Instruction:"VFMADDSUB213PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er}" Encoding:"evex m:2 p:1 l:x w:1 0xA6 /r"/"RAVM" { .Instruction = ND_INS_VFMADDSUB213PD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1138, + .Mnemonic = 1169, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -82678,6 +86809,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -82693,12 +86825,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2961 Instruction:"VFMADDSUB213PD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:1 0xA6 /r"/"RVM" + // Pos:3002 Instruction:"VFMADDSUB213PD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:1 0xA6 /r"/"RVM" { .Instruction = ND_INS_VFMADDSUB213PD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1138, + .Mnemonic = 1169, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -82707,6 +86839,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -82721,12 +86854,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2962 Instruction:"VFMADDSUB213PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er}" Encoding:"evex m:6 p:1 l:x w:0 0xA6 /r"/"RAVM" + // Pos:3003 Instruction:"VFMADDSUB213PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er}" Encoding:"evex m:6 p:1 l:x w:0 0xA6 /r"/"RAVM" { .Instruction = ND_INS_VFMADDSUB213PH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1139, + .Mnemonic = 1170, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -82735,6 +86868,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -82750,12 +86884,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2963 Instruction:"VFMADDSUB213PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er}" Encoding:"evex m:2 p:1 l:x w:0 0xA6 /r"/"RAVM" + // Pos:3004 Instruction:"VFMADDSUB213PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er}" Encoding:"evex m:2 p:1 l:x w:0 0xA6 /r"/"RAVM" { .Instruction = ND_INS_VFMADDSUB213PS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1140, + .Mnemonic = 1171, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -82764,6 +86898,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -82779,12 +86914,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2964 Instruction:"VFMADDSUB213PS Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0xA6 /r"/"RVM" + // Pos:3005 Instruction:"VFMADDSUB213PS Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0xA6 /r"/"RVM" { .Instruction = ND_INS_VFMADDSUB213PS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1140, + .Mnemonic = 1171, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -82793,6 +86928,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -82807,12 +86943,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2965 Instruction:"VFMADDSUB231PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er}" Encoding:"evex m:2 p:1 l:x w:1 0xB6 /r"/"RAVM" + // Pos:3006 Instruction:"VFMADDSUB231PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er}" Encoding:"evex m:2 p:1 l:x w:1 0xB6 /r"/"RAVM" { .Instruction = ND_INS_VFMADDSUB231PD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1141, + .Mnemonic = 1172, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -82821,6 +86957,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -82836,12 +86973,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2966 Instruction:"VFMADDSUB231PD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:1 0xB6 /r"/"RVM" + // Pos:3007 Instruction:"VFMADDSUB231PD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:1 0xB6 /r"/"RVM" { .Instruction = ND_INS_VFMADDSUB231PD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1141, + .Mnemonic = 1172, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -82850,6 +86987,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -82864,12 +87002,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2967 Instruction:"VFMADDSUB231PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er}" Encoding:"evex m:6 p:1 l:x w:0 0xB6 /r"/"RAVM" + // Pos:3008 Instruction:"VFMADDSUB231PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er}" Encoding:"evex m:6 p:1 l:x w:0 0xB6 /r"/"RAVM" { .Instruction = ND_INS_VFMADDSUB231PH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1142, + .Mnemonic = 1173, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -82878,6 +87016,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -82893,12 +87032,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2968 Instruction:"VFMADDSUB231PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er}" Encoding:"evex m:2 p:1 l:x w:0 0xB6 /r"/"RAVM" + // Pos:3009 Instruction:"VFMADDSUB231PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er}" Encoding:"evex m:2 p:1 l:x w:0 0xB6 /r"/"RAVM" { .Instruction = ND_INS_VFMADDSUB231PS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1143, + .Mnemonic = 1174, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -82907,6 +87046,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -82922,12 +87062,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2969 Instruction:"VFMADDSUB231PS Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0xB6 /r"/"RVM" + // Pos:3010 Instruction:"VFMADDSUB231PS Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0xB6 /r"/"RVM" { .Instruction = ND_INS_VFMADDSUB231PS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1143, + .Mnemonic = 1174, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -82936,6 +87076,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -82950,12 +87091,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2970 Instruction:"VFMADDSUBPD Vx,Hx,Wx,Lx" Encoding:"vex m:3 p:1 l:x w:0 0x5D /r is4"/"RVML" + // Pos:3011 Instruction:"VFMADDSUBPD Vx,Hx,Wx,Lx" Encoding:"vex m:3 p:1 l:x w:0 0x5D /r is4"/"RVML" { .Instruction = ND_INS_VFMADDSUBPD, .Category = ND_CAT_FMA4, .IsaSet = ND_SET_FMA4, - .Mnemonic = 1144, + .Mnemonic = 1175, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -82964,6 +87105,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -82979,12 +87121,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2971 Instruction:"VFMADDSUBPD Vx,Hx,Lx,Wx" Encoding:"vex m:3 p:1 l:x w:1 0x5D /r is4"/"RVLM" + // Pos:3012 Instruction:"VFMADDSUBPD Vx,Hx,Lx,Wx" Encoding:"vex m:3 p:1 l:x w:1 0x5D /r is4"/"RVLM" { .Instruction = ND_INS_VFMADDSUBPD, .Category = ND_CAT_FMA4, .IsaSet = ND_SET_FMA4, - .Mnemonic = 1144, + .Mnemonic = 1175, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -82993,6 +87135,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -83008,12 +87151,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2972 Instruction:"VFMADDSUBPS Vx,Hx,Wx,Lx" Encoding:"vex m:3 p:1 l:x w:0 0x5C /r is4"/"RVML" + // Pos:3013 Instruction:"VFMADDSUBPS Vx,Hx,Wx,Lx" Encoding:"vex m:3 p:1 l:x w:0 0x5C /r is4"/"RVML" { .Instruction = ND_INS_VFMADDSUBPS, .Category = ND_CAT_FMA4, .IsaSet = ND_SET_FMA4, - .Mnemonic = 1145, + .Mnemonic = 1176, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -83022,6 +87165,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -83037,12 +87181,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2973 Instruction:"VFMADDSUBPS Vx,Hx,Lx,Wx" Encoding:"vex m:3 p:1 l:x w:1 0x5C /r is4"/"RVLM" + // Pos:3014 Instruction:"VFMADDSUBPS Vx,Hx,Lx,Wx" Encoding:"vex m:3 p:1 l:x w:1 0x5C /r is4"/"RVLM" { .Instruction = ND_INS_VFMADDSUBPS, .Category = ND_CAT_FMA4, .IsaSet = ND_SET_FMA4, - .Mnemonic = 1145, + .Mnemonic = 1176, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -83051,6 +87195,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -83066,12 +87211,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2974 Instruction:"VFMSUB132NEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16" Encoding:"evex m:6 p:0 l:x w:0 0x9A /r"/"RAVM" + // Pos:3015 Instruction:"VFMSUB132NEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16" Encoding:"evex m:6 p:0 l:x w:0 0x9A /r"/"RAVM" { .Instruction = ND_INS_VFMSUB132NEPBF16, .Category = ND_CAT_AVX10BF16, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1146, + .Mnemonic = 1177, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -83080,6 +87225,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -83095,12 +87241,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2975 Instruction:"VFMSUB132PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er}" Encoding:"evex m:2 p:1 l:x w:1 0x9A /r"/"RAVM" + // Pos:3016 Instruction:"VFMSUB132PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er}" Encoding:"evex m:2 p:1 l:x w:1 0x9A /r"/"RAVM" { .Instruction = ND_INS_VFMSUB132PD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1147, + .Mnemonic = 1178, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -83109,6 +87255,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -83124,12 +87271,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2976 Instruction:"VFMSUB132PD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:1 0x9A /r"/"RVM" + // Pos:3017 Instruction:"VFMSUB132PD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:1 0x9A /r"/"RVM" { .Instruction = ND_INS_VFMSUB132PD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1147, + .Mnemonic = 1178, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -83138,6 +87285,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -83152,12 +87300,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2977 Instruction:"VFMSUB132PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er}" Encoding:"evex m:6 p:1 l:x w:0 0x9A /r"/"RAVM" + // Pos:3018 Instruction:"VFMSUB132PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er}" Encoding:"evex m:6 p:1 l:x w:0 0x9A /r"/"RAVM" { .Instruction = ND_INS_VFMSUB132PH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1148, + .Mnemonic = 1179, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -83166,6 +87314,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -83181,12 +87330,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2978 Instruction:"VFMSUB132PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er}" Encoding:"evex m:2 p:1 l:x w:0 0x9A /r"/"RAVM" + // Pos:3019 Instruction:"VFMSUB132PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er}" Encoding:"evex m:2 p:1 l:x w:0 0x9A /r"/"RAVM" { .Instruction = ND_INS_VFMSUB132PS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1149, + .Mnemonic = 1180, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -83195,6 +87344,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -83210,12 +87360,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2979 Instruction:"VFMSUB132PS Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0x9A /r"/"RVM" + // Pos:3020 Instruction:"VFMSUB132PS Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0x9A /r"/"RVM" { .Instruction = ND_INS_VFMSUB132PS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1149, + .Mnemonic = 1180, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -83224,6 +87374,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -83238,12 +87389,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2980 Instruction:"VFMSUB132SD Vdq{K}{z},aKq,Hdq,Wsd{er}" Encoding:"evex m:2 p:1 l:i w:1 0x9B /r"/"RAVM" + // Pos:3021 Instruction:"VFMSUB132SD Vdq{K}{z},aKq,Hdq,Wsd{er}" Encoding:"evex m:2 p:1 l:i w:1 0x9B /r"/"RAVM" { .Instruction = ND_INS_VFMSUB132SD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1150, + .Mnemonic = 1181, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -83252,6 +87403,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -83267,12 +87419,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2981 Instruction:"VFMSUB132SD Vdq,Hdq,Wsd" Encoding:"vex m:2 p:1 l:i w:1 0x9B /r"/"RVM" + // Pos:3022 Instruction:"VFMSUB132SD Vdq,Hdq,Wsd" Encoding:"vex m:2 p:1 l:i w:1 0x9B /r"/"RVM" { .Instruction = ND_INS_VFMSUB132SD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1150, + .Mnemonic = 1181, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -83281,6 +87433,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -83295,12 +87448,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2982 Instruction:"VFMSUB132SH Vdq{K}{z},aKq,Hdq,Wsh{er}" Encoding:"evex m:6 p:1 l:i w:0 0x9B /r"/"RAVM" + // Pos:3023 Instruction:"VFMSUB132SH Vdq{K}{z},aKq,Hdq,Wsh{er}" Encoding:"evex m:6 p:1 l:i w:0 0x9B /r"/"RAVM" { .Instruction = ND_INS_VFMSUB132SH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1151, + .Mnemonic = 1182, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -83309,6 +87462,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -83324,12 +87478,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2983 Instruction:"VFMSUB132SS Vdq{K}{z},aKq,Hdq,Wss{er}" Encoding:"evex m:2 p:1 l:i w:0 0x9B /r"/"RAVM" + // Pos:3024 Instruction:"VFMSUB132SS Vdq{K}{z},aKq,Hdq,Wss{er}" Encoding:"evex m:2 p:1 l:i w:0 0x9B /r"/"RAVM" { .Instruction = ND_INS_VFMSUB132SS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1152, + .Mnemonic = 1183, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -83338,6 +87492,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -83353,12 +87508,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2984 Instruction:"VFMSUB132SS Vdq,Hdq,Wss" Encoding:"vex m:2 p:1 l:i w:0 0x9B /r"/"RVM" + // Pos:3025 Instruction:"VFMSUB132SS Vdq,Hdq,Wss" Encoding:"vex m:2 p:1 l:i w:0 0x9B /r"/"RVM" { .Instruction = ND_INS_VFMSUB132SS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1152, + .Mnemonic = 1183, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -83367,6 +87522,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -83381,12 +87537,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2985 Instruction:"VFMSUB213NEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16" Encoding:"evex m:6 p:0 l:x w:0 0xAA /r"/"RAVM" + // Pos:3026 Instruction:"VFMSUB213NEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16" Encoding:"evex m:6 p:0 l:x w:0 0xAA /r"/"RAVM" { .Instruction = ND_INS_VFMSUB213NEPBF16, .Category = ND_CAT_AVX10BF16, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1153, + .Mnemonic = 1184, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -83395,6 +87551,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -83410,12 +87567,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2986 Instruction:"VFMSUB213PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er}" Encoding:"evex m:2 p:1 l:x w:1 0xAA /r"/"RAVM" + // Pos:3027 Instruction:"VFMSUB213PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er}" Encoding:"evex m:2 p:1 l:x w:1 0xAA /r"/"RAVM" { .Instruction = ND_INS_VFMSUB213PD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1154, + .Mnemonic = 1185, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -83424,6 +87581,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -83439,12 +87597,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2987 Instruction:"VFMSUB213PD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:1 0xAA /r"/"RVM" + // Pos:3028 Instruction:"VFMSUB213PD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:1 0xAA /r"/"RVM" { .Instruction = ND_INS_VFMSUB213PD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1154, + .Mnemonic = 1185, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -83453,6 +87611,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -83467,12 +87626,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2988 Instruction:"VFMSUB213PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er}" Encoding:"evex m:6 p:1 l:x w:0 0xAA /r"/"RAVM" + // Pos:3029 Instruction:"VFMSUB213PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er}" Encoding:"evex m:6 p:1 l:x w:0 0xAA /r"/"RAVM" { .Instruction = ND_INS_VFMSUB213PH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1155, + .Mnemonic = 1186, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -83481,6 +87640,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -83496,12 +87656,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2989 Instruction:"VFMSUB213PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er}" Encoding:"evex m:2 p:1 l:x w:0 0xAA /r"/"RAVM" + // Pos:3030 Instruction:"VFMSUB213PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er}" Encoding:"evex m:2 p:1 l:x w:0 0xAA /r"/"RAVM" { .Instruction = ND_INS_VFMSUB213PS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1156, + .Mnemonic = 1187, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -83510,6 +87670,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -83525,12 +87686,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2990 Instruction:"VFMSUB213PS Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0xAA /r"/"RVM" + // Pos:3031 Instruction:"VFMSUB213PS Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0xAA /r"/"RVM" { .Instruction = ND_INS_VFMSUB213PS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1156, + .Mnemonic = 1187, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -83539,6 +87700,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -83553,12 +87715,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2991 Instruction:"VFMSUB213SD Vdq{K}{z},aKq,Hdq,Wsd{er}" Encoding:"evex m:2 p:1 l:i w:1 0xAB /r"/"RAVM" + // Pos:3032 Instruction:"VFMSUB213SD Vdq{K}{z},aKq,Hdq,Wsd{er}" Encoding:"evex m:2 p:1 l:i w:1 0xAB /r"/"RAVM" { .Instruction = ND_INS_VFMSUB213SD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1157, + .Mnemonic = 1188, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -83567,6 +87729,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -83582,12 +87745,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2992 Instruction:"VFMSUB213SD Vdq,Hdq,Wsd" Encoding:"vex m:2 p:1 l:i w:1 0xAB /r"/"RVM" + // Pos:3033 Instruction:"VFMSUB213SD Vdq,Hdq,Wsd" Encoding:"vex m:2 p:1 l:i w:1 0xAB /r"/"RVM" { .Instruction = ND_INS_VFMSUB213SD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1157, + .Mnemonic = 1188, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -83596,6 +87759,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -83610,12 +87774,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2993 Instruction:"VFMSUB213SH Vdq{K}{z},aKq,Hdq,Wsh{er}" Encoding:"evex m:6 p:1 l:i w:0 0xAB /r"/"RAVM" + // Pos:3034 Instruction:"VFMSUB213SH Vdq{K}{z},aKq,Hdq,Wsh{er}" Encoding:"evex m:6 p:1 l:i w:0 0xAB /r"/"RAVM" { .Instruction = ND_INS_VFMSUB213SH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1158, + .Mnemonic = 1189, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -83624,6 +87788,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -83639,12 +87804,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2994 Instruction:"VFMSUB213SS Vdq{K}{z},aKq,Hdq,Wss{er}" Encoding:"evex m:2 p:1 l:i w:0 0xAB /r"/"RAVM" + // Pos:3035 Instruction:"VFMSUB213SS Vdq{K}{z},aKq,Hdq,Wss{er}" Encoding:"evex m:2 p:1 l:i w:0 0xAB /r"/"RAVM" { .Instruction = ND_INS_VFMSUB213SS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1159, + .Mnemonic = 1190, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -83653,6 +87818,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -83668,12 +87834,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2995 Instruction:"VFMSUB213SS Vdq,Hdq,Wss" Encoding:"vex m:2 p:1 l:i w:0 0xAB /r"/"RVM" + // Pos:3036 Instruction:"VFMSUB213SS Vdq,Hdq,Wss" Encoding:"vex m:2 p:1 l:i w:0 0xAB /r"/"RVM" { .Instruction = ND_INS_VFMSUB213SS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1159, + .Mnemonic = 1190, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -83682,6 +87848,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -83696,12 +87863,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2996 Instruction:"VFMSUB231NEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16" Encoding:"evex m:6 p:0 l:x w:0 0xBA /r"/"RAVM" + // Pos:3037 Instruction:"VFMSUB231NEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16" Encoding:"evex m:6 p:0 l:x w:0 0xBA /r"/"RAVM" { .Instruction = ND_INS_VFMSUB231NEPBF16, .Category = ND_CAT_AVX10BF16, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1160, + .Mnemonic = 1191, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -83710,6 +87877,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -83725,12 +87893,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2997 Instruction:"VFMSUB231PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er}" Encoding:"evex m:2 p:1 l:x w:1 0xBA /r"/"RAVM" + // Pos:3038 Instruction:"VFMSUB231PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er}" Encoding:"evex m:2 p:1 l:x w:1 0xBA /r"/"RAVM" { .Instruction = ND_INS_VFMSUB231PD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1161, + .Mnemonic = 1192, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -83739,6 +87907,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -83754,12 +87923,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2998 Instruction:"VFMSUB231PD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:1 0xBA /r"/"RVM" + // Pos:3039 Instruction:"VFMSUB231PD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:1 0xBA /r"/"RVM" { .Instruction = ND_INS_VFMSUB231PD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1161, + .Mnemonic = 1192, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -83768,6 +87937,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -83782,12 +87952,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:2999 Instruction:"VFMSUB231PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er}" Encoding:"evex m:6 p:1 l:x w:0 0xBA /r"/"RAVM" + // Pos:3040 Instruction:"VFMSUB231PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er}" Encoding:"evex m:6 p:1 l:x w:0 0xBA /r"/"RAVM" { .Instruction = ND_INS_VFMSUB231PH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1162, + .Mnemonic = 1193, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -83796,6 +87966,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -83811,12 +87982,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3000 Instruction:"VFMSUB231PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er}" Encoding:"evex m:2 p:1 l:x w:0 0xBA /r"/"RAVM" + // Pos:3041 Instruction:"VFMSUB231PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er}" Encoding:"evex m:2 p:1 l:x w:0 0xBA /r"/"RAVM" { .Instruction = ND_INS_VFMSUB231PS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1163, + .Mnemonic = 1194, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -83825,6 +87996,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -83840,12 +88012,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3001 Instruction:"VFMSUB231PS Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0xBA /r"/"RVM" + // Pos:3042 Instruction:"VFMSUB231PS Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0xBA /r"/"RVM" { .Instruction = ND_INS_VFMSUB231PS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1163, + .Mnemonic = 1194, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -83854,6 +88026,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -83868,12 +88041,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3002 Instruction:"VFMSUB231SD Vdq{K}{z},aKq,Hdq,Wsd{er}" Encoding:"evex m:2 p:1 l:i w:1 0xBB /r"/"RAVM" + // Pos:3043 Instruction:"VFMSUB231SD Vdq{K}{z},aKq,Hdq,Wsd{er}" Encoding:"evex m:2 p:1 l:i w:1 0xBB /r"/"RAVM" { .Instruction = ND_INS_VFMSUB231SD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1164, + .Mnemonic = 1195, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -83882,6 +88055,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -83897,12 +88071,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3003 Instruction:"VFMSUB231SD Vdq,Hdq,Wsd" Encoding:"vex m:2 p:1 l:i w:1 0xBB /r"/"RVM" + // Pos:3044 Instruction:"VFMSUB231SD Vdq,Hdq,Wsd" Encoding:"vex m:2 p:1 l:i w:1 0xBB /r"/"RVM" { .Instruction = ND_INS_VFMSUB231SD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1164, + .Mnemonic = 1195, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -83911,6 +88085,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -83925,12 +88100,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3004 Instruction:"VFMSUB231SH Vdq{K}{z},aKq,Hdq,Wsh{er}" Encoding:"evex m:6 p:1 l:i w:0 0xBB /r"/"RAVM" + // Pos:3045 Instruction:"VFMSUB231SH Vdq{K}{z},aKq,Hdq,Wsh{er}" Encoding:"evex m:6 p:1 l:i w:0 0xBB /r"/"RAVM" { .Instruction = ND_INS_VFMSUB231SH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1165, + .Mnemonic = 1196, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -83939,6 +88114,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -83954,12 +88130,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3005 Instruction:"VFMSUB231SS Vdq{K}{z},aKq,Hdq,Wss{er}" Encoding:"evex m:2 p:1 l:i w:0 0xBB /r"/"RAVM" + // Pos:3046 Instruction:"VFMSUB231SS Vdq{K}{z},aKq,Hdq,Wss{er}" Encoding:"evex m:2 p:1 l:i w:0 0xBB /r"/"RAVM" { .Instruction = ND_INS_VFMSUB231SS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1166, + .Mnemonic = 1197, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -83968,6 +88144,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -83983,12 +88160,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3006 Instruction:"VFMSUB231SS Vdq,Hdq,Wss" Encoding:"vex m:2 p:1 l:i w:0 0xBB /r"/"RVM" + // Pos:3047 Instruction:"VFMSUB231SS Vdq,Hdq,Wss" Encoding:"vex m:2 p:1 l:i w:0 0xBB /r"/"RVM" { .Instruction = ND_INS_VFMSUB231SS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1166, + .Mnemonic = 1197, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -83997,6 +88174,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -84011,12 +88189,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3007 Instruction:"VFMSUBADD132PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er}" Encoding:"evex m:2 p:1 l:x w:1 0x97 /r"/"RAVM" + // Pos:3048 Instruction:"VFMSUBADD132PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er}" Encoding:"evex m:2 p:1 l:x w:1 0x97 /r"/"RAVM" { .Instruction = ND_INS_VFMSUBADD132PD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1167, + .Mnemonic = 1198, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -84025,6 +88203,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -84040,12 +88219,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3008 Instruction:"VFMSUBADD132PD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:1 0x97 /r"/"RVM" + // Pos:3049 Instruction:"VFMSUBADD132PD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:1 0x97 /r"/"RVM" { .Instruction = ND_INS_VFMSUBADD132PD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1167, + .Mnemonic = 1198, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -84054,6 +88233,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -84068,12 +88248,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3009 Instruction:"VFMSUBADD132PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er}" Encoding:"evex m:6 p:1 l:x w:0 0x97 /r"/"RAVM" + // Pos:3050 Instruction:"VFMSUBADD132PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er}" Encoding:"evex m:6 p:1 l:x w:0 0x97 /r"/"RAVM" { .Instruction = ND_INS_VFMSUBADD132PH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1168, + .Mnemonic = 1199, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -84082,6 +88262,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -84097,12 +88278,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3010 Instruction:"VFMSUBADD132PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er}" Encoding:"evex m:2 p:1 l:x w:0 0x97 /r"/"RAVM" + // Pos:3051 Instruction:"VFMSUBADD132PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er}" Encoding:"evex m:2 p:1 l:x w:0 0x97 /r"/"RAVM" { .Instruction = ND_INS_VFMSUBADD132PS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1169, + .Mnemonic = 1200, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -84111,6 +88292,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -84126,12 +88308,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3011 Instruction:"VFMSUBADD132PS Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0x97 /r"/"RVM" + // Pos:3052 Instruction:"VFMSUBADD132PS Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0x97 /r"/"RVM" { .Instruction = ND_INS_VFMSUBADD132PS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1169, + .Mnemonic = 1200, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -84140,6 +88322,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -84154,12 +88337,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3012 Instruction:"VFMSUBADD213PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er}" Encoding:"evex m:2 p:1 l:x w:1 0xA7 /r"/"RAVM" + // Pos:3053 Instruction:"VFMSUBADD213PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er}" Encoding:"evex m:2 p:1 l:x w:1 0xA7 /r"/"RAVM" { .Instruction = ND_INS_VFMSUBADD213PD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1170, + .Mnemonic = 1201, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -84168,6 +88351,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -84183,12 +88367,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3013 Instruction:"VFMSUBADD213PD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:1 0xA7 /r"/"RVM" + // Pos:3054 Instruction:"VFMSUBADD213PD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:1 0xA7 /r"/"RVM" { .Instruction = ND_INS_VFMSUBADD213PD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1170, + .Mnemonic = 1201, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -84197,6 +88381,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -84211,12 +88396,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3014 Instruction:"VFMSUBADD213PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er}" Encoding:"evex m:6 p:1 l:x w:0 0xA7 /r"/"RAVM" + // Pos:3055 Instruction:"VFMSUBADD213PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er}" Encoding:"evex m:6 p:1 l:x w:0 0xA7 /r"/"RAVM" { .Instruction = ND_INS_VFMSUBADD213PH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1171, + .Mnemonic = 1202, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -84225,6 +88410,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -84240,12 +88426,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3015 Instruction:"VFMSUBADD213PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er}" Encoding:"evex m:2 p:1 l:x w:0 0xA7 /r"/"RAVM" + // Pos:3056 Instruction:"VFMSUBADD213PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er}" Encoding:"evex m:2 p:1 l:x w:0 0xA7 /r"/"RAVM" { .Instruction = ND_INS_VFMSUBADD213PS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1172, + .Mnemonic = 1203, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -84254,6 +88440,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -84269,12 +88456,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3016 Instruction:"VFMSUBADD213PS Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0xA7 /r"/"RVM" + // Pos:3057 Instruction:"VFMSUBADD213PS Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0xA7 /r"/"RVM" { .Instruction = ND_INS_VFMSUBADD213PS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1172, + .Mnemonic = 1203, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -84283,6 +88470,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -84297,12 +88485,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3017 Instruction:"VFMSUBADD231PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er}" Encoding:"evex m:2 p:1 l:x w:1 0xB7 /r"/"RAVM" + // Pos:3058 Instruction:"VFMSUBADD231PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er}" Encoding:"evex m:2 p:1 l:x w:1 0xB7 /r"/"RAVM" { .Instruction = ND_INS_VFMSUBADD231PD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1173, + .Mnemonic = 1204, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -84311,6 +88499,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -84326,12 +88515,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3018 Instruction:"VFMSUBADD231PD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:1 0xB7 /r"/"RVM" + // Pos:3059 Instruction:"VFMSUBADD231PD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:1 0xB7 /r"/"RVM" { .Instruction = ND_INS_VFMSUBADD231PD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1173, + .Mnemonic = 1204, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -84340,6 +88529,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -84354,12 +88544,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3019 Instruction:"VFMSUBADD231PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er}" Encoding:"evex m:6 p:1 l:x w:0 0xB7 /r"/"RAVM" + // Pos:3060 Instruction:"VFMSUBADD231PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er}" Encoding:"evex m:6 p:1 l:x w:0 0xB7 /r"/"RAVM" { .Instruction = ND_INS_VFMSUBADD231PH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1174, + .Mnemonic = 1205, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -84368,6 +88558,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -84383,12 +88574,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3020 Instruction:"VFMSUBADD231PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er}" Encoding:"evex m:2 p:1 l:x w:0 0xB7 /r"/"RAVM" + // Pos:3061 Instruction:"VFMSUBADD231PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er}" Encoding:"evex m:2 p:1 l:x w:0 0xB7 /r"/"RAVM" { .Instruction = ND_INS_VFMSUBADD231PS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1175, + .Mnemonic = 1206, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -84397,6 +88588,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -84412,12 +88604,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3021 Instruction:"VFMSUBADD231PS Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0xB7 /r"/"RVM" + // Pos:3062 Instruction:"VFMSUBADD231PS Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0xB7 /r"/"RVM" { .Instruction = ND_INS_VFMSUBADD231PS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1175, + .Mnemonic = 1206, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -84426,6 +88618,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -84440,12 +88633,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3022 Instruction:"VFMSUBADDPD Vx,Hx,Wx,Lx" Encoding:"vex m:3 p:1 l:x w:0 0x5F /r is4"/"RVML" + // Pos:3063 Instruction:"VFMSUBADDPD Vx,Hx,Wx,Lx" Encoding:"vex m:3 p:1 l:x w:0 0x5F /r is4"/"RVML" { .Instruction = ND_INS_VFMSUBADDPD, .Category = ND_CAT_FMA4, .IsaSet = ND_SET_FMA4, - .Mnemonic = 1176, + .Mnemonic = 1207, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -84454,6 +88647,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -84469,12 +88663,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3023 Instruction:"VFMSUBADDPD Vx,Hx,Lx,Wx" Encoding:"vex m:3 p:1 l:x w:1 0x5F /r is4"/"RVLM" + // Pos:3064 Instruction:"VFMSUBADDPD Vx,Hx,Lx,Wx" Encoding:"vex m:3 p:1 l:x w:1 0x5F /r is4"/"RVLM" { .Instruction = ND_INS_VFMSUBADDPD, .Category = ND_CAT_FMA4, .IsaSet = ND_SET_FMA4, - .Mnemonic = 1176, + .Mnemonic = 1207, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -84483,6 +88677,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -84498,12 +88693,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3024 Instruction:"VFMSUBADDPS Vx,Hx,Wx,Lx" Encoding:"vex m:3 p:1 l:x w:0 0x5E /r is4"/"RVML" + // Pos:3065 Instruction:"VFMSUBADDPS Vx,Hx,Wx,Lx" Encoding:"vex m:3 p:1 l:x w:0 0x5E /r is4"/"RVML" { .Instruction = ND_INS_VFMSUBADDPS, .Category = ND_CAT_FMA4, .IsaSet = ND_SET_FMA4, - .Mnemonic = 1177, + .Mnemonic = 1208, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -84512,6 +88707,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -84527,12 +88723,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3025 Instruction:"VFMSUBADDPS Vx,Hx,Lx,Wx" Encoding:"vex m:3 p:1 l:x w:1 0x5E /r is4"/"RVLM" + // Pos:3066 Instruction:"VFMSUBADDPS Vx,Hx,Lx,Wx" Encoding:"vex m:3 p:1 l:x w:1 0x5E /r is4"/"RVLM" { .Instruction = ND_INS_VFMSUBADDPS, .Category = ND_CAT_FMA4, .IsaSet = ND_SET_FMA4, - .Mnemonic = 1177, + .Mnemonic = 1208, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -84541,6 +88737,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -84556,12 +88753,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3026 Instruction:"VFMSUBPD Vx,Hx,Wx,Lx" Encoding:"vex m:3 p:1 l:x w:0 0x6D /r is4"/"RVML" + // Pos:3067 Instruction:"VFMSUBPD Vx,Hx,Wx,Lx" Encoding:"vex m:3 p:1 l:x w:0 0x6D /r is4"/"RVML" { .Instruction = ND_INS_VFMSUBPD, .Category = ND_CAT_FMA4, .IsaSet = ND_SET_FMA4, - .Mnemonic = 1178, + .Mnemonic = 1209, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -84570,6 +88767,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -84585,12 +88783,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3027 Instruction:"VFMSUBPD Vx,Hx,Lx,Wx" Encoding:"vex m:3 p:1 l:x w:1 0x6D /r is4"/"RVLM" + // Pos:3068 Instruction:"VFMSUBPD Vx,Hx,Lx,Wx" Encoding:"vex m:3 p:1 l:x w:1 0x6D /r is4"/"RVLM" { .Instruction = ND_INS_VFMSUBPD, .Category = ND_CAT_FMA4, .IsaSet = ND_SET_FMA4, - .Mnemonic = 1178, + .Mnemonic = 1209, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -84599,6 +88797,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -84614,12 +88813,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3028 Instruction:"VFMSUBPS Vx,Hx,Wx,Lx" Encoding:"vex m:3 p:1 l:x w:0 0x6C /r is4"/"RVML" + // Pos:3069 Instruction:"VFMSUBPS Vx,Hx,Wx,Lx" Encoding:"vex m:3 p:1 l:x w:0 0x6C /r is4"/"RVML" { .Instruction = ND_INS_VFMSUBPS, .Category = ND_CAT_FMA4, .IsaSet = ND_SET_FMA4, - .Mnemonic = 1179, + .Mnemonic = 1210, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -84628,6 +88827,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -84643,12 +88843,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3029 Instruction:"VFMSUBPS Vx,Hx,Lx,Wx" Encoding:"vex m:3 p:1 l:x w:1 0x6C /r is4"/"RVLM" + // Pos:3070 Instruction:"VFMSUBPS Vx,Hx,Lx,Wx" Encoding:"vex m:3 p:1 l:x w:1 0x6C /r is4"/"RVLM" { .Instruction = ND_INS_VFMSUBPS, .Category = ND_CAT_FMA4, .IsaSet = ND_SET_FMA4, - .Mnemonic = 1179, + .Mnemonic = 1210, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -84657,6 +88857,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -84672,12 +88873,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3030 Instruction:"VFMSUBSD Vdq,Hdq,Wsd,Ldq" Encoding:"vex m:3 p:1 l:x w:0 0x6F /r is4"/"RVML" + // Pos:3071 Instruction:"VFMSUBSD Vdq,Hdq,Wsd,Ldq" Encoding:"vex m:3 p:1 l:x w:0 0x6F /r is4"/"RVML" { .Instruction = ND_INS_VFMSUBSD, .Category = ND_CAT_FMA4, .IsaSet = ND_SET_FMA4, - .Mnemonic = 1180, + .Mnemonic = 1211, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -84686,6 +88887,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -84701,12 +88903,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3031 Instruction:"VFMSUBSD Vdq,Hdq,Ldq,Wsd" Encoding:"vex m:3 p:1 l:x w:1 0x6F /r is4"/"RVLM" + // Pos:3072 Instruction:"VFMSUBSD Vdq,Hdq,Ldq,Wsd" Encoding:"vex m:3 p:1 l:x w:1 0x6F /r is4"/"RVLM" { .Instruction = ND_INS_VFMSUBSD, .Category = ND_CAT_FMA4, .IsaSet = ND_SET_FMA4, - .Mnemonic = 1180, + .Mnemonic = 1211, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -84715,6 +88917,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -84730,12 +88933,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3032 Instruction:"VFMSUBSS Vdq,Hdq,Wss,Ldq" Encoding:"vex m:3 p:1 l:x w:0 0x6E /r is4"/"RVML" + // Pos:3073 Instruction:"VFMSUBSS Vdq,Hdq,Wss,Ldq" Encoding:"vex m:3 p:1 l:x w:0 0x6E /r is4"/"RVML" { .Instruction = ND_INS_VFMSUBSS, .Category = ND_CAT_FMA4, .IsaSet = ND_SET_FMA4, - .Mnemonic = 1181, + .Mnemonic = 1212, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -84744,6 +88947,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -84759,12 +88963,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3033 Instruction:"VFMSUBSS Vdq,Hdq,Ldq,Wss" Encoding:"vex m:3 p:1 l:x w:1 0x6E /r is4"/"RVLM" + // Pos:3074 Instruction:"VFMSUBSS Vdq,Hdq,Ldq,Wss" Encoding:"vex m:3 p:1 l:x w:1 0x6E /r is4"/"RVLM" { .Instruction = ND_INS_VFMSUBSS, .Category = ND_CAT_FMA4, .IsaSet = ND_SET_FMA4, - .Mnemonic = 1181, + .Mnemonic = 1212, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -84773,6 +88977,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -84788,12 +88993,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3034 Instruction:"VFMULCPH Vfv{K}{z},aKq,Hfv,Wfv|B32{er}" Encoding:"evex m:6 p:2 l:x w:0 0xD6 /r"/"RAVM" + // Pos:3075 Instruction:"VFMULCPH Vfv{K}{z},aKq,Hfv,Wfv|B32{er}" Encoding:"evex m:6 p:2 l:x w:0 0xD6 /r"/"RAVM" { .Instruction = ND_INS_VFMULCPH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1182, + .Mnemonic = 1213, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -84802,6 +89007,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4S, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -84817,12 +89023,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3035 Instruction:"VFMULCSH Vdq{K}{z},aKq,Hdq,Wd{er}" Encoding:"evex m:6 p:2 l:i w:0 0xD7 /r"/"RAVM" + // Pos:3076 Instruction:"VFMULCSH Vdq{K}{z},aKq,Hdq,Wd{er}" Encoding:"evex m:6 p:2 l:i w:0 0xD7 /r"/"RAVM" { .Instruction = ND_INS_VFMULCSH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1183, + .Mnemonic = 1214, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -84831,6 +89037,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E10S, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -84846,12 +89053,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3036 Instruction:"VFNMADD132NEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16" Encoding:"evex m:6 p:0 l:x w:0 0x9C /r"/"RAVM" + // Pos:3077 Instruction:"VFNMADD132NEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16" Encoding:"evex m:6 p:0 l:x w:0 0x9C /r"/"RAVM" { .Instruction = ND_INS_VFNMADD132NEPBF16, .Category = ND_CAT_AVX10BF16, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1184, + .Mnemonic = 1215, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -84860,6 +89067,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -84875,12 +89083,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3037 Instruction:"VFNMADD132PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er}" Encoding:"evex m:2 p:1 l:x w:1 0x9C /r"/"RAVM" + // Pos:3078 Instruction:"VFNMADD132PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er}" Encoding:"evex m:2 p:1 l:x w:1 0x9C /r"/"RAVM" { .Instruction = ND_INS_VFNMADD132PD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1185, + .Mnemonic = 1216, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -84889,6 +89097,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -84904,12 +89113,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3038 Instruction:"VFNMADD132PD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:1 0x9C /r"/"RVM" + // Pos:3079 Instruction:"VFNMADD132PD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:1 0x9C /r"/"RVM" { .Instruction = ND_INS_VFNMADD132PD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1185, + .Mnemonic = 1216, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -84918,6 +89127,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -84932,12 +89142,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3039 Instruction:"VFNMADD132PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er}" Encoding:"evex m:6 p:1 l:x w:0 0x9C /r"/"RAVM" + // Pos:3080 Instruction:"VFNMADD132PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er}" Encoding:"evex m:6 p:1 l:x w:0 0x9C /r"/"RAVM" { .Instruction = ND_INS_VFNMADD132PH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1186, + .Mnemonic = 1217, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -84946,6 +89156,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -84961,12 +89172,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3040 Instruction:"VFNMADD132PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er}" Encoding:"evex m:2 p:1 l:x w:0 0x9C /r"/"RAVM" + // Pos:3081 Instruction:"VFNMADD132PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er}" Encoding:"evex m:2 p:1 l:x w:0 0x9C /r"/"RAVM" { .Instruction = ND_INS_VFNMADD132PS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1187, + .Mnemonic = 1218, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -84975,6 +89186,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -84990,12 +89202,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3041 Instruction:"VFNMADD132PS Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0x9C /r"/"RVM" + // Pos:3082 Instruction:"VFNMADD132PS Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0x9C /r"/"RVM" { .Instruction = ND_INS_VFNMADD132PS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1187, + .Mnemonic = 1218, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -85004,6 +89216,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -85018,12 +89231,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3042 Instruction:"VFNMADD132SD Vdq{K}{z},aKq,Hdq,Wsd{er}" Encoding:"evex m:2 p:1 l:i w:1 0x9D /r"/"RAVM" + // Pos:3083 Instruction:"VFNMADD132SD Vdq{K}{z},aKq,Hdq,Wsd{er}" Encoding:"evex m:2 p:1 l:i w:1 0x9D /r"/"RAVM" { .Instruction = ND_INS_VFNMADD132SD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1188, + .Mnemonic = 1219, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -85032,6 +89245,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -85047,12 +89261,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3043 Instruction:"VFNMADD132SD Vdq,Hdq,Wsd" Encoding:"vex m:2 p:1 l:i w:1 0x9D /r"/"RVM" + // Pos:3084 Instruction:"VFNMADD132SD Vdq,Hdq,Wsd" Encoding:"vex m:2 p:1 l:i w:1 0x9D /r"/"RVM" { .Instruction = ND_INS_VFNMADD132SD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1188, + .Mnemonic = 1219, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -85061,6 +89275,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -85075,12 +89290,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3044 Instruction:"VFNMADD132SH Vdq{K}{z},aKq,Hdq,Wsh{er}" Encoding:"evex m:6 p:1 l:i w:0 0x9D /r"/"RAVM" + // Pos:3085 Instruction:"VFNMADD132SH Vdq{K}{z},aKq,Hdq,Wsh{er}" Encoding:"evex m:6 p:1 l:i w:0 0x9D /r"/"RAVM" { .Instruction = ND_INS_VFNMADD132SH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1189, + .Mnemonic = 1220, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -85089,6 +89304,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -85104,12 +89320,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3045 Instruction:"VFNMADD132SS Vdq{K}{z},aKq,Hdq,Wss{er}" Encoding:"evex m:2 p:1 l:i w:0 0x9D /r"/"RAVM" + // Pos:3086 Instruction:"VFNMADD132SS Vdq{K}{z},aKq,Hdq,Wss{er}" Encoding:"evex m:2 p:1 l:i w:0 0x9D /r"/"RAVM" { .Instruction = ND_INS_VFNMADD132SS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1190, + .Mnemonic = 1221, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -85118,6 +89334,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -85133,12 +89350,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3046 Instruction:"VFNMADD132SS Vdq,Hdq,Wss" Encoding:"vex m:2 p:1 l:i w:0 0x9D /r"/"RVM" + // Pos:3087 Instruction:"VFNMADD132SS Vdq,Hdq,Wss" Encoding:"vex m:2 p:1 l:i w:0 0x9D /r"/"RVM" { .Instruction = ND_INS_VFNMADD132SS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1190, + .Mnemonic = 1221, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -85147,6 +89364,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -85161,12 +89379,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3047 Instruction:"VFNMADD213NEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16" Encoding:"evex m:6 p:0 l:x w:0 0xAC /r"/"RAVM" + // Pos:3088 Instruction:"VFNMADD213NEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16" Encoding:"evex m:6 p:0 l:x w:0 0xAC /r"/"RAVM" { .Instruction = ND_INS_VFNMADD213NEPBF16, .Category = ND_CAT_AVX10BF16, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1191, + .Mnemonic = 1222, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -85175,6 +89393,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -85190,12 +89409,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3048 Instruction:"VFNMADD213PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er}" Encoding:"evex m:2 p:1 l:x w:1 0xAC /r"/"RAVM" + // Pos:3089 Instruction:"VFNMADD213PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er}" Encoding:"evex m:2 p:1 l:x w:1 0xAC /r"/"RAVM" { .Instruction = ND_INS_VFNMADD213PD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1192, + .Mnemonic = 1223, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -85204,6 +89423,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -85219,12 +89439,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3049 Instruction:"VFNMADD213PD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:1 0xAC /r"/"RVM" + // Pos:3090 Instruction:"VFNMADD213PD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:1 0xAC /r"/"RVM" { .Instruction = ND_INS_VFNMADD213PD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1192, + .Mnemonic = 1223, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -85233,6 +89453,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -85247,12 +89468,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3050 Instruction:"VFNMADD213PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er}" Encoding:"evex m:6 p:1 l:x w:0 0xAC /r"/"RAVM" + // Pos:3091 Instruction:"VFNMADD213PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er}" Encoding:"evex m:6 p:1 l:x w:0 0xAC /r"/"RAVM" { .Instruction = ND_INS_VFNMADD213PH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1193, + .Mnemonic = 1224, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -85261,6 +89482,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -85276,12 +89498,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3051 Instruction:"VFNMADD213PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er}" Encoding:"evex m:2 p:1 l:x w:0 0xAC /r"/"RAVM" + // Pos:3092 Instruction:"VFNMADD213PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er}" Encoding:"evex m:2 p:1 l:x w:0 0xAC /r"/"RAVM" { .Instruction = ND_INS_VFNMADD213PS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1194, + .Mnemonic = 1225, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -85290,6 +89512,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -85305,12 +89528,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3052 Instruction:"VFNMADD213PS Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0xAC /r"/"RVM" + // Pos:3093 Instruction:"VFNMADD213PS Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0xAC /r"/"RVM" { .Instruction = ND_INS_VFNMADD213PS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1194, + .Mnemonic = 1225, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -85319,6 +89542,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -85333,12 +89557,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3053 Instruction:"VFNMADD213SD Vdq{K}{z},aKq,Hdq,Wsd{er}" Encoding:"evex m:2 p:1 l:i w:1 0xAD /r"/"RAVM" + // Pos:3094 Instruction:"VFNMADD213SD Vdq{K}{z},aKq,Hdq,Wsd{er}" Encoding:"evex m:2 p:1 l:i w:1 0xAD /r"/"RAVM" { .Instruction = ND_INS_VFNMADD213SD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1195, + .Mnemonic = 1226, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -85347,6 +89571,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -85362,12 +89587,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3054 Instruction:"VFNMADD213SD Vdq,Hdq,Wsd" Encoding:"vex m:2 p:1 l:i w:1 0xAD /r"/"RVM" + // Pos:3095 Instruction:"VFNMADD213SD Vdq,Hdq,Wsd" Encoding:"vex m:2 p:1 l:i w:1 0xAD /r"/"RVM" { .Instruction = ND_INS_VFNMADD213SD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1195, + .Mnemonic = 1226, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -85376,6 +89601,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -85390,12 +89616,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3055 Instruction:"VFNMADD213SH Vdq{K}{z},aKq,Hdq,Wsh{er}" Encoding:"evex m:6 p:1 l:i w:0 0xAD /r"/"RAVM" + // Pos:3096 Instruction:"VFNMADD213SH Vdq{K}{z},aKq,Hdq,Wsh{er}" Encoding:"evex m:6 p:1 l:i w:0 0xAD /r"/"RAVM" { .Instruction = ND_INS_VFNMADD213SH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1196, + .Mnemonic = 1227, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -85404,6 +89630,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -85419,12 +89646,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3056 Instruction:"VFNMADD213SS Vdq{K}{z},aKq,Hdq,Wss{er}" Encoding:"evex m:2 p:1 l:i w:0 0xAD /r"/"RAVM" + // Pos:3097 Instruction:"VFNMADD213SS Vdq{K}{z},aKq,Hdq,Wss{er}" Encoding:"evex m:2 p:1 l:i w:0 0xAD /r"/"RAVM" { .Instruction = ND_INS_VFNMADD213SS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1197, + .Mnemonic = 1228, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -85433,6 +89660,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -85448,12 +89676,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3057 Instruction:"VFNMADD213SS Vdq,Hdq,Wss" Encoding:"vex m:2 p:1 l:i w:0 0xAD /r"/"RVM" + // Pos:3098 Instruction:"VFNMADD213SS Vdq,Hdq,Wss" Encoding:"vex m:2 p:1 l:i w:0 0xAD /r"/"RVM" { .Instruction = ND_INS_VFNMADD213SS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1197, + .Mnemonic = 1228, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -85462,6 +89690,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -85476,12 +89705,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3058 Instruction:"VFNMADD231NEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16" Encoding:"evex m:6 p:0 l:x w:0 0xBC /r"/"RAVM" + // Pos:3099 Instruction:"VFNMADD231NEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16" Encoding:"evex m:6 p:0 l:x w:0 0xBC /r"/"RAVM" { .Instruction = ND_INS_VFNMADD231NEPBF16, .Category = ND_CAT_AVX10BF16, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1198, + .Mnemonic = 1229, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -85490,6 +89719,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -85505,12 +89735,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3059 Instruction:"VFNMADD231PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er}" Encoding:"evex m:2 p:1 l:x w:1 0xBC /r"/"RAVM" + // Pos:3100 Instruction:"VFNMADD231PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er}" Encoding:"evex m:2 p:1 l:x w:1 0xBC /r"/"RAVM" { .Instruction = ND_INS_VFNMADD231PD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1199, + .Mnemonic = 1230, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -85519,6 +89749,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -85534,12 +89765,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3060 Instruction:"VFNMADD231PD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:1 0xBC /r"/"RVM" + // Pos:3101 Instruction:"VFNMADD231PD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:1 0xBC /r"/"RVM" { .Instruction = ND_INS_VFNMADD231PD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1199, + .Mnemonic = 1230, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -85548,6 +89779,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -85562,12 +89794,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3061 Instruction:"VFNMADD231PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er}" Encoding:"evex m:6 p:1 l:x w:0 0xBC /r"/"RAVM" + // Pos:3102 Instruction:"VFNMADD231PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er}" Encoding:"evex m:6 p:1 l:x w:0 0xBC /r"/"RAVM" { .Instruction = ND_INS_VFNMADD231PH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1200, + .Mnemonic = 1231, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -85576,6 +89808,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -85591,12 +89824,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3062 Instruction:"VFNMADD231PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er}" Encoding:"evex m:2 p:1 l:x w:0 0xBC /r"/"RAVM" + // Pos:3103 Instruction:"VFNMADD231PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er}" Encoding:"evex m:2 p:1 l:x w:0 0xBC /r"/"RAVM" { .Instruction = ND_INS_VFNMADD231PS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1201, + .Mnemonic = 1232, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -85605,6 +89838,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -85620,12 +89854,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3063 Instruction:"VFNMADD231PS Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0xBC /r"/"RVM" + // Pos:3104 Instruction:"VFNMADD231PS Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0xBC /r"/"RVM" { .Instruction = ND_INS_VFNMADD231PS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1201, + .Mnemonic = 1232, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -85634,6 +89868,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -85648,12 +89883,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3064 Instruction:"VFNMADD231SD Vdq{K}{z},aKq,Hdq,Wsd{er}" Encoding:"evex m:2 p:1 l:i w:1 0xBD /r"/"RAVM" + // Pos:3105 Instruction:"VFNMADD231SD Vdq{K}{z},aKq,Hdq,Wsd{er}" Encoding:"evex m:2 p:1 l:i w:1 0xBD /r"/"RAVM" { .Instruction = ND_INS_VFNMADD231SD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1202, + .Mnemonic = 1233, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -85662,6 +89897,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -85677,12 +89913,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3065 Instruction:"VFNMADD231SD Vdq,Hdq,Wsd" Encoding:"vex m:2 p:1 l:i w:1 0xBD /r"/"RVM" + // Pos:3106 Instruction:"VFNMADD231SD Vdq,Hdq,Wsd" Encoding:"vex m:2 p:1 l:i w:1 0xBD /r"/"RVM" { .Instruction = ND_INS_VFNMADD231SD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1202, + .Mnemonic = 1233, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -85691,6 +89927,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -85705,12 +89942,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3066 Instruction:"VFNMADD231SH Vdq{K}{z},aKq,Hdq,Wsh{er}" Encoding:"evex m:6 p:1 l:i w:0 0xBD /r"/"RAVM" + // Pos:3107 Instruction:"VFNMADD231SH Vdq{K}{z},aKq,Hdq,Wsh{er}" Encoding:"evex m:6 p:1 l:i w:0 0xBD /r"/"RAVM" { .Instruction = ND_INS_VFNMADD231SH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1203, + .Mnemonic = 1234, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -85719,6 +89956,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -85734,12 +89972,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3067 Instruction:"VFNMADD231SS Vdq{K}{z},aKq,Hdq,Wss{er}" Encoding:"evex m:2 p:1 l:i w:0 0xBD /r"/"RAVM" + // Pos:3108 Instruction:"VFNMADD231SS Vdq{K}{z},aKq,Hdq,Wss{er}" Encoding:"evex m:2 p:1 l:i w:0 0xBD /r"/"RAVM" { .Instruction = ND_INS_VFNMADD231SS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1204, + .Mnemonic = 1235, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -85748,6 +89986,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -85763,12 +90002,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3068 Instruction:"VFNMADD231SS Vdq,Hdq,Wss" Encoding:"vex m:2 p:1 l:i w:0 0xBD /r"/"RVM" + // Pos:3109 Instruction:"VFNMADD231SS Vdq,Hdq,Wss" Encoding:"vex m:2 p:1 l:i w:0 0xBD /r"/"RVM" { .Instruction = ND_INS_VFNMADD231SS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1204, + .Mnemonic = 1235, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -85777,6 +90016,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -85791,12 +90031,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3069 Instruction:"VFNMADDPD Vx,Hx,Wx,Lx" Encoding:"vex m:3 p:1 l:x w:0 0x79 /r is4"/"RVML" + // Pos:3110 Instruction:"VFNMADDPD Vx,Hx,Wx,Lx" Encoding:"vex m:3 p:1 l:x w:0 0x79 /r is4"/"RVML" { .Instruction = ND_INS_VFNMADDPD, .Category = ND_CAT_FMA4, .IsaSet = ND_SET_FMA4, - .Mnemonic = 1205, + .Mnemonic = 1236, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -85805,6 +90045,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -85820,12 +90061,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3070 Instruction:"VFNMADDPD Vx,Hx,Lx,Wx" Encoding:"vex m:3 p:1 l:x w:1 0x79 /r is4"/"RVLM" + // Pos:3111 Instruction:"VFNMADDPD Vx,Hx,Lx,Wx" Encoding:"vex m:3 p:1 l:x w:1 0x79 /r is4"/"RVLM" { .Instruction = ND_INS_VFNMADDPD, .Category = ND_CAT_FMA4, .IsaSet = ND_SET_FMA4, - .Mnemonic = 1205, + .Mnemonic = 1236, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -85834,6 +90075,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -85849,12 +90091,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3071 Instruction:"VFNMADDPS Vx,Hx,Wx,Lx" Encoding:"vex m:3 p:1 l:x w:0 0x78 /r is4"/"RVML" + // Pos:3112 Instruction:"VFNMADDPS Vx,Hx,Wx,Lx" Encoding:"vex m:3 p:1 l:x w:0 0x78 /r is4"/"RVML" { .Instruction = ND_INS_VFNMADDPS, .Category = ND_CAT_FMA4, .IsaSet = ND_SET_FMA4, - .Mnemonic = 1206, + .Mnemonic = 1237, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -85863,6 +90105,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -85878,12 +90121,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3072 Instruction:"VFNMADDPS Vx,Hx,Lx,Wx" Encoding:"vex m:3 p:1 l:x w:1 0x78 /r is4"/"RVLM" + // Pos:3113 Instruction:"VFNMADDPS Vx,Hx,Lx,Wx" Encoding:"vex m:3 p:1 l:x w:1 0x78 /r is4"/"RVLM" { .Instruction = ND_INS_VFNMADDPS, .Category = ND_CAT_FMA4, .IsaSet = ND_SET_FMA4, - .Mnemonic = 1206, + .Mnemonic = 1237, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -85892,6 +90135,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -85907,12 +90151,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3073 Instruction:"VFNMADDSD Vdq,Hdq,Wsd,Ldq" Encoding:"vex m:3 p:1 l:x w:0 0x7B /r is4"/"RVML" + // Pos:3114 Instruction:"VFNMADDSD Vdq,Hdq,Wsd,Ldq" Encoding:"vex m:3 p:1 l:x w:0 0x7B /r is4"/"RVML" { .Instruction = ND_INS_VFNMADDSD, .Category = ND_CAT_FMA4, .IsaSet = ND_SET_FMA4, - .Mnemonic = 1207, + .Mnemonic = 1238, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -85921,6 +90165,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -85936,12 +90181,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3074 Instruction:"VFNMADDSD Vdq,Hdq,Ldq,Wsd" Encoding:"vex m:3 p:1 l:x w:1 0x7B /r is4"/"RVLM" + // Pos:3115 Instruction:"VFNMADDSD Vdq,Hdq,Ldq,Wsd" Encoding:"vex m:3 p:1 l:x w:1 0x7B /r is4"/"RVLM" { .Instruction = ND_INS_VFNMADDSD, .Category = ND_CAT_FMA4, .IsaSet = ND_SET_FMA4, - .Mnemonic = 1207, + .Mnemonic = 1238, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -85950,6 +90195,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -85965,12 +90211,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3075 Instruction:"VFNMADDSS Vdq,Hdq,Wss,Ldq" Encoding:"vex m:3 p:1 l:x w:0 0x7A /r is4"/"RVML" + // Pos:3116 Instruction:"VFNMADDSS Vdq,Hdq,Wss,Ldq" Encoding:"vex m:3 p:1 l:x w:0 0x7A /r is4"/"RVML" { .Instruction = ND_INS_VFNMADDSS, .Category = ND_CAT_FMA4, .IsaSet = ND_SET_FMA4, - .Mnemonic = 1208, + .Mnemonic = 1239, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -85979,6 +90225,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -85994,12 +90241,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3076 Instruction:"VFNMADDSS Vdq,Hdq,Ldq,Wss" Encoding:"vex m:3 p:1 l:x w:1 0x7A /r is4"/"RVLM" + // Pos:3117 Instruction:"VFNMADDSS Vdq,Hdq,Ldq,Wss" Encoding:"vex m:3 p:1 l:x w:1 0x7A /r is4"/"RVLM" { .Instruction = ND_INS_VFNMADDSS, .Category = ND_CAT_FMA4, .IsaSet = ND_SET_FMA4, - .Mnemonic = 1208, + .Mnemonic = 1239, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -86008,6 +90255,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -86023,12 +90271,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3077 Instruction:"VFNMSUB132NEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16" Encoding:"evex m:6 p:0 l:x w:0 0x9E /r"/"RAVM" + // Pos:3118 Instruction:"VFNMSUB132NEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16" Encoding:"evex m:6 p:0 l:x w:0 0x9E /r"/"RAVM" { .Instruction = ND_INS_VFNMSUB132NEPBF16, .Category = ND_CAT_AVX10BF16, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1209, + .Mnemonic = 1240, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -86037,6 +90285,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -86052,12 +90301,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3078 Instruction:"VFNMSUB132PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er}" Encoding:"evex m:2 p:1 l:x w:1 0x9E /r"/"RAVM" + // Pos:3119 Instruction:"VFNMSUB132PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er}" Encoding:"evex m:2 p:1 l:x w:1 0x9E /r"/"RAVM" { .Instruction = ND_INS_VFNMSUB132PD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1210, + .Mnemonic = 1241, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -86066,6 +90315,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -86081,12 +90331,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3079 Instruction:"VFNMSUB132PD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:1 0x9E /r"/"RVM" + // Pos:3120 Instruction:"VFNMSUB132PD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:1 0x9E /r"/"RVM" { .Instruction = ND_INS_VFNMSUB132PD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1210, + .Mnemonic = 1241, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -86095,6 +90345,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -86109,12 +90360,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3080 Instruction:"VFNMSUB132PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er}" Encoding:"evex m:6 p:1 l:x w:0 0x9E /r"/"RAVM" + // Pos:3121 Instruction:"VFNMSUB132PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er}" Encoding:"evex m:6 p:1 l:x w:0 0x9E /r"/"RAVM" { .Instruction = ND_INS_VFNMSUB132PH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1211, + .Mnemonic = 1242, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -86123,6 +90374,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -86138,12 +90390,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3081 Instruction:"VFNMSUB132PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er}" Encoding:"evex m:2 p:1 l:x w:0 0x9E /r"/"RAVM" + // Pos:3122 Instruction:"VFNMSUB132PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er}" Encoding:"evex m:2 p:1 l:x w:0 0x9E /r"/"RAVM" { .Instruction = ND_INS_VFNMSUB132PS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1212, + .Mnemonic = 1243, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -86152,6 +90404,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -86167,12 +90420,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3082 Instruction:"VFNMSUB132PS Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0x9E /r"/"RVM" + // Pos:3123 Instruction:"VFNMSUB132PS Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0x9E /r"/"RVM" { .Instruction = ND_INS_VFNMSUB132PS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1212, + .Mnemonic = 1243, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -86181,6 +90434,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -86195,12 +90449,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3083 Instruction:"VFNMSUB132SD Vdq{K}{z},aKq,Hdq,Wsd{er}" Encoding:"evex m:2 p:1 l:i w:1 0x9F /r"/"RAVM" + // Pos:3124 Instruction:"VFNMSUB132SD Vdq{K}{z},aKq,Hdq,Wsd{er}" Encoding:"evex m:2 p:1 l:i w:1 0x9F /r"/"RAVM" { .Instruction = ND_INS_VFNMSUB132SD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1213, + .Mnemonic = 1244, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -86209,6 +90463,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -86224,12 +90479,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3084 Instruction:"VFNMSUB132SD Vdq,Hdq,Wsd" Encoding:"vex m:2 p:1 l:i w:1 0x9F /r"/"RVM" + // Pos:3125 Instruction:"VFNMSUB132SD Vdq,Hdq,Wsd" Encoding:"vex m:2 p:1 l:i w:1 0x9F /r"/"RVM" { .Instruction = ND_INS_VFNMSUB132SD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1213, + .Mnemonic = 1244, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -86238,6 +90493,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -86252,12 +90508,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3085 Instruction:"VFNMSUB132SH Vdq{K}{z},aKq,Hdq,Wsh{er}" Encoding:"evex m:6 p:1 l:i w:0 0x9F /r"/"RAVM" + // Pos:3126 Instruction:"VFNMSUB132SH Vdq{K}{z},aKq,Hdq,Wsh{er}" Encoding:"evex m:6 p:1 l:i w:0 0x9F /r"/"RAVM" { .Instruction = ND_INS_VFNMSUB132SH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1214, + .Mnemonic = 1245, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -86266,6 +90522,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -86281,12 +90538,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3086 Instruction:"VFNMSUB132SS Vdq{K}{z},aKq,Hdq,Wss{er}" Encoding:"evex m:2 p:1 l:i w:0 0x9F /r"/"RAVM" + // Pos:3127 Instruction:"VFNMSUB132SS Vdq{K}{z},aKq,Hdq,Wss{er}" Encoding:"evex m:2 p:1 l:i w:0 0x9F /r"/"RAVM" { .Instruction = ND_INS_VFNMSUB132SS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1215, + .Mnemonic = 1246, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -86295,6 +90552,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -86310,12 +90568,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3087 Instruction:"VFNMSUB132SS Vdq,Hdq,Wss" Encoding:"vex m:2 p:1 l:i w:0 0x9F /r"/"RVM" + // Pos:3128 Instruction:"VFNMSUB132SS Vdq,Hdq,Wss" Encoding:"vex m:2 p:1 l:i w:0 0x9F /r"/"RVM" { .Instruction = ND_INS_VFNMSUB132SS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1215, + .Mnemonic = 1246, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -86324,6 +90582,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -86338,12 +90597,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3088 Instruction:"VFNMSUB213NEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16" Encoding:"evex m:6 p:0 l:x w:0 0xAE /r"/"RAVM" + // Pos:3129 Instruction:"VFNMSUB213NEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16" Encoding:"evex m:6 p:0 l:x w:0 0xAE /r"/"RAVM" { .Instruction = ND_INS_VFNMSUB213NEPBF16, .Category = ND_CAT_AVX10BF16, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1216, + .Mnemonic = 1247, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -86352,6 +90611,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -86367,12 +90627,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3089 Instruction:"VFNMSUB213PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er}" Encoding:"evex m:2 p:1 l:x w:1 0xAE /r"/"RAVM" + // Pos:3130 Instruction:"VFNMSUB213PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er}" Encoding:"evex m:2 p:1 l:x w:1 0xAE /r"/"RAVM" { .Instruction = ND_INS_VFNMSUB213PD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1217, + .Mnemonic = 1248, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -86381,6 +90641,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -86396,12 +90657,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3090 Instruction:"VFNMSUB213PD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:1 0xAE /r"/"RVM" + // Pos:3131 Instruction:"VFNMSUB213PD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:1 0xAE /r"/"RVM" { .Instruction = ND_INS_VFNMSUB213PD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1217, + .Mnemonic = 1248, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -86410,6 +90671,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -86424,12 +90686,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3091 Instruction:"VFNMSUB213PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er}" Encoding:"evex m:6 p:1 l:x w:0 0xAE /r"/"RAVM" + // Pos:3132 Instruction:"VFNMSUB213PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er}" Encoding:"evex m:6 p:1 l:x w:0 0xAE /r"/"RAVM" { .Instruction = ND_INS_VFNMSUB213PH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1218, + .Mnemonic = 1249, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -86438,6 +90700,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -86453,12 +90716,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3092 Instruction:"VFNMSUB213PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er}" Encoding:"evex m:2 p:1 l:x w:0 0xAE /r"/"RAVM" + // Pos:3133 Instruction:"VFNMSUB213PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er}" Encoding:"evex m:2 p:1 l:x w:0 0xAE /r"/"RAVM" { .Instruction = ND_INS_VFNMSUB213PS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1219, + .Mnemonic = 1250, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -86467,6 +90730,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -86482,12 +90746,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3093 Instruction:"VFNMSUB213PS Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0xAE /r"/"RVM" + // Pos:3134 Instruction:"VFNMSUB213PS Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0xAE /r"/"RVM" { .Instruction = ND_INS_VFNMSUB213PS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1219, + .Mnemonic = 1250, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -86496,6 +90760,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -86510,12 +90775,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3094 Instruction:"VFNMSUB213SD Vdq{K}{z},aKq,Hdq,Wsd{er}" Encoding:"evex m:2 p:1 l:i w:1 0xAF /r"/"RAVM" + // Pos:3135 Instruction:"VFNMSUB213SD Vdq{K}{z},aKq,Hdq,Wsd{er}" Encoding:"evex m:2 p:1 l:i w:1 0xAF /r"/"RAVM" { .Instruction = ND_INS_VFNMSUB213SD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1220, + .Mnemonic = 1251, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -86524,6 +90789,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -86539,12 +90805,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3095 Instruction:"VFNMSUB213SD Vdq,Hdq,Wsd" Encoding:"vex m:2 p:1 l:i w:1 0xAF /r"/"RVM" + // Pos:3136 Instruction:"VFNMSUB213SD Vdq,Hdq,Wsd" Encoding:"vex m:2 p:1 l:i w:1 0xAF /r"/"RVM" { .Instruction = ND_INS_VFNMSUB213SD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1220, + .Mnemonic = 1251, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -86553,6 +90819,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -86567,12 +90834,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3096 Instruction:"VFNMSUB213SH Vdq{K}{z},aKq,Hdq,Wsh{er}" Encoding:"evex m:6 p:1 l:i w:0 0xAF /r"/"RAVM" + // Pos:3137 Instruction:"VFNMSUB213SH Vdq{K}{z},aKq,Hdq,Wsh{er}" Encoding:"evex m:6 p:1 l:i w:0 0xAF /r"/"RAVM" { .Instruction = ND_INS_VFNMSUB213SH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1221, + .Mnemonic = 1252, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -86581,6 +90848,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -86596,12 +90864,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3097 Instruction:"VFNMSUB213SS Vdq{K}{z},aKq,Hdq,Wss{er}" Encoding:"evex m:2 p:1 l:i w:0 0xAF /r"/"RAVM" + // Pos:3138 Instruction:"VFNMSUB213SS Vdq{K}{z},aKq,Hdq,Wss{er}" Encoding:"evex m:2 p:1 l:i w:0 0xAF /r"/"RAVM" { .Instruction = ND_INS_VFNMSUB213SS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1222, + .Mnemonic = 1253, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -86610,6 +90878,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -86625,12 +90894,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3098 Instruction:"VFNMSUB213SS Vdq,Hdq,Wss" Encoding:"vex m:2 p:1 l:i w:0 0xAF /r"/"RVM" + // Pos:3139 Instruction:"VFNMSUB213SS Vdq,Hdq,Wss" Encoding:"vex m:2 p:1 l:i w:0 0xAF /r"/"RVM" { .Instruction = ND_INS_VFNMSUB213SS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1222, + .Mnemonic = 1253, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -86639,6 +90908,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -86653,12 +90923,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3099 Instruction:"VFNMSUB231NEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16" Encoding:"evex m:6 p:0 l:x w:0 0xBE /r"/"RAVM" + // Pos:3140 Instruction:"VFNMSUB231NEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16" Encoding:"evex m:6 p:0 l:x w:0 0xBE /r"/"RAVM" { .Instruction = ND_INS_VFNMSUB231NEPBF16, .Category = ND_CAT_AVX10BF16, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1223, + .Mnemonic = 1254, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -86667,6 +90937,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -86682,12 +90953,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3100 Instruction:"VFNMSUB231PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er}" Encoding:"evex m:2 p:1 l:x w:1 0xBE /r"/"RAVM" + // Pos:3141 Instruction:"VFNMSUB231PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er}" Encoding:"evex m:2 p:1 l:x w:1 0xBE /r"/"RAVM" { .Instruction = ND_INS_VFNMSUB231PD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1224, + .Mnemonic = 1255, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -86696,6 +90967,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -86711,12 +90983,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3101 Instruction:"VFNMSUB231PD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:1 0xBE /r"/"RVM" + // Pos:3142 Instruction:"VFNMSUB231PD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:1 0xBE /r"/"RVM" { .Instruction = ND_INS_VFNMSUB231PD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1224, + .Mnemonic = 1255, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -86725,6 +90997,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -86739,12 +91012,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3102 Instruction:"VFNMSUB231PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er}" Encoding:"evex m:6 p:1 l:x w:0 0xBE /r"/"RAVM" + // Pos:3143 Instruction:"VFNMSUB231PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er}" Encoding:"evex m:6 p:1 l:x w:0 0xBE /r"/"RAVM" { .Instruction = ND_INS_VFNMSUB231PH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1225, + .Mnemonic = 1256, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -86753,6 +91026,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -86768,12 +91042,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3103 Instruction:"VFNMSUB231PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er}" Encoding:"evex m:2 p:1 l:x w:0 0xBE /r"/"RAVM" + // Pos:3144 Instruction:"VFNMSUB231PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er}" Encoding:"evex m:2 p:1 l:x w:0 0xBE /r"/"RAVM" { .Instruction = ND_INS_VFNMSUB231PS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1226, + .Mnemonic = 1257, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -86782,6 +91056,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -86797,12 +91072,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3104 Instruction:"VFNMSUB231PS Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0xBE /r"/"RVM" + // Pos:3145 Instruction:"VFNMSUB231PS Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0xBE /r"/"RVM" { .Instruction = ND_INS_VFNMSUB231PS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1226, + .Mnemonic = 1257, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -86811,6 +91086,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -86825,12 +91101,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3105 Instruction:"VFNMSUB231SD Vdq{K}{z},aKq,Hdq,Wsd{er}" Encoding:"evex m:2 p:1 l:i w:1 0xBF /r"/"RAVM" + // Pos:3146 Instruction:"VFNMSUB231SD Vdq{K}{z},aKq,Hdq,Wsd{er}" Encoding:"evex m:2 p:1 l:i w:1 0xBF /r"/"RAVM" { .Instruction = ND_INS_VFNMSUB231SD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1227, + .Mnemonic = 1258, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -86839,6 +91115,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -86854,12 +91131,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3106 Instruction:"VFNMSUB231SD Vdq,Hdq,Wsd" Encoding:"vex m:2 p:1 l:i w:1 0xBF /r"/"RVM" + // Pos:3147 Instruction:"VFNMSUB231SD Vdq,Hdq,Wsd" Encoding:"vex m:2 p:1 l:i w:1 0xBF /r"/"RVM" { .Instruction = ND_INS_VFNMSUB231SD, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1227, + .Mnemonic = 1258, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -86868,6 +91145,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -86882,12 +91160,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3107 Instruction:"VFNMSUB231SH Vdq{K}{z},aKq,Hdq,Wsh{er}" Encoding:"evex m:6 p:1 l:i w:0 0xBF /r"/"RAVM" + // Pos:3148 Instruction:"VFNMSUB231SH Vdq{K}{z},aKq,Hdq,Wsh{er}" Encoding:"evex m:6 p:1 l:i w:0 0xBF /r"/"RAVM" { .Instruction = ND_INS_VFNMSUB231SH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1228, + .Mnemonic = 1259, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -86896,6 +91174,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -86911,12 +91190,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3108 Instruction:"VFNMSUB231SS Vdq{K}{z},aKq,Hdq,Wss{er}" Encoding:"evex m:2 p:1 l:i w:0 0xBF /r"/"RAVM" + // Pos:3149 Instruction:"VFNMSUB231SS Vdq{K}{z},aKq,Hdq,Wss{er}" Encoding:"evex m:2 p:1 l:i w:0 0xBF /r"/"RAVM" { .Instruction = ND_INS_VFNMSUB231SS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1229, + .Mnemonic = 1260, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -86925,6 +91204,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -86940,12 +91220,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3109 Instruction:"VFNMSUB231SS Vdq,Hdq,Wss" Encoding:"vex m:2 p:1 l:i w:0 0xBF /r"/"RVM" + // Pos:3150 Instruction:"VFNMSUB231SS Vdq,Hdq,Wss" Encoding:"vex m:2 p:1 l:i w:0 0xBF /r"/"RVM" { .Instruction = ND_INS_VFNMSUB231SS, .Category = ND_CAT_VFMA, .IsaSet = ND_SET_FMA, - .Mnemonic = 1229, + .Mnemonic = 1260, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -86954,6 +91234,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -86968,12 +91249,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3110 Instruction:"VFNMSUBPD Vx,Hx,Wx,Lx" Encoding:"vex m:3 p:1 l:x w:0 0x7D /r is4"/"RVML" + // Pos:3151 Instruction:"VFNMSUBPD Vx,Hx,Wx,Lx" Encoding:"vex m:3 p:1 l:x w:0 0x7D /r is4"/"RVML" { .Instruction = ND_INS_VFNMSUBPD, .Category = ND_CAT_FMA4, .IsaSet = ND_SET_FMA4, - .Mnemonic = 1230, + .Mnemonic = 1261, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -86982,6 +91263,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -86997,12 +91279,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3111 Instruction:"VFNMSUBPD Vx,Hx,Lx,Wx" Encoding:"vex m:3 p:1 l:x w:1 0x7D /r is4"/"RVLM" + // Pos:3152 Instruction:"VFNMSUBPD Vx,Hx,Lx,Wx" Encoding:"vex m:3 p:1 l:x w:1 0x7D /r is4"/"RVLM" { .Instruction = ND_INS_VFNMSUBPD, .Category = ND_CAT_FMA4, .IsaSet = ND_SET_FMA4, - .Mnemonic = 1230, + .Mnemonic = 1261, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -87011,6 +91293,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -87026,12 +91309,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3112 Instruction:"VFNMSUBPS Vx,Hx,Wx,Lx" Encoding:"vex m:3 p:1 l:x w:0 0x7C /r is4"/"RVML" + // Pos:3153 Instruction:"VFNMSUBPS Vx,Hx,Wx,Lx" Encoding:"vex m:3 p:1 l:x w:0 0x7C /r is4"/"RVML" { .Instruction = ND_INS_VFNMSUBPS, .Category = ND_CAT_FMA4, .IsaSet = ND_SET_FMA4, - .Mnemonic = 1231, + .Mnemonic = 1262, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -87040,6 +91323,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -87055,12 +91339,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3113 Instruction:"VFNMSUBPS Vx,Hx,Lx,Wx" Encoding:"vex m:3 p:1 l:x w:1 0x7C /r is4"/"RVLM" + // Pos:3154 Instruction:"VFNMSUBPS Vx,Hx,Lx,Wx" Encoding:"vex m:3 p:1 l:x w:1 0x7C /r is4"/"RVLM" { .Instruction = ND_INS_VFNMSUBPS, .Category = ND_CAT_FMA4, .IsaSet = ND_SET_FMA4, - .Mnemonic = 1231, + .Mnemonic = 1262, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -87069,6 +91353,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -87084,12 +91369,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3114 Instruction:"VFNMSUBSD Vdq,Hdq,Wsd,Ldq" Encoding:"vex m:3 p:1 l:x w:0 0x7F /r is4"/"RVML" + // Pos:3155 Instruction:"VFNMSUBSD Vdq,Hdq,Wsd,Ldq" Encoding:"vex m:3 p:1 l:x w:0 0x7F /r is4"/"RVML" { .Instruction = ND_INS_VFNMSUBSD, .Category = ND_CAT_FMA4, .IsaSet = ND_SET_FMA4, - .Mnemonic = 1232, + .Mnemonic = 1263, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -87098,6 +91383,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -87113,12 +91399,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3115 Instruction:"VFNMSUBSD Vdq,Hdq,Ldq,Wsd" Encoding:"vex m:3 p:1 l:x w:1 0x7F /r is4"/"RVLM" + // Pos:3156 Instruction:"VFNMSUBSD Vdq,Hdq,Ldq,Wsd" Encoding:"vex m:3 p:1 l:x w:1 0x7F /r is4"/"RVLM" { .Instruction = ND_INS_VFNMSUBSD, .Category = ND_CAT_FMA4, .IsaSet = ND_SET_FMA4, - .Mnemonic = 1232, + .Mnemonic = 1263, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -87127,6 +91413,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -87142,12 +91429,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3116 Instruction:"VFNMSUBSS Vdq,Hdq,Wss,Ldq" Encoding:"vex m:3 p:1 l:x w:0 0x7E /r is4"/"RVML" + // Pos:3157 Instruction:"VFNMSUBSS Vdq,Hdq,Wss,Ldq" Encoding:"vex m:3 p:1 l:x w:0 0x7E /r is4"/"RVML" { .Instruction = ND_INS_VFNMSUBSS, .Category = ND_CAT_FMA4, .IsaSet = ND_SET_FMA4, - .Mnemonic = 1233, + .Mnemonic = 1264, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -87156,6 +91443,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -87171,12 +91459,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3117 Instruction:"VFNMSUBSS Vdq,Hdq,Ldq,Wss" Encoding:"vex m:3 p:1 l:x w:1 0x7E /r is4"/"RVLM" + // Pos:3158 Instruction:"VFNMSUBSS Vdq,Hdq,Ldq,Wss" Encoding:"vex m:3 p:1 l:x w:1 0x7E /r is4"/"RVLM" { .Instruction = ND_INS_VFNMSUBSS, .Category = ND_CAT_FMA4, .IsaSet = ND_SET_FMA4, - .Mnemonic = 1233, + .Mnemonic = 1264, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -87185,6 +91473,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -87200,12 +91489,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3118 Instruction:"VFPCLASSPBF16 rKq{K},aKq,Wfv|B16,Ib" Encoding:"evex m:3 p:3 l:x w:0 0x66 /r ib"/"RAMI" + // Pos:3159 Instruction:"VFPCLASSPBF16 rKq{K},aKq,Wfv|B16,Ib" Encoding:"evex m:3 p:3 l:x w:0 0x66 /r ib"/"RAMI" { .Instruction = ND_INS_VFPCLASSPBF16, .Category = ND_CAT_AVX10BF16, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1234, + .Mnemonic = 1265, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_BROADCAST, @@ -87214,6 +91503,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -87229,12 +91519,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3119 Instruction:"VFPCLASSPD rKq{K},aKq,Wfv|B64,Ib" Encoding:"evex m:3 p:1 l:x w:1 0x66 /r ib"/"RAMI" + // Pos:3160 Instruction:"VFPCLASSPD rKq{K},aKq,Wfv|B64,Ib" Encoding:"evex m:3 p:1 l:x w:1 0x66 /r ib"/"RAMI" { .Instruction = ND_INS_VFPCLASSPD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512DQ, - .Mnemonic = 1235, + .Mnemonic = 1266, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_BROADCAST, @@ -87243,6 +91533,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -87258,12 +91549,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3120 Instruction:"VFPCLASSPH rKq{K},aKq,Wfv|B16,Ib" Encoding:"evex m:3 p:0 l:x w:0 0x66 /r ib"/"RAMI" + // Pos:3161 Instruction:"VFPCLASSPH rKq{K},aKq,Wfv|B16,Ib" Encoding:"evex m:3 p:0 l:x w:0 0x66 /r ib"/"RAMI" { .Instruction = ND_INS_VFPCLASSPH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1236, + .Mnemonic = 1267, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_BROADCAST, @@ -87272,6 +91563,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -87287,12 +91579,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3121 Instruction:"VFPCLASSPS rKq{K},aKq,Wfv|B32,Ib" Encoding:"evex m:3 p:1 l:x w:0 0x66 /r ib"/"RAMI" + // Pos:3162 Instruction:"VFPCLASSPS rKq{K},aKq,Wfv|B32,Ib" Encoding:"evex m:3 p:1 l:x w:0 0x66 /r ib"/"RAMI" { .Instruction = ND_INS_VFPCLASSPS, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512DQ, - .Mnemonic = 1237, + .Mnemonic = 1268, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_BROADCAST, @@ -87301,6 +91593,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -87316,12 +91609,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3122 Instruction:"VFPCLASSSD rKq{K},aKq,Wsd,Ib" Encoding:"evex m:3 p:1 l:i w:1 0x67 /r ib"/"RAMI" + // Pos:3163 Instruction:"VFPCLASSSD rKq{K},aKq,Wsd,Ib" Encoding:"evex m:3 p:1 l:i w:1 0x67 /r ib"/"RAMI" { .Instruction = ND_INS_VFPCLASSSD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512DQ, - .Mnemonic = 1238, + .Mnemonic = 1269, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK, @@ -87330,6 +91623,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -87345,12 +91639,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3123 Instruction:"VFPCLASSSH rKq{K},aKq,Wsh,Ib" Encoding:"evex m:3 p:0 l:i w:0 0x67 /r ib"/"RAMI" + // Pos:3164 Instruction:"VFPCLASSSH rKq{K},aKq,Wsh,Ib" Encoding:"evex m:3 p:0 l:i w:0 0x67 /r ib"/"RAMI" { .Instruction = ND_INS_VFPCLASSSH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1239, + .Mnemonic = 1270, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK, @@ -87359,6 +91653,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E10, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -87374,12 +91669,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3124 Instruction:"VFPCLASSSS rKq{K},aKq,Wss,Ib" Encoding:"evex m:3 p:1 l:i w:0 0x67 /r ib"/"RAMI" + // Pos:3165 Instruction:"VFPCLASSSS rKq{K},aKq,Wss,Ib" Encoding:"evex m:3 p:1 l:i w:0 0x67 /r ib"/"RAMI" { .Instruction = ND_INS_VFPCLASSSS, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512DQ, - .Mnemonic = 1240, + .Mnemonic = 1271, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK, @@ -87388,6 +91683,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -87403,12 +91699,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3125 Instruction:"VFRCZPD Vx,Wx" Encoding:"xop m:9 0x81 /r"/"RM" + // Pos:3166 Instruction:"VFRCZPD Vx,Wx" Encoding:"xop m:9 0x81 /r"/"RM" { .Instruction = ND_INS_VFRCZPD, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1241, + .Mnemonic = 1272, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -87417,6 +91713,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -87430,12 +91727,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3126 Instruction:"VFRCZPS Vx,Wx" Encoding:"xop m:9 0x80 /r"/"RM" + // Pos:3167 Instruction:"VFRCZPS Vx,Wx" Encoding:"xop m:9 0x80 /r"/"RM" { .Instruction = ND_INS_VFRCZPS, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1242, + .Mnemonic = 1273, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -87444,6 +91741,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -87457,12 +91755,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3127 Instruction:"VFRCZSD Vdq,Wsd" Encoding:"xop m:9 0x83 /r"/"RM" + // Pos:3168 Instruction:"VFRCZSD Vdq,Wsd" Encoding:"xop m:9 0x83 /r"/"RM" { .Instruction = ND_INS_VFRCZSD, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1243, + .Mnemonic = 1274, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -87471,6 +91769,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -87484,12 +91783,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3128 Instruction:"VFRCZSS Vdq,Wss" Encoding:"xop m:9 0x82 /r"/"RM" + // Pos:3169 Instruction:"VFRCZSS Vdq,Wss" Encoding:"xop m:9 0x82 /r"/"RM" { .Instruction = ND_INS_VFRCZSS, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1244, + .Mnemonic = 1275, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -87498,6 +91797,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -87511,12 +91811,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3129 Instruction:"VGATHERDPD Vfv{K},aKq,Mvm32h" Encoding:"evex m:2 p:1 l:x w:1 0x92 /r:mem vsib"/"RAM" + // Pos:3170 Instruction:"VGATHERDPD Vfv{K},aKq,Mvm32h" Encoding:"evex m:2 p:1 l:x w:1 0x92 /r:mem vsib"/"RAM" { .Instruction = ND_INS_VGATHERDPD, .Category = ND_CAT_GATHER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1245, + .Mnemonic = 1276, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK, @@ -87525,6 +91825,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E12, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -87539,12 +91840,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3130 Instruction:"VGATHERDPD Vx,Mvm32h,Hx" Encoding:"vex m:2 p:1 l:x w:1 0x92 /r:mem vsib"/"RMV" + // Pos:3171 Instruction:"VGATHERDPD Vx,Mvm32h,Hx" Encoding:"vex m:2 p:1 l:x w:1 0x92 /r:mem vsib"/"RMV" { .Instruction = ND_INS_VGATHERDPD, .Category = ND_CAT_AVX2GATHER, .IsaSet = ND_SET_AVX2GATHER, - .Mnemonic = 1245, + .Mnemonic = 1276, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -87553,6 +91854,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_12, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -87567,12 +91869,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3131 Instruction:"VGATHERDPS Vfv{K},aKq,Mvm32n" Encoding:"evex m:2 p:1 l:x w:0 0x92 /r:mem vsib"/"RAM" + // Pos:3172 Instruction:"VGATHERDPS Vfv{K},aKq,Mvm32n" Encoding:"evex m:2 p:1 l:x w:0 0x92 /r:mem vsib"/"RAM" { .Instruction = ND_INS_VGATHERDPS, .Category = ND_CAT_GATHER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1246, + .Mnemonic = 1277, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK, @@ -87581,6 +91883,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E12, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -87595,12 +91898,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3132 Instruction:"VGATHERDPS Vx,Mvm32n,Hx" Encoding:"vex m:2 p:1 l:x w:0 0x92 /r:mem vsib"/"RMV" + // Pos:3173 Instruction:"VGATHERDPS Vx,Mvm32n,Hx" Encoding:"vex m:2 p:1 l:x w:0 0x92 /r:mem vsib"/"RMV" { .Instruction = ND_INS_VGATHERDPS, .Category = ND_CAT_AVX2GATHER, .IsaSet = ND_SET_AVX2GATHER, - .Mnemonic = 1246, + .Mnemonic = 1277, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -87609,6 +91912,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_12, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -87623,12 +91927,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3133 Instruction:"VGATHERPF0DPD Mvm32h{K},aKq" Encoding:"evex m:2 p:1 l:2 w:1 0xC6 /1:mem vsib"/"MA" + // Pos:3174 Instruction:"VGATHERPF0DPD Mvm32h{K},aKq" Encoding:"evex m:2 p:1 l:2 w:1 0xC6 /1:mem vsib"/"MA" { .Instruction = ND_INS_VGATHERPF0DPD, .Category = ND_CAT_GATHER, .IsaSet = ND_SET_AVX512PF, - .Mnemonic = 1247, + .Mnemonic = 1278, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK, @@ -87637,6 +91941,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E12NP, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -87650,12 +91955,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3134 Instruction:"VGATHERPF0DPS Mvm32n{K},aKq" Encoding:"evex m:2 p:1 l:2 w:0 0xC6 /1:mem vsib"/"MA" + // Pos:3175 Instruction:"VGATHERPF0DPS Mvm32n{K},aKq" Encoding:"evex m:2 p:1 l:2 w:0 0xC6 /1:mem vsib"/"MA" { .Instruction = ND_INS_VGATHERPF0DPS, .Category = ND_CAT_GATHER, .IsaSet = ND_SET_AVX512PF, - .Mnemonic = 1248, + .Mnemonic = 1279, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK, @@ -87664,6 +91969,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E12NP, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -87677,12 +91983,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3135 Instruction:"VGATHERPF0QPD Mvm64n{K},aKq" Encoding:"evex m:2 p:1 l:2 w:1 0xC7 /1:mem vsib"/"MA" + // Pos:3176 Instruction:"VGATHERPF0QPD Mvm64n{K},aKq" Encoding:"evex m:2 p:1 l:2 w:1 0xC7 /1:mem vsib"/"MA" { .Instruction = ND_INS_VGATHERPF0QPD, .Category = ND_CAT_GATHER, .IsaSet = ND_SET_AVX512PF, - .Mnemonic = 1249, + .Mnemonic = 1280, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK, @@ -87691,6 +91997,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E12NP, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -87704,12 +92011,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3136 Instruction:"VGATHERPF0QPS Mvm64n{K},aKq" Encoding:"evex m:2 p:1 l:2 w:0 0xC7 /1:mem vsib"/"MA" + // Pos:3177 Instruction:"VGATHERPF0QPS Mvm64n{K},aKq" Encoding:"evex m:2 p:1 l:2 w:0 0xC7 /1:mem vsib"/"MA" { .Instruction = ND_INS_VGATHERPF0QPS, .Category = ND_CAT_GATHER, .IsaSet = ND_SET_AVX512PF, - .Mnemonic = 1250, + .Mnemonic = 1281, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK, @@ -87718,6 +92025,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E12NP, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -87731,12 +92039,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3137 Instruction:"VGATHERPF1DPD Mvm32h{K},aKq" Encoding:"evex m:2 p:1 l:2 w:1 0xC6 /2:mem vsib"/"MA" + // Pos:3178 Instruction:"VGATHERPF1DPD Mvm32h{K},aKq" Encoding:"evex m:2 p:1 l:2 w:1 0xC6 /2:mem vsib"/"MA" { .Instruction = ND_INS_VGATHERPF1DPD, .Category = ND_CAT_GATHER, .IsaSet = ND_SET_AVX512PF, - .Mnemonic = 1251, + .Mnemonic = 1282, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK, @@ -87745,6 +92053,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E12NP, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -87758,12 +92067,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3138 Instruction:"VGATHERPF1DPS Mvm32n{K},aKq" Encoding:"evex m:2 p:1 l:2 w:0 0xC6 /2:mem vsib"/"MA" + // Pos:3179 Instruction:"VGATHERPF1DPS Mvm32n{K},aKq" Encoding:"evex m:2 p:1 l:2 w:0 0xC6 /2:mem vsib"/"MA" { .Instruction = ND_INS_VGATHERPF1DPS, .Category = ND_CAT_GATHER, .IsaSet = ND_SET_AVX512PF, - .Mnemonic = 1252, + .Mnemonic = 1283, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK, @@ -87772,6 +92081,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E12NP, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -87785,12 +92095,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3139 Instruction:"VGATHERPF1QPD Mvm64n{K},aKq" Encoding:"evex m:2 p:1 l:2 w:1 0xC7 /2:mem vsib"/"MA" + // Pos:3180 Instruction:"VGATHERPF1QPD Mvm64n{K},aKq" Encoding:"evex m:2 p:1 l:2 w:1 0xC7 /2:mem vsib"/"MA" { .Instruction = ND_INS_VGATHERPF1QPD, .Category = ND_CAT_GATHER, .IsaSet = ND_SET_AVX512PF, - .Mnemonic = 1253, + .Mnemonic = 1284, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK, @@ -87799,6 +92109,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E12NP, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -87812,12 +92123,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3140 Instruction:"VGATHERPF1QPS Mvm64n{K},aKq" Encoding:"evex m:2 p:1 l:2 w:0 0xC7 /2:mem vsib"/"MA" + // Pos:3181 Instruction:"VGATHERPF1QPS Mvm64n{K},aKq" Encoding:"evex m:2 p:1 l:2 w:0 0xC7 /2:mem vsib"/"MA" { .Instruction = ND_INS_VGATHERPF1QPS, .Category = ND_CAT_GATHER, .IsaSet = ND_SET_AVX512PF, - .Mnemonic = 1254, + .Mnemonic = 1285, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK, @@ -87826,6 +92137,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E12NP, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -87839,12 +92151,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3141 Instruction:"VGATHERQPD Vfv{K},aKq,Mvm64n" Encoding:"evex m:2 p:1 l:x w:1 0x93 /r:mem vsib"/"RAM" + // Pos:3182 Instruction:"VGATHERQPD Vfv{K},aKq,Mvm64n" Encoding:"evex m:2 p:1 l:x w:1 0x93 /r:mem vsib"/"RAM" { .Instruction = ND_INS_VGATHERQPD, .Category = ND_CAT_GATHER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1255, + .Mnemonic = 1286, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK, @@ -87853,6 +92165,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E12, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -87867,12 +92180,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3142 Instruction:"VGATHERQPD Vx,Mvm64n,Hx" Encoding:"vex m:2 p:1 l:x w:1 0x93 /r:mem vsib"/"RMV" + // Pos:3183 Instruction:"VGATHERQPD Vx,Mvm64n,Hx" Encoding:"vex m:2 p:1 l:x w:1 0x93 /r:mem vsib"/"RMV" { .Instruction = ND_INS_VGATHERQPD, .Category = ND_CAT_AVX2GATHER, .IsaSet = ND_SET_AVX2GATHER, - .Mnemonic = 1255, + .Mnemonic = 1286, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -87881,6 +92194,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_12, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -87895,12 +92209,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3143 Instruction:"VGATHERQPS Vhv{K},aKq,Mvm64n" Encoding:"evex m:2 p:1 l:x w:0 0x93 /r:mem vsib"/"RAM" + // Pos:3184 Instruction:"VGATHERQPS Vhv{K},aKq,Mvm64n" Encoding:"evex m:2 p:1 l:x w:0 0x93 /r:mem vsib"/"RAM" { .Instruction = ND_INS_VGATHERQPS, .Category = ND_CAT_GATHER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1256, + .Mnemonic = 1287, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK, @@ -87909,6 +92223,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E12, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -87923,12 +92238,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3144 Instruction:"VGATHERQPS Vdq,Mvm64n,Hdq" Encoding:"vex m:2 p:1 l:x w:0 0x93 /r:mem vsib"/"RMV" + // Pos:3185 Instruction:"VGATHERQPS Vdq,Mvm64n,Hdq" Encoding:"vex m:2 p:1 l:x w:0 0x93 /r:mem vsib"/"RMV" { .Instruction = ND_INS_VGATHERQPS, .Category = ND_CAT_AVX2GATHER, .IsaSet = ND_SET_AVX2GATHER, - .Mnemonic = 1256, + .Mnemonic = 1287, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -87937,6 +92252,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_12, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -87951,12 +92267,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3145 Instruction:"VGETEXPPBF16 Vfv{K}{z},aKq,Wfv|B16" Encoding:"evex m:5 p:1 l:x w:0 0x42 /r"/"RAM" + // Pos:3186 Instruction:"VGETEXPPBF16 Vfv{K}{z},aKq,Wfv|B16" Encoding:"evex m:6 p:0 l:x w:0 0x42 /r"/"RAM" { .Instruction = ND_INS_VGETEXPPBF16, .Category = ND_CAT_AVX10BF16, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1257, + .Mnemonic = 1288, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -87965,6 +92281,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -87979,12 +92296,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3146 Instruction:"VGETEXPPD Vfv{K}{z},aKq,Wfv|B64{sae}" Encoding:"evex m:2 p:1 l:x w:1 0x42 /r"/"RAM" + // Pos:3187 Instruction:"VGETEXPPD Vfv{K}{z},aKq,Wfv|B64{sae}" Encoding:"evex m:2 p:1 l:x w:1 0x42 /r"/"RAM" { .Instruction = ND_INS_VGETEXPPD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1258, + .Mnemonic = 1289, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -87993,6 +92310,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -88007,12 +92325,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3147 Instruction:"VGETEXPPH Vfv{K}{z},aKq,Wfv|B16{sae}" Encoding:"evex m:6 p:1 l:x w:0 0x42 /r"/"RAM" + // Pos:3188 Instruction:"VGETEXPPH Vfv{K}{z},aKq,Wfv|B16{sae}" Encoding:"evex m:6 p:1 l:x w:0 0x42 /r"/"RAM" { .Instruction = ND_INS_VGETEXPPH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1259, + .Mnemonic = 1290, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -88021,6 +92339,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -88035,12 +92354,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3148 Instruction:"VGETEXPPS Vfv{K}{z},aKq,Wfv|B32{sae}" Encoding:"evex m:2 p:1 l:x w:0 0x42 /r"/"RAM" + // Pos:3189 Instruction:"VGETEXPPS Vfv{K}{z},aKq,Wfv|B32{sae}" Encoding:"evex m:2 p:1 l:x w:0 0x42 /r"/"RAM" { .Instruction = ND_INS_VGETEXPPS, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1260, + .Mnemonic = 1291, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -88049,6 +92368,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -88063,12 +92383,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3149 Instruction:"VGETEXPSD Vdq{K}{z},aKq,Hdq,Wsd{sae}" Encoding:"evex m:2 p:1 l:x w:1 0x43 /r"/"RAVM" + // Pos:3190 Instruction:"VGETEXPSD Vdq{K}{z},aKq,Hdq,Wsd{sae}" Encoding:"evex m:2 p:1 l:x w:1 0x43 /r"/"RAVM" { .Instruction = ND_INS_VGETEXPSD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1261, + .Mnemonic = 1292, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE, @@ -88077,6 +92397,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -88092,12 +92413,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3150 Instruction:"VGETEXPSH Vdq{K}{z},aKq,Hdq,Wsh{sae}" Encoding:"evex m:6 p:1 l:i w:0 0x43 /r"/"RAVM" + // Pos:3191 Instruction:"VGETEXPSH Vdq{K}{z},aKq,Hdq,Wsh{sae}" Encoding:"evex m:6 p:1 l:i w:0 0x43 /r"/"RAVM" { .Instruction = ND_INS_VGETEXPSH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1262, + .Mnemonic = 1293, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE, @@ -88106,6 +92427,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -88121,12 +92443,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3151 Instruction:"VGETEXPSS Vdq{K}{z},aKq,Hdq,Wss{sae}" Encoding:"evex m:2 p:1 l:x w:0 0x43 /r"/"RAVM" + // Pos:3192 Instruction:"VGETEXPSS Vdq{K}{z},aKq,Hdq,Wss{sae}" Encoding:"evex m:2 p:1 l:x w:0 0x43 /r"/"RAVM" { .Instruction = ND_INS_VGETEXPSS, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1263, + .Mnemonic = 1294, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE, @@ -88135,6 +92457,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -88150,12 +92473,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3152 Instruction:"VGETMANTPBF16 Vfv{K}{z},aKq,Wfv|B16,Ib" Encoding:"evex m:3 p:3 l:x w:0 0x26 /r ib"/"RAMI" + // Pos:3193 Instruction:"VGETMANTPBF16 Vfv{K}{z},aKq,Wfv|B16,Ib" Encoding:"evex m:3 p:3 l:x w:0 0x26 /r ib"/"RAMI" { .Instruction = ND_INS_VGETMANTPBF16, .Category = ND_CAT_AVX10BF16, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1264, + .Mnemonic = 1295, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -88164,6 +92487,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -88179,12 +92503,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3153 Instruction:"VGETMANTPD Vfv{K}{z},aKq,Wfv|B64{sae},Ib" Encoding:"evex m:3 p:1 l:x w:1 0x26 /r ib"/"RAMI" + // Pos:3194 Instruction:"VGETMANTPD Vfv{K}{z},aKq,Wfv|B64{sae},Ib" Encoding:"evex m:3 p:1 l:x w:1 0x26 /r ib"/"RAMI" { .Instruction = ND_INS_VGETMANTPD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1265, + .Mnemonic = 1296, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -88193,6 +92517,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -88208,12 +92533,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3154 Instruction:"VGETMANTPH Vfv{K}{z},aKq,Wfv|B16{sae},Ib" Encoding:"evex m:3 p:0 l:x w:0 0x26 /r ib"/"RAMI" + // Pos:3195 Instruction:"VGETMANTPH Vfv{K}{z},aKq,Wfv|B16{sae},Ib" Encoding:"evex m:3 p:0 l:x w:0 0x26 /r ib"/"RAMI" { .Instruction = ND_INS_VGETMANTPH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1266, + .Mnemonic = 1297, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -88222,6 +92547,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -88237,12 +92563,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3155 Instruction:"VGETMANTPS Vfv{K}{z},aKq,Wfv|B32{sae},Ib" Encoding:"evex m:3 p:1 l:x w:0 0x26 /r ib"/"RAMI" + // Pos:3196 Instruction:"VGETMANTPS Vfv{K}{z},aKq,Wfv|B32{sae},Ib" Encoding:"evex m:3 p:1 l:x w:0 0x26 /r ib"/"RAMI" { .Instruction = ND_INS_VGETMANTPS, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1267, + .Mnemonic = 1298, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -88251,6 +92577,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -88266,12 +92593,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3156 Instruction:"VGETMANTSD Vdq{K}{z},aKq,Hdq,Wsd{sae},Ib" Encoding:"evex m:3 p:1 l:i w:1 0x27 /r ib"/"RAVMI" + // Pos:3197 Instruction:"VGETMANTSD Vdq{K}{z},aKq,Hdq,Wsd{sae},Ib" Encoding:"evex m:3 p:1 l:i w:1 0x27 /r ib"/"RAVMI" { .Instruction = ND_INS_VGETMANTSD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1268, + .Mnemonic = 1299, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE, @@ -88280,6 +92607,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -88296,12 +92624,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3157 Instruction:"VGETMANTSH Vdq{K}{z},aKq,Hdq,Wsh{sae},Ib" Encoding:"evex m:3 p:0 l:i w:0 0x27 /r ib"/"RAVMI" + // Pos:3198 Instruction:"VGETMANTSH Vdq{K}{z},aKq,Hdq,Wsh{sae},Ib" Encoding:"evex m:3 p:0 l:i w:0 0x27 /r ib"/"RAVMI" { .Instruction = ND_INS_VGETMANTSH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1269, + .Mnemonic = 1300, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE, @@ -88310,6 +92638,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -88326,12 +92655,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3158 Instruction:"VGETMANTSS Vdq{K}{z},aKq,Hdq,Wss{sae},Ib" Encoding:"evex m:3 p:1 l:i w:0 0x27 /r ib"/"RAVMI" + // Pos:3199 Instruction:"VGETMANTSS Vdq{K}{z},aKq,Hdq,Wss{sae},Ib" Encoding:"evex m:3 p:1 l:i w:0 0x27 /r ib"/"RAVMI" { .Instruction = ND_INS_VGETMANTSS, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1270, + .Mnemonic = 1301, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE, @@ -88340,6 +92669,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -88356,12 +92686,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3159 Instruction:"VGF2P8AFFINEINVQB Vfv{K}{z},aKq,Hfv,Wfv|B64,Ib" Encoding:"evex m:3 p:1 l:x w:1 0xCF /r ib"/"RAVMI" + // Pos:3200 Instruction:"VGF2P8AFFINEINVQB Vfv{K}{z},aKq,Hfv,Wfv|B64,Ib" Encoding:"evex m:3 p:1 l:x w:1 0xCF /r ib"/"RAVMI" { .Instruction = ND_INS_VGF2P8AFFINEINVQB, .Category = ND_CAT_GFNI, .IsaSet = ND_SET_GFNI, - .Mnemonic = 1271, + .Mnemonic = 1302, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -88370,6 +92700,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -88386,12 +92717,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3160 Instruction:"VGF2P8AFFINEINVQB Vx,Hx,Wx,Ib" Encoding:"vex m:3 p:1 l:x w:1 0xCF /r ib"/"RVMI" + // Pos:3201 Instruction:"VGF2P8AFFINEINVQB Vx,Hx,Wx,Ib" Encoding:"vex m:3 p:1 l:x w:1 0xCF /r ib"/"RVMI" { .Instruction = ND_INS_VGF2P8AFFINEINVQB, .Category = ND_CAT_GFNI, .IsaSet = ND_SET_GFNI, - .Mnemonic = 1271, + .Mnemonic = 1302, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -88400,6 +92731,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -88415,12 +92747,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3161 Instruction:"VGF2P8AFFINEQB Vfv{K}{z},aKq,Hfv,Wfv|B64,Ib" Encoding:"evex m:3 p:1 l:x w:1 0xCE /r ib"/"RAVMI" + // Pos:3202 Instruction:"VGF2P8AFFINEQB Vfv{K}{z},aKq,Hfv,Wfv|B64,Ib" Encoding:"evex m:3 p:1 l:x w:1 0xCE /r ib"/"RAVMI" { .Instruction = ND_INS_VGF2P8AFFINEQB, .Category = ND_CAT_GFNI, .IsaSet = ND_SET_GFNI, - .Mnemonic = 1272, + .Mnemonic = 1303, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -88429,6 +92761,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -88445,12 +92778,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3162 Instruction:"VGF2P8AFFINEQB Vx,Hx,Wx,Ib" Encoding:"vex m:3 p:1 l:x w:1 0xCE /r ib"/"RVMI" + // Pos:3203 Instruction:"VGF2P8AFFINEQB Vx,Hx,Wx,Ib" Encoding:"vex m:3 p:1 l:x w:1 0xCE /r ib"/"RVMI" { .Instruction = ND_INS_VGF2P8AFFINEQB, .Category = ND_CAT_GFNI, .IsaSet = ND_SET_GFNI, - .Mnemonic = 1272, + .Mnemonic = 1303, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -88459,6 +92792,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -88474,12 +92808,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3163 Instruction:"VGF2P8MULB Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:2 p:1 l:x w:0 0xCF /r"/"RAVM" + // Pos:3204 Instruction:"VGF2P8MULB Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:2 p:1 l:x w:0 0xCF /r"/"RAVM" { .Instruction = ND_INS_VGF2P8MULB, .Category = ND_CAT_GFNI, .IsaSet = ND_SET_GFNI, - .Mnemonic = 1273, + .Mnemonic = 1304, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -88488,6 +92822,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -88503,12 +92838,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3164 Instruction:"VGF2P8MULB Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0xCF /r"/"RVM" + // Pos:3205 Instruction:"VGF2P8MULB Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0xCF /r"/"RVM" { .Instruction = ND_INS_VGF2P8MULB, .Category = ND_CAT_GFNI, .IsaSet = ND_SET_GFNI, - .Mnemonic = 1273, + .Mnemonic = 1304, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -88517,6 +92852,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -88531,12 +92867,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3165 Instruction:"VHADDPD Vpd,Hpd,Wpd" Encoding:"vex m:1 p:1 l:x w:i 0x7C /r"/"RVM" + // Pos:3206 Instruction:"VHADDPD Vpd,Hpd,Wpd" Encoding:"vex m:1 p:1 l:x w:i 0x7C /r"/"RVM" { .Instruction = ND_INS_VHADDPD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1274, + .Mnemonic = 1305, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -88545,6 +92881,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -88559,12 +92896,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3166 Instruction:"VHADDPS Vps,Hps,Wps" Encoding:"vex m:1 p:3 l:x w:i 0x7C /r"/"RVM" + // Pos:3207 Instruction:"VHADDPS Vps,Hps,Wps" Encoding:"vex m:1 p:3 l:x w:i 0x7C /r"/"RVM" { .Instruction = ND_INS_VHADDPS, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1275, + .Mnemonic = 1306, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -88573,6 +92910,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -88587,12 +92925,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3167 Instruction:"VHSUBPD Vpd,Hpd,Wpd" Encoding:"vex m:1 p:1 l:x w:i 0x7D /r"/"RVM" + // Pos:3208 Instruction:"VHSUBPD Vpd,Hpd,Wpd" Encoding:"vex m:1 p:1 l:x w:i 0x7D /r"/"RVM" { .Instruction = ND_INS_VHSUBPD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1276, + .Mnemonic = 1307, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -88601,6 +92939,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -88615,12 +92954,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3168 Instruction:"VHSUBPS Vps,Hps,Wps" Encoding:"vex m:1 p:3 l:x w:i 0x7D /r"/"RVM" + // Pos:3209 Instruction:"VHSUBPS Vps,Hps,Wps" Encoding:"vex m:1 p:3 l:x w:i 0x7D /r"/"RVM" { .Instruction = ND_INS_VHSUBPS, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1277, + .Mnemonic = 1308, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -88629,6 +92968,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -88643,12 +92983,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3169 Instruction:"VINSERTF128 Vqq,Hqq,Wdq,Ib" Encoding:"vex m:3 p:1 l:1 w:0 0x18 /r ib"/"RVMI" + // Pos:3210 Instruction:"VINSERTF128 Vqq,Hqq,Wdq,Ib" Encoding:"vex m:3 p:1 l:1 w:0 0x18 /r ib"/"RVMI" { .Instruction = ND_INS_VINSERTF128, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1278, + .Mnemonic = 1309, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -88657,6 +92997,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -88672,12 +93013,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3170 Instruction:"VINSERTF32X4 Vuv{K}{z},aKq,Huv,Wdq,Ib" Encoding:"evex m:3 p:1 l:x w:0 0x18 /r ib"/"RAVMI" + // Pos:3211 Instruction:"VINSERTF32X4 Vuv{K}{z},aKq,Huv,Wdq,Ib" Encoding:"evex m:3 p:1 l:x w:0 0x18 /r ib"/"RAVMI" { .Instruction = ND_INS_VINSERTF32X4, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1279, + .Mnemonic = 1310, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -88686,6 +93027,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E6NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -88702,12 +93044,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3171 Instruction:"VINSERTF32X8 Voq{K}{z},aKq,Hoq,Wqq,Ib" Encoding:"evex m:3 p:1 l:2 w:0 0x1A /r ib"/"RAVMI" + // Pos:3212 Instruction:"VINSERTF32X8 Voq{K}{z},aKq,Hoq,Wqq,Ib" Encoding:"evex m:3 p:1 l:2 w:0 0x1A /r ib"/"RAVMI" { .Instruction = ND_INS_VINSERTF32X8, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512DQ, - .Mnemonic = 1280, + .Mnemonic = 1311, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -88716,6 +93058,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E6NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -88732,12 +93075,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3172 Instruction:"VINSERTF64X2 Vuv{K}{z},aKq,Huv,Wdq,Ib" Encoding:"evex m:3 p:1 l:x w:1 0x18 /r ib"/"RAVMI" + // Pos:3213 Instruction:"VINSERTF64X2 Vuv{K}{z},aKq,Huv,Wdq,Ib" Encoding:"evex m:3 p:1 l:x w:1 0x18 /r ib"/"RAVMI" { .Instruction = ND_INS_VINSERTF64X2, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512DQ, - .Mnemonic = 1281, + .Mnemonic = 1312, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -88746,6 +93089,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E6NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -88762,12 +93106,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3173 Instruction:"VINSERTF64X4 Voq{K}{z},aKq,Hoq,Wqq,Ib" Encoding:"evex m:3 p:1 l:2 w:1 0x1A /r ib"/"RAVMI" + // Pos:3214 Instruction:"VINSERTF64X4 Voq{K}{z},aKq,Hoq,Wqq,Ib" Encoding:"evex m:3 p:1 l:2 w:1 0x1A /r ib"/"RAVMI" { .Instruction = ND_INS_VINSERTF64X4, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1282, + .Mnemonic = 1313, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -88776,6 +93120,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E6NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -88792,12 +93137,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3174 Instruction:"VINSERTI128 Vqq,Hqq,Wdq,Ib" Encoding:"vex m:3 p:1 l:1 w:0 0x38 /r ib"/"RVMI" + // Pos:3215 Instruction:"VINSERTI128 Vqq,Hqq,Wdq,Ib" Encoding:"vex m:3 p:1 l:1 w:0 0x38 /r ib"/"RVMI" { .Instruction = ND_INS_VINSERTI128, .Category = ND_CAT_AVX2, .IsaSet = ND_SET_AVX2, - .Mnemonic = 1283, + .Mnemonic = 1314, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -88806,6 +93151,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -88821,12 +93167,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3175 Instruction:"VINSERTI32X4 Vuv{K}{z},aKq,Huv,Wdq,Ib" Encoding:"evex m:3 p:1 l:x w:0 0x38 /r ib"/"RAVMI" + // Pos:3216 Instruction:"VINSERTI32X4 Vuv{K}{z},aKq,Huv,Wdq,Ib" Encoding:"evex m:3 p:1 l:x w:0 0x38 /r ib"/"RAVMI" { .Instruction = ND_INS_VINSERTI32X4, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1284, + .Mnemonic = 1315, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -88835,6 +93181,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E6NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -88851,12 +93198,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3176 Instruction:"VINSERTI32X8 Voq{K}{z},aKq,Hoq,Wqq,Ib" Encoding:"evex m:3 p:1 l:2 w:0 0x3A /r ib"/"RAVMI" + // Pos:3217 Instruction:"VINSERTI32X8 Voq{K}{z},aKq,Hoq,Wqq,Ib" Encoding:"evex m:3 p:1 l:2 w:0 0x3A /r ib"/"RAVMI" { .Instruction = ND_INS_VINSERTI32X8, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512DQ, - .Mnemonic = 1285, + .Mnemonic = 1316, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -88865,6 +93212,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E6NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -88881,12 +93229,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3177 Instruction:"VINSERTI64X2 Vuv{K}{z},aKq,Huv,Wdq,Ib" Encoding:"evex m:3 p:1 l:x w:1 0x38 /r ib"/"RAVMI" + // Pos:3218 Instruction:"VINSERTI64X2 Vuv{K}{z},aKq,Huv,Wdq,Ib" Encoding:"evex m:3 p:1 l:x w:1 0x38 /r ib"/"RAVMI" { .Instruction = ND_INS_VINSERTI64X2, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512DQ, - .Mnemonic = 1286, + .Mnemonic = 1317, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -88895,6 +93243,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E6NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -88911,12 +93260,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3178 Instruction:"VINSERTI64X4 Voq{K}{z},aKq,Hoq,Wqq,Ib" Encoding:"evex m:3 p:1 l:2 w:1 0x3A /r ib"/"RAVMI" + // Pos:3219 Instruction:"VINSERTI64X4 Voq{K}{z},aKq,Hoq,Wqq,Ib" Encoding:"evex m:3 p:1 l:2 w:1 0x3A /r ib"/"RAVMI" { .Instruction = ND_INS_VINSERTI64X4, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1287, + .Mnemonic = 1318, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -88925,6 +93274,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E6NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -88941,12 +93291,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3179 Instruction:"VINSERTPS Vdq,Hdq,Md,Ib" Encoding:"evex m:3 p:1 l:0 w:i 0x21 /r:mem ib"/"RVMI" + // Pos:3220 Instruction:"VINSERTPS Vdq,Hdq,Md,Ib" Encoding:"evex m:3 p:1 l:0 w:i 0x21 /r:mem ib"/"RVMI" { .Instruction = ND_INS_VINSERTPS, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1288, + .Mnemonic = 1319, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -88955,6 +93305,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E9NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -88970,12 +93321,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3180 Instruction:"VINSERTPS Vdq,Hdq,Udq,Ib" Encoding:"evex m:3 p:1 l:0 w:i 0x21 /r:reg ib"/"RVMI" + // Pos:3221 Instruction:"VINSERTPS Vdq,Hdq,Udq,Ib" Encoding:"evex m:3 p:1 l:0 w:i 0x21 /r:reg ib"/"RVMI" { .Instruction = ND_INS_VINSERTPS, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1288, + .Mnemonic = 1319, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -88984,6 +93335,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E9NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -88999,12 +93351,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3181 Instruction:"VINSERTPS Vdq,Hdq,Md,Ib" Encoding:"vex m:3 p:1 l:0 w:i 0x21 /r:mem ib"/"RVMI" + // Pos:3222 Instruction:"VINSERTPS Vdq,Hdq,Md,Ib" Encoding:"vex m:3 p:1 l:0 w:i 0x21 /r:mem ib"/"RVMI" { .Instruction = ND_INS_VINSERTPS, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1288, + .Mnemonic = 1319, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -89013,6 +93365,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -89028,12 +93381,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3182 Instruction:"VINSERTPS Vdq,Hdq,Udq,Ib" Encoding:"vex m:3 p:1 l:0 w:i 0x21 /r:reg ib"/"RVMI" + // Pos:3223 Instruction:"VINSERTPS Vdq,Hdq,Udq,Ib" Encoding:"vex m:3 p:1 l:0 w:i 0x21 /r:reg ib"/"RVMI" { .Instruction = ND_INS_VINSERTPS, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1288, + .Mnemonic = 1319, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -89042,6 +93395,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -89057,12 +93411,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3183 Instruction:"VLDDQU Vx,Mx" Encoding:"vex m:1 p:3 l:x w:i 0xF0 /r:mem"/"RM" + // Pos:3224 Instruction:"VLDDQU Vx,Mx" Encoding:"vex m:1 p:3 l:x w:i 0xF0 /r:mem"/"RM" { .Instruction = ND_INS_VLDDQU, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1289, + .Mnemonic = 1320, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -89071,6 +93425,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -89084,12 +93439,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3184 Instruction:"VLDMXCSR Md" Encoding:"vex m:1 p:0 0xAE /2:mem"/"M" + // Pos:3225 Instruction:"VLDMXCSR Md" Encoding:"vex m:1 p:0 0xAE /2:mem"/"M" { .Instruction = ND_INS_VLDMXCSR, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1290, + .Mnemonic = 1321, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -89098,6 +93453,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -89111,12 +93467,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3185 Instruction:"VMASKMOVDQU Vdq,Udq" Encoding:"vex m:1 p:1 l:0 w:i 0xF7 /r:reg"/"RM" + // Pos:3226 Instruction:"VMASKMOVDQU Vdq,Udq" Encoding:"vex m:1 p:1 l:0 w:i 0xF7 /r:reg"/"RM" { .Instruction = ND_INS_VMASKMOVDQU, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1291, + .Mnemonic = 1322, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -89125,6 +93481,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -89139,12 +93496,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3186 Instruction:"VMASKMOVPD Vx,Hx,Mx" Encoding:"vex m:2 p:1 l:x w:0 0x2D /r:mem"/"RVM" + // Pos:3227 Instruction:"VMASKMOVPD Vx,Hx,Mx" Encoding:"vex m:2 p:1 l:x w:0 0x2D /r:mem"/"RVM" { .Instruction = ND_INS_VMASKMOVPD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1292, + .Mnemonic = 1323, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -89153,6 +93510,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -89167,12 +93525,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3187 Instruction:"VMASKMOVPD Mx,Hx,Vx" Encoding:"vex m:2 p:1 l:x w:0 0x2F /r:mem"/"MVR" + // Pos:3228 Instruction:"VMASKMOVPD Mx,Hx,Vx" Encoding:"vex m:2 p:1 l:x w:0 0x2F /r:mem"/"MVR" { .Instruction = ND_INS_VMASKMOVPD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1292, + .Mnemonic = 1323, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -89181,6 +93539,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -89195,12 +93554,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3188 Instruction:"VMASKMOVPS Vx,Hx,Mx" Encoding:"vex m:2 p:1 l:x w:0 0x2C /r:mem"/"RVM" + // Pos:3229 Instruction:"VMASKMOVPS Vx,Hx,Mx" Encoding:"vex m:2 p:1 l:x w:0 0x2C /r:mem"/"RVM" { .Instruction = ND_INS_VMASKMOVPS, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1293, + .Mnemonic = 1324, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -89209,6 +93568,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -89223,12 +93583,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3189 Instruction:"VMASKMOVPS Mx,Hx,Vx" Encoding:"vex m:2 p:1 l:x w:0 0x2E /r:mem"/"MVR" + // Pos:3230 Instruction:"VMASKMOVPS Mx,Hx,Vx" Encoding:"vex m:2 p:1 l:x w:0 0x2E /r:mem"/"MVR" { .Instruction = ND_INS_VMASKMOVPS, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1293, + .Mnemonic = 1324, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -89237,6 +93597,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -89251,12 +93612,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3190 Instruction:"VMAXPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16" Encoding:"evex m:5 p:1 l:x w:0 0x5F /r"/"RAVM" + // Pos:3231 Instruction:"VMAXPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16" Encoding:"evex m:5 p:1 l:x w:0 0x5F /r"/"RAVM" { .Instruction = ND_INS_VMAXPBF16, .Category = ND_CAT_AVX10BF16, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1294, + .Mnemonic = 1325, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -89265,6 +93626,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -89280,12 +93642,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3191 Instruction:"VMAXPD Vfv{K}{z},aKq,Hfv,Wfv|B64{sae}" Encoding:"evex m:1 p:1 l:x w:1 0x5F /r"/"RAVM" + // Pos:3232 Instruction:"VMAXPD Vfv{K}{z},aKq,Hfv,Wfv|B64{sae}" Encoding:"evex m:1 p:1 l:x w:1 0x5F /r"/"RAVM" { .Instruction = ND_INS_VMAXPD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1295, + .Mnemonic = 1326, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -89294,6 +93656,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -89309,12 +93672,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3192 Instruction:"VMAXPD Vpd,Hpd,Wpd" Encoding:"vex m:1 p:1 l:x w:i 0x5F /r"/"RVM" + // Pos:3233 Instruction:"VMAXPD Vpd,Hpd,Wpd" Encoding:"vex m:1 p:1 l:x w:i 0x5F /r"/"RVM" { .Instruction = ND_INS_VMAXPD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1295, + .Mnemonic = 1326, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -89323,6 +93686,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -89337,12 +93701,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3193 Instruction:"VMAXPH Vfv{K}{z},aKq,Hfv,Wfv|B16{sae}" Encoding:"evex m:5 p:0 l:x w:0 0x5F /r"/"RAVM" + // Pos:3234 Instruction:"VMAXPH Vfv{K}{z},aKq,Hfv,Wfv|B16{sae}" Encoding:"evex m:5 p:0 l:x w:0 0x5F /r"/"RAVM" { .Instruction = ND_INS_VMAXPH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1296, + .Mnemonic = 1327, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -89351,6 +93715,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -89366,12 +93731,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3194 Instruction:"VMAXPS Vfv{K}{z},aKq,Hfv,Wfv|B32{sae}" Encoding:"evex m:1 p:0 l:x w:0 0x5F /r"/"RAVM" + // Pos:3235 Instruction:"VMAXPS Vfv{K}{z},aKq,Hfv,Wfv|B32{sae}" Encoding:"evex m:1 p:0 l:x w:0 0x5F /r"/"RAVM" { .Instruction = ND_INS_VMAXPS, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1297, + .Mnemonic = 1328, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -89380,6 +93745,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -89395,12 +93761,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3195 Instruction:"VMAXPS Vps,Hps,Wps" Encoding:"vex m:1 p:0 l:x w:i 0x5F /r"/"RVM" + // Pos:3236 Instruction:"VMAXPS Vps,Hps,Wps" Encoding:"vex m:1 p:0 l:x w:i 0x5F /r"/"RVM" { .Instruction = ND_INS_VMAXPS, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1297, + .Mnemonic = 1328, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -89409,6 +93775,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -89423,12 +93790,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3196 Instruction:"VMAXSD Vdq{K}{z},aKq,Hdq,Wsd{sae}" Encoding:"evex m:1 p:3 l:i w:1 0x5F /r"/"RAVM" + // Pos:3237 Instruction:"VMAXSD Vdq{K}{z},aKq,Hdq,Wsd{sae}" Encoding:"evex m:1 p:3 l:i w:1 0x5F /r"/"RAVM" { .Instruction = ND_INS_VMAXSD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1298, + .Mnemonic = 1329, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE, @@ -89437,6 +93804,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -89452,12 +93820,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3197 Instruction:"VMAXSD Vsd,Hsd,Wsd" Encoding:"vex m:1 p:3 l:i w:i 0x5F /r"/"RVM" + // Pos:3238 Instruction:"VMAXSD Vsd,Hsd,Wsd" Encoding:"vex m:1 p:3 l:i w:i 0x5F /r"/"RVM" { .Instruction = ND_INS_VMAXSD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1298, + .Mnemonic = 1329, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -89466,6 +93834,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -89480,12 +93849,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3198 Instruction:"VMAXSH Vdq{K}{z},aKq,Hdq,Wsh{sae}" Encoding:"evex m:5 p:2 l:i w:0 0x5F /r"/"RAVM" + // Pos:3239 Instruction:"VMAXSH Vdq{K}{z},aKq,Hdq,Wsh{sae}" Encoding:"evex m:5 p:2 l:i w:0 0x5F /r"/"RAVM" { .Instruction = ND_INS_VMAXSH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1299, + .Mnemonic = 1330, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE, @@ -89494,6 +93863,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -89509,12 +93879,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3199 Instruction:"VMAXSS Vdq{K}{z},aKq,Hdq,Wss{sae}" Encoding:"evex m:1 p:2 l:i w:0 0x5F /r"/"RAVM" + // Pos:3240 Instruction:"VMAXSS Vdq{K}{z},aKq,Hdq,Wss{sae}" Encoding:"evex m:1 p:2 l:i w:0 0x5F /r"/"RAVM" { .Instruction = ND_INS_VMAXSS, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1300, + .Mnemonic = 1331, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE, @@ -89523,6 +93893,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -89538,12 +93909,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3200 Instruction:"VMAXSS Vss,Hss,Wss" Encoding:"vex m:1 p:2 l:i w:i 0x5F /r"/"RVM" + // Pos:3241 Instruction:"VMAXSS Vss,Hss,Wss" Encoding:"vex m:1 p:2 l:i w:i 0x5F /r"/"RVM" { .Instruction = ND_INS_VMAXSS, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1300, + .Mnemonic = 1331, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -89552,6 +93923,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -89566,12 +93938,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3201 Instruction:"VMCALL" Encoding:"NP 0x0F 0x01 /0xC1"/"" + // Pos:3242 Instruction:"VMCALL" Encoding:"NP 0x0F 0x01 /0xC1"/"" { .Instruction = ND_INS_VMCALL, .Category = ND_CAT_VTX, .IsaSet = ND_SET_VTX, - .Mnemonic = 1301, + .Mnemonic = 1332, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_REAL|ND_MOD_V8086|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -89580,6 +93952,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -89592,12 +93965,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3202 Instruction:"VMCLEAR Mq" Encoding:"0x66 0x0F 0xC7 /6:mem"/"M" + // Pos:3243 Instruction:"VMCLEAR Mq" Encoding:"0x66 0x0F 0xC7 /6:mem"/"M" { .Instruction = ND_INS_VMCLEAR, .Category = ND_CAT_VTX, .IsaSet = ND_SET_VTX, - .Mnemonic = 1302, + .Mnemonic = 1333, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_PROT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXR_SEAM|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF|ND_MOD_SMM_OFF, .ValidDecorators = 0, @@ -89606,6 +93979,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .SetFlags = 0, @@ -89619,12 +93993,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3203 Instruction:"VMFUNC" Encoding:"NP 0x0F 0x01 /0xD4"/"" + // Pos:3244 Instruction:"VMFUNC" Encoding:"NP 0x0F 0x01 /0xD4"/"" { .Instruction = ND_INS_VMFUNC, .Category = ND_CAT_VTX, .IsaSet = ND_SET_VTX, - .Mnemonic = 1303, + .Mnemonic = 1334, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_REAL|ND_MOD_V8086|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -89633,6 +94007,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -89645,12 +94020,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3204 Instruction:"VMGEXIT" Encoding:"0xF3 0x0F 0x01 /0xD9"/"" + // Pos:3245 Instruction:"VMGEXIT" Encoding:"0xF3 0x0F 0x01 /0xD9"/"" { .Instruction = ND_INS_VMGEXIT, .Category = ND_CAT_SYSTEM, .IsaSet = ND_SET_SVM, - .Mnemonic = 1304, + .Mnemonic = 1335, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_REAL|ND_MOD_V8086|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -89659,6 +94034,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -89671,12 +94047,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3205 Instruction:"VMGEXIT" Encoding:"0xF2 0x0F 0x01 /0xD9"/"" + // Pos:3246 Instruction:"VMGEXIT" Encoding:"0xF2 0x0F 0x01 /0xD9"/"" { .Instruction = ND_INS_VMGEXIT, .Category = ND_CAT_SYSTEM, .IsaSet = ND_SET_SVM, - .Mnemonic = 1304, + .Mnemonic = 1335, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_REAL|ND_MOD_V8086|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -89685,6 +94061,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -89697,12 +94074,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3206 Instruction:"VMINMAXNEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16,Ib" Encoding:"evex m:3 p:3 l:x w:0 0x52 /r ib"/"RAVMI" + // Pos:3247 Instruction:"VMINMAXNEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16,Ib" Encoding:"evex m:3 p:3 l:x w:0 0x52 /r ib"/"RAVMI" { .Instruction = ND_INS_VMINMAXNEPBF16, .Category = ND_CAT_AVX10MINMAX, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1305, + .Mnemonic = 1336, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -89711,6 +94088,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -89727,12 +94105,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3207 Instruction:"VMINMAXPD Vfv{K}{z},aKq,Hfv,Wfv|B64{sae},Ib" Encoding:"evex m:3 p:1 l:x w:1 0x52 /r ib"/"RAVMI" + // Pos:3248 Instruction:"VMINMAXPD Vfv{K}{z},aKq,Hfv,Wfv|B64{sae},Ib" Encoding:"evex m:3 p:1 l:x w:1 0x52 /r ib"/"RAVMI" { .Instruction = ND_INS_VMINMAXPD, .Category = ND_CAT_AVX10MINMAX, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1306, + .Mnemonic = 1337, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -89741,6 +94119,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -89757,12 +94136,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3208 Instruction:"VMINMAXPH Vfv{K}{z},aKq,Hfv,Wfv|B16{sae},Ib" Encoding:"evex m:3 p:0 l:x w:0 0x52 /r ib"/"RAVMI" + // Pos:3249 Instruction:"VMINMAXPH Vfv{K}{z},aKq,Hfv,Wfv|B16{sae},Ib" Encoding:"evex m:3 p:0 l:x w:0 0x52 /r ib"/"RAVMI" { .Instruction = ND_INS_VMINMAXPH, .Category = ND_CAT_AVX10MINMAX, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1307, + .Mnemonic = 1338, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -89771,6 +94150,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -89787,12 +94167,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3209 Instruction:"VMINMAXPS Vfv{K}{z},aKq,Hfv,Wfv|B32{sae},Ib" Encoding:"evex m:3 p:1 l:x w:0 0x52 /r ib"/"RAVMI" + // Pos:3250 Instruction:"VMINMAXPS Vfv{K}{z},aKq,Hfv,Wfv|B32{sae},Ib" Encoding:"evex m:3 p:1 l:x w:0 0x52 /r ib"/"RAVMI" { .Instruction = ND_INS_VMINMAXPS, .Category = ND_CAT_AVX10MINMAX, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1308, + .Mnemonic = 1339, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -89801,6 +94181,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -89817,12 +94198,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3210 Instruction:"VMINMAXSD Vdq{K}{z},aKq,Hdq,Wsd{sae},Ib" Encoding:"evex m:3 p:1 l:i w:1 0x53 /r ib"/"RAVMI" + // Pos:3251 Instruction:"VMINMAXSD Vdq{K}{z},aKq,Hdq,Wsd{sae},Ib" Encoding:"evex m:3 p:1 l:i w:1 0x53 /r ib"/"RAVMI" { .Instruction = ND_INS_VMINMAXSD, .Category = ND_CAT_AVX10MINMAX, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1309, + .Mnemonic = 1340, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE, @@ -89831,6 +94212,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -89847,12 +94229,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3211 Instruction:"VMINMAXSH Vdq{K}{z},aKq,Hdq,Wsh{sae},Ib" Encoding:"evex m:3 p:0 l:i w:0 0x53 /r ib"/"RAVMI" + // Pos:3252 Instruction:"VMINMAXSH Vdq{K}{z},aKq,Hdq,Wsh{sae},Ib" Encoding:"evex m:3 p:0 l:i w:0 0x53 /r ib"/"RAVMI" { .Instruction = ND_INS_VMINMAXSH, .Category = ND_CAT_AVX10MINMAX, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1310, + .Mnemonic = 1341, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE, @@ -89861,6 +94243,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -89877,12 +94260,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3212 Instruction:"VMINMAXSS Vdq{K}{z},aKq,Hdq,Wss{sae},Ib" Encoding:"evex m:3 p:1 l:i w:0 0x53 /r ib"/"RAVMI" + // Pos:3253 Instruction:"VMINMAXSS Vdq{K}{z},aKq,Hdq,Wss{sae},Ib" Encoding:"evex m:3 p:1 l:i w:0 0x53 /r ib"/"RAVMI" { .Instruction = ND_INS_VMINMAXSS, .Category = ND_CAT_AVX10MINMAX, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1311, + .Mnemonic = 1342, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE, @@ -89891,6 +94274,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -89907,12 +94291,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3213 Instruction:"VMINPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16" Encoding:"evex m:5 p:1 l:x w:0 0x5D /r"/"RAVM" + // Pos:3254 Instruction:"VMINPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16" Encoding:"evex m:5 p:1 l:x w:0 0x5D /r"/"RAVM" { .Instruction = ND_INS_VMINPBF16, .Category = ND_CAT_AVX10BF16, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1312, + .Mnemonic = 1343, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -89921,6 +94305,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -89936,12 +94321,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3214 Instruction:"VMINPD Vfv{K}{z},aKq,Hfv,Wfv|B64{sae}" Encoding:"evex m:1 p:1 l:x w:1 0x5D /r"/"RAVM" + // Pos:3255 Instruction:"VMINPD Vfv{K}{z},aKq,Hfv,Wfv|B64{sae}" Encoding:"evex m:1 p:1 l:x w:1 0x5D /r"/"RAVM" { .Instruction = ND_INS_VMINPD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1313, + .Mnemonic = 1344, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -89950,6 +94335,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -89965,12 +94351,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3215 Instruction:"VMINPD Vpd,Hpd,Wpd" Encoding:"vex m:1 p:1 l:x w:i 0x5D /r"/"RVM" + // Pos:3256 Instruction:"VMINPD Vpd,Hpd,Wpd" Encoding:"vex m:1 p:1 l:x w:i 0x5D /r"/"RVM" { .Instruction = ND_INS_VMINPD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1313, + .Mnemonic = 1344, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -89979,6 +94365,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -89993,12 +94380,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3216 Instruction:"VMINPH Vfv{K}{z},aKq,Hfv,Wfv|B16{sae}" Encoding:"evex m:5 p:0 l:x w:0 0x5D /r"/"RAVM" + // Pos:3257 Instruction:"VMINPH Vfv{K}{z},aKq,Hfv,Wfv|B16{sae}" Encoding:"evex m:5 p:0 l:x w:0 0x5D /r"/"RAVM" { .Instruction = ND_INS_VMINPH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1314, + .Mnemonic = 1345, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -90007,6 +94394,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -90022,12 +94410,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3217 Instruction:"VMINPS Vfv{K}{z},aKq,Hfv,Wfv|B32{sae}" Encoding:"evex m:1 p:0 l:x w:0 0x5D /r"/"RAVM" + // Pos:3258 Instruction:"VMINPS Vfv{K}{z},aKq,Hfv,Wfv|B32{sae}" Encoding:"evex m:1 p:0 l:x w:0 0x5D /r"/"RAVM" { .Instruction = ND_INS_VMINPS, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1315, + .Mnemonic = 1346, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -90036,6 +94424,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -90051,12 +94440,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3218 Instruction:"VMINPS Vps,Hps,Wps" Encoding:"vex m:1 p:0 l:x w:i 0x5D /r"/"RVM" + // Pos:3259 Instruction:"VMINPS Vps,Hps,Wps" Encoding:"vex m:1 p:0 l:x w:i 0x5D /r"/"RVM" { .Instruction = ND_INS_VMINPS, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1315, + .Mnemonic = 1346, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -90065,6 +94454,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -90079,12 +94469,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3219 Instruction:"VMINSD Vdq{K}{z},aKq,Hdq,Wsd{sae}" Encoding:"evex m:1 p:3 l:i w:1 0x5D /r"/"RAVM" + // Pos:3260 Instruction:"VMINSD Vdq{K}{z},aKq,Hdq,Wsd{sae}" Encoding:"evex m:1 p:3 l:i w:1 0x5D /r"/"RAVM" { .Instruction = ND_INS_VMINSD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1316, + .Mnemonic = 1347, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE, @@ -90093,6 +94483,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -90108,12 +94499,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3220 Instruction:"VMINSD Vsd,Hsd,Wsd" Encoding:"vex m:1 p:3 l:i w:i 0x5D /r"/"RVM" + // Pos:3261 Instruction:"VMINSD Vsd,Hsd,Wsd" Encoding:"vex m:1 p:3 l:i w:i 0x5D /r"/"RVM" { .Instruction = ND_INS_VMINSD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1316, + .Mnemonic = 1347, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -90122,6 +94513,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -90136,12 +94528,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3221 Instruction:"VMINSH Vdq{K}{z},aKq,Hdq,Wsh{sae}" Encoding:"evex m:5 p:2 l:i w:0 0x5D /r"/"RAVM" + // Pos:3262 Instruction:"VMINSH Vdq{K}{z},aKq,Hdq,Wsh{sae}" Encoding:"evex m:5 p:2 l:i w:0 0x5D /r"/"RAVM" { .Instruction = ND_INS_VMINSH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1317, + .Mnemonic = 1348, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE, @@ -90150,6 +94542,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -90165,12 +94558,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3222 Instruction:"VMINSS Vdq{K}{z},aKq,Hdq,Wss{sae}" Encoding:"evex m:1 p:2 l:i w:0 0x5D /r"/"RAVM" + // Pos:3263 Instruction:"VMINSS Vdq{K}{z},aKq,Hdq,Wss{sae}" Encoding:"evex m:1 p:2 l:i w:0 0x5D /r"/"RAVM" { .Instruction = ND_INS_VMINSS, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1318, + .Mnemonic = 1349, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE, @@ -90179,6 +94572,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -90194,12 +94588,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3223 Instruction:"VMINSS Vss,Hss,Wss" Encoding:"vex m:1 p:2 l:i w:i 0x5D /r"/"RVM" + // Pos:3264 Instruction:"VMINSS Vss,Hss,Wss" Encoding:"vex m:1 p:2 l:i w:i 0x5D /r"/"RVM" { .Instruction = ND_INS_VMINSS, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1318, + .Mnemonic = 1349, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -90208,6 +94602,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -90222,12 +94617,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3224 Instruction:"VMLAUNCH" Encoding:"NP 0x0F 0x01 /0xC2"/"" + // Pos:3265 Instruction:"VMLAUNCH" Encoding:"NP 0x0F 0x01 /0xC2"/"" { .Instruction = ND_INS_VMLAUNCH, .Category = ND_CAT_VTX, .IsaSet = ND_SET_VTX, - .Mnemonic = 1319, + .Mnemonic = 1350, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_PROT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXR_SEAM|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF|ND_MOD_SMM_OFF, .ValidDecorators = 0, @@ -90236,6 +94631,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .SetFlags = 0, @@ -90248,12 +94644,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3225 Instruction:"VMLOAD" Encoding:"0x0F 0x01 /0xDA"/"" + // Pos:3266 Instruction:"VMLOAD" Encoding:"0x0F 0x01 /0xDA"/"" { .Instruction = ND_INS_VMLOAD, .Category = ND_CAT_SYSTEM, .IsaSet = ND_SET_SVM, - .Mnemonic = 1320, + .Mnemonic = 1351, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_PROT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXR_SEAM|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF|ND_MOD_SMM_OFF, .ValidDecorators = 0, @@ -90262,6 +94658,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -90274,12 +94671,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3226 Instruction:"VMMCALL" Encoding:"NP 0x0F 0x01 /0xD9"/"" + // Pos:3267 Instruction:"VMMCALL" Encoding:"NP 0x0F 0x01 /0xD9"/"" { .Instruction = ND_INS_VMMCALL, .Category = ND_CAT_SYSTEM, .IsaSet = ND_SET_SVM, - .Mnemonic = 1321, + .Mnemonic = 1352, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_REAL|ND_MOD_V8086|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -90288,6 +94685,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -90300,12 +94698,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3227 Instruction:"VMMCALL" Encoding:"0x66 0x0F 0x01 /0xD9"/"" + // Pos:3268 Instruction:"VMMCALL" Encoding:"0x66 0x0F 0x01 /0xD9"/"" { .Instruction = ND_INS_VMMCALL, .Category = ND_CAT_SYSTEM, .IsaSet = ND_SET_SVM, - .Mnemonic = 1321, + .Mnemonic = 1352, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_REAL|ND_MOD_V8086|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -90314,6 +94712,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -90326,12 +94725,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3228 Instruction:"VMOVAPD Vfv{K}{z},aKq,Wfv" Encoding:"evex m:1 p:1 l:x w:1 0x28 /r"/"RAM" + // Pos:3269 Instruction:"VMOVAPD Vfv{K}{z},aKq,Wfv" Encoding:"evex m:1 p:1 l:x w:1 0x28 /r"/"RAM" { .Instruction = ND_INS_VMOVAPD, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1322, + .Mnemonic = 1353, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -90340,6 +94739,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E1, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -90354,12 +94754,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3229 Instruction:"VMOVAPD Wfv{K}{z},aKq,Vfv" Encoding:"evex m:1 p:1 l:x w:1 0x29 /r"/"MAR" + // Pos:3270 Instruction:"VMOVAPD Wfv{K}{z},aKq,Vfv" Encoding:"evex m:1 p:1 l:x w:1 0x29 /r"/"MAR" { .Instruction = ND_INS_VMOVAPD, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1322, + .Mnemonic = 1353, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -90368,6 +94768,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E1, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -90382,12 +94783,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3230 Instruction:"VMOVAPD Vx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0x28 /r"/"RM" + // Pos:3271 Instruction:"VMOVAPD Vx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0x28 /r"/"RM" { .Instruction = ND_INS_VMOVAPD, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX, - .Mnemonic = 1322, + .Mnemonic = 1353, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -90396,6 +94797,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_1, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -90409,12 +94811,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3231 Instruction:"VMOVAPD Wx,Vx" Encoding:"vex m:1 p:1 l:x w:i 0x29 /r"/"MR" + // Pos:3272 Instruction:"VMOVAPD Wx,Vx" Encoding:"vex m:1 p:1 l:x w:i 0x29 /r"/"MR" { .Instruction = ND_INS_VMOVAPD, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX, - .Mnemonic = 1322, + .Mnemonic = 1353, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -90423,6 +94825,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_1, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -90436,12 +94839,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3232 Instruction:"VMOVAPS Vfv{K}{z},aKq,Wfv" Encoding:"evex m:1 p:0 l:x w:0 0x28 /r"/"RAM" + // Pos:3273 Instruction:"VMOVAPS Vfv{K}{z},aKq,Wfv" Encoding:"evex m:1 p:0 l:x w:0 0x28 /r"/"RAM" { .Instruction = ND_INS_VMOVAPS, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1323, + .Mnemonic = 1354, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -90450,6 +94853,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E1, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -90464,12 +94868,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3233 Instruction:"VMOVAPS Wfv{K}{z},aKq,Vfv" Encoding:"evex m:1 p:0 l:x w:0 0x29 /r"/"MAR" + // Pos:3274 Instruction:"VMOVAPS Wfv{K}{z},aKq,Vfv" Encoding:"evex m:1 p:0 l:x w:0 0x29 /r"/"MAR" { .Instruction = ND_INS_VMOVAPS, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1323, + .Mnemonic = 1354, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -90478,6 +94882,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E1, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -90492,12 +94897,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3234 Instruction:"VMOVAPS Vx,Wx" Encoding:"vex m:1 p:0 l:x w:i 0x28 /r"/"RM" + // Pos:3275 Instruction:"VMOVAPS Vx,Wx" Encoding:"vex m:1 p:0 l:x w:i 0x28 /r"/"RM" { .Instruction = ND_INS_VMOVAPS, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX, - .Mnemonic = 1323, + .Mnemonic = 1354, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -90506,6 +94911,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_1, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -90519,12 +94925,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3235 Instruction:"VMOVAPS Wx,Vx" Encoding:"vex m:1 p:0 l:x w:i 0x29 /r"/"MR" + // Pos:3276 Instruction:"VMOVAPS Wx,Vx" Encoding:"vex m:1 p:0 l:x w:i 0x29 /r"/"MR" { .Instruction = ND_INS_VMOVAPS, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX, - .Mnemonic = 1323, + .Mnemonic = 1354, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -90533,6 +94939,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_1, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -90546,12 +94953,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3236 Instruction:"VMOVD Vdq,Ed" Encoding:"evex m:1 p:1 l:0 w:0 0x6E /r"/"RM" + // Pos:3277 Instruction:"VMOVD Vdq,Ed" Encoding:"evex m:1 p:1 l:0 w:0 0x6E /r"/"RM" { .Instruction = ND_INS_VMOVD, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1324, + .Mnemonic = 1355, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -90560,6 +94967,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E9NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -90573,12 +94981,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3237 Instruction:"VMOVD Ey,Vdq" Encoding:"evex m:1 p:1 l:0 w:0 0x7E /r"/"MR" + // Pos:3278 Instruction:"VMOVD Ey,Vdq" Encoding:"evex m:1 p:1 l:0 w:0 0x7E /r"/"MR" { .Instruction = ND_INS_VMOVD, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1324, + .Mnemonic = 1355, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -90587,6 +94995,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E9NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -90600,12 +95009,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3238 Instruction:"VMOVD Vdq,Wd" Encoding:"evex m:1 p:2 l:0 w:0 0x7E /r"/"RM" + // Pos:3279 Instruction:"VMOVD Vdq,Wd" Encoding:"evex m:1 p:2 l:0 w:0 0x7E /r"/"RM" { .Instruction = ND_INS_VMOVD, .Category = ND_CAT_AVX10PARTCOPY, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1324, + .Mnemonic = 1355, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -90614,6 +95023,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E9NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -90627,12 +95037,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3239 Instruction:"VMOVD Wd,Vdq" Encoding:"evex m:1 p:1 l:0 w:0 0xD6 /r"/"MR" + // Pos:3280 Instruction:"VMOVD Wd,Vdq" Encoding:"evex m:1 p:1 l:0 w:0 0xD6 /r"/"MR" { .Instruction = ND_INS_VMOVD, .Category = ND_CAT_AVX10PARTCOPY, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1324, + .Mnemonic = 1355, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -90641,6 +95051,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E9NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -90654,12 +95065,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3240 Instruction:"VMOVD Vdq,Ey" Encoding:"vex m:1 p:1 l:0 w:0 0x6E /r"/"RM" + // Pos:3281 Instruction:"VMOVD Vdq,Ey" Encoding:"vex m:1 p:1 l:0 w:0 0x6E /r"/"RM" { .Instruction = ND_INS_VMOVD, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX, - .Mnemonic = 1324, + .Mnemonic = 1355, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -90668,6 +95079,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -90681,12 +95093,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3241 Instruction:"VMOVD Ey,Vd" Encoding:"vex m:1 p:1 l:0 w:0 0x7E /r"/"MR" + // Pos:3282 Instruction:"VMOVD Ey,Vd" Encoding:"vex m:1 p:1 l:0 w:0 0x7E /r"/"MR" { .Instruction = ND_INS_VMOVD, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX, - .Mnemonic = 1324, + .Mnemonic = 1355, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -90695,6 +95107,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -90708,12 +95121,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3242 Instruction:"VMOVDDUP Vdq{K}{z},aKq,Wq" Encoding:"evex m:1 p:3 l:0 w:1 0x12 /r"/"RAM" + // Pos:3283 Instruction:"VMOVDDUP Vdq{K}{z},aKq,Wq" Encoding:"evex m:1 p:3 l:0 w:1 0x12 /r"/"RAM" { .Instruction = ND_INS_VMOVDDUP, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1325, + .Mnemonic = 1356, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -90722,6 +95135,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E5NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -90736,12 +95150,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3243 Instruction:"VMOVDDUP Vqq{K}{z},aKq,Wqq" Encoding:"evex m:1 p:3 l:1 w:1 0x12 /r"/"RAM" + // Pos:3284 Instruction:"VMOVDDUP Vqq{K}{z},aKq,Wqq" Encoding:"evex m:1 p:3 l:1 w:1 0x12 /r"/"RAM" { .Instruction = ND_INS_VMOVDDUP, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1325, + .Mnemonic = 1356, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -90750,6 +95164,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E5NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -90764,12 +95179,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3244 Instruction:"VMOVDDUP Voq{K}{z},aKq,Woq" Encoding:"evex m:1 p:3 l:2 w:1 0x12 /r"/"RAM" + // Pos:3285 Instruction:"VMOVDDUP Voq{K}{z},aKq,Woq" Encoding:"evex m:1 p:3 l:2 w:1 0x12 /r"/"RAM" { .Instruction = ND_INS_VMOVDDUP, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1325, + .Mnemonic = 1356, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -90778,6 +95193,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E5NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -90792,12 +95208,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3245 Instruction:"VMOVDDUP Vdq,Wq" Encoding:"vex m:1 p:3 l:0 w:i 0x12 /r"/"RM" + // Pos:3286 Instruction:"VMOVDDUP Vdq,Wq" Encoding:"vex m:1 p:3 l:0 w:i 0x12 /r"/"RM" { .Instruction = ND_INS_VMOVDDUP, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX, - .Mnemonic = 1325, + .Mnemonic = 1356, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -90806,6 +95222,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -90819,12 +95236,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3246 Instruction:"VMOVDDUP Vqq,Wqq" Encoding:"vex m:1 p:3 l:1 w:i 0x12 /r"/"RM" + // Pos:3287 Instruction:"VMOVDDUP Vqq,Wqq" Encoding:"vex m:1 p:3 l:1 w:i 0x12 /r"/"RM" { .Instruction = ND_INS_VMOVDDUP, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX, - .Mnemonic = 1325, + .Mnemonic = 1356, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -90833,6 +95250,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -90846,12 +95264,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3247 Instruction:"VMOVDQA Vx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0x6F /r"/"RM" + // Pos:3288 Instruction:"VMOVDQA Vx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0x6F /r"/"RM" { .Instruction = ND_INS_VMOVDQA, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX, - .Mnemonic = 1326, + .Mnemonic = 1357, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -90860,6 +95278,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_1, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -90873,12 +95292,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3248 Instruction:"VMOVDQA Wx,Vx" Encoding:"vex m:1 p:1 l:x w:i 0x7F /r"/"MR" + // Pos:3289 Instruction:"VMOVDQA Wx,Vx" Encoding:"vex m:1 p:1 l:x w:i 0x7F /r"/"MR" { .Instruction = ND_INS_VMOVDQA, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX, - .Mnemonic = 1326, + .Mnemonic = 1357, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -90887,6 +95306,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_1, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -90900,12 +95320,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3249 Instruction:"VMOVDQA32 Vfv{K}{z},aKq,Wfv" Encoding:"evex m:1 p:1 l:x w:0 0x6F /r"/"RAM" + // Pos:3290 Instruction:"VMOVDQA32 Vfv{K}{z},aKq,Wfv" Encoding:"evex m:1 p:1 l:x w:0 0x6F /r"/"RAM" { .Instruction = ND_INS_VMOVDQA32, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1327, + .Mnemonic = 1358, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -90914,6 +95334,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E1, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -90928,12 +95349,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3250 Instruction:"VMOVDQA32 Wfv{K}{z},aKq,Vfv" Encoding:"evex m:1 p:1 l:x w:0 0x7F /r"/"MAR" + // Pos:3291 Instruction:"VMOVDQA32 Wfv{K}{z},aKq,Vfv" Encoding:"evex m:1 p:1 l:x w:0 0x7F /r"/"MAR" { .Instruction = ND_INS_VMOVDQA32, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1327, + .Mnemonic = 1358, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -90942,6 +95363,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E1, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -90956,12 +95378,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3251 Instruction:"VMOVDQA64 Vfv{K}{z},aKq,Wfv" Encoding:"evex m:1 p:1 l:x w:1 0x6F /r"/"RAM" + // Pos:3292 Instruction:"VMOVDQA64 Vfv{K}{z},aKq,Wfv" Encoding:"evex m:1 p:1 l:x w:1 0x6F /r"/"RAM" { .Instruction = ND_INS_VMOVDQA64, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1328, + .Mnemonic = 1359, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -90970,6 +95392,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E1, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -90984,12 +95407,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3252 Instruction:"VMOVDQA64 Wfv{K}{z},aKq,Vfv" Encoding:"evex m:1 p:1 l:x w:1 0x7F /r"/"MAR" + // Pos:3293 Instruction:"VMOVDQA64 Wfv{K}{z},aKq,Vfv" Encoding:"evex m:1 p:1 l:x w:1 0x7F /r"/"MAR" { .Instruction = ND_INS_VMOVDQA64, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1328, + .Mnemonic = 1359, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -90998,6 +95421,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E1, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -91012,12 +95436,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3253 Instruction:"VMOVDQU Vx,Wx" Encoding:"vex m:1 p:2 l:x w:i 0x6F /r"/"RM" + // Pos:3294 Instruction:"VMOVDQU Vx,Wx" Encoding:"vex m:1 p:2 l:x w:i 0x6F /r"/"RM" { .Instruction = ND_INS_VMOVDQU, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX, - .Mnemonic = 1329, + .Mnemonic = 1360, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -91026,6 +95450,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -91039,12 +95464,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3254 Instruction:"VMOVDQU Wx,Vx" Encoding:"vex m:1 p:2 l:x w:i 0x7F /r"/"MR" + // Pos:3295 Instruction:"VMOVDQU Wx,Vx" Encoding:"vex m:1 p:2 l:x w:i 0x7F /r"/"MR" { .Instruction = ND_INS_VMOVDQU, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX, - .Mnemonic = 1329, + .Mnemonic = 1360, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -91053,6 +95478,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -91066,12 +95492,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3255 Instruction:"VMOVDQU16 Vfv{K}{z},aKq,Wfv" Encoding:"evex m:1 p:3 l:x w:1 0x6F /r"/"RAM" + // Pos:3296 Instruction:"VMOVDQU16 Vfv{K}{z},aKq,Wfv" Encoding:"evex m:1 p:3 l:x w:1 0x6F /r"/"RAM" { .Instruction = ND_INS_VMOVDQU16, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1330, + .Mnemonic = 1361, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -91080,6 +95506,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -91094,12 +95521,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3256 Instruction:"VMOVDQU16 Wfv{K}{z},aKq,Vfv" Encoding:"evex m:1 p:3 l:x w:1 0x7F /r"/"MAR" + // Pos:3297 Instruction:"VMOVDQU16 Wfv{K}{z},aKq,Vfv" Encoding:"evex m:1 p:3 l:x w:1 0x7F /r"/"MAR" { .Instruction = ND_INS_VMOVDQU16, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1330, + .Mnemonic = 1361, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -91108,6 +95535,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -91122,12 +95550,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3257 Instruction:"VMOVDQU32 Vfv{K}{z},aKq,Wfv" Encoding:"evex m:1 p:2 l:x w:0 0x6F /r"/"RAM" + // Pos:3298 Instruction:"VMOVDQU32 Vfv{K}{z},aKq,Wfv" Encoding:"evex m:1 p:2 l:x w:0 0x6F /r"/"RAM" { .Instruction = ND_INS_VMOVDQU32, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1331, + .Mnemonic = 1362, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -91136,6 +95564,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -91150,12 +95579,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3258 Instruction:"VMOVDQU32 Wfv{K}{z},aKq,Vfv" Encoding:"evex m:1 p:2 l:x w:0 0x7F /r"/"MAR" + // Pos:3299 Instruction:"VMOVDQU32 Wfv{K}{z},aKq,Vfv" Encoding:"evex m:1 p:2 l:x w:0 0x7F /r"/"MAR" { .Instruction = ND_INS_VMOVDQU32, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1331, + .Mnemonic = 1362, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -91164,6 +95593,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -91178,12 +95608,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3259 Instruction:"VMOVDQU64 Vfv{K}{z},aKq,Wfv" Encoding:"evex m:1 p:2 l:x w:1 0x6F /r"/"RAM" + // Pos:3300 Instruction:"VMOVDQU64 Vfv{K}{z},aKq,Wfv" Encoding:"evex m:1 p:2 l:x w:1 0x6F /r"/"RAM" { .Instruction = ND_INS_VMOVDQU64, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1332, + .Mnemonic = 1363, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -91192,6 +95622,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -91206,12 +95637,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3260 Instruction:"VMOVDQU64 Wfv{K}{z},aKq,Vfv" Encoding:"evex m:1 p:2 l:x w:1 0x7F /r"/"MAR" + // Pos:3301 Instruction:"VMOVDQU64 Wfv{K}{z},aKq,Vfv" Encoding:"evex m:1 p:2 l:x w:1 0x7F /r"/"MAR" { .Instruction = ND_INS_VMOVDQU64, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1332, + .Mnemonic = 1363, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -91220,6 +95651,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -91234,12 +95666,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3261 Instruction:"VMOVDQU8 Vfv{K}{z},aKq,Wfv" Encoding:"evex m:1 p:3 l:x w:0 0x6F /r"/"RAM" + // Pos:3302 Instruction:"VMOVDQU8 Vfv{K}{z},aKq,Wfv" Encoding:"evex m:1 p:3 l:x w:0 0x6F /r"/"RAM" { .Instruction = ND_INS_VMOVDQU8, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1333, + .Mnemonic = 1364, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -91248,6 +95680,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -91262,12 +95695,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3262 Instruction:"VMOVDQU8 Wfv{K}{z},aKq,Vfv" Encoding:"evex m:1 p:3 l:x w:0 0x7F /r"/"MAR" + // Pos:3303 Instruction:"VMOVDQU8 Wfv{K}{z},aKq,Vfv" Encoding:"evex m:1 p:3 l:x w:0 0x7F /r"/"MAR" { .Instruction = ND_INS_VMOVDQU8, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1333, + .Mnemonic = 1364, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -91276,6 +95709,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -91290,12 +95724,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3263 Instruction:"VMOVHLPS Vdq,Hdq,Udq" Encoding:"evex m:1 p:0 l:0 w:0 0x12 /r:reg"/"RVM" + // Pos:3304 Instruction:"VMOVHLPS Vdq,Hdq,Udq" Encoding:"evex m:1 p:0 l:0 w:0 0x12 /r:reg"/"RVM" { .Instruction = ND_INS_VMOVHLPS, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1334, + .Mnemonic = 1365, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -91304,6 +95738,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E7NM, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -91318,12 +95753,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3264 Instruction:"VMOVHLPS Vdq,Hdq,Udq" Encoding:"vex m:1 p:0 l:0 w:i 0x12 /r:reg"/"RVM" + // Pos:3305 Instruction:"VMOVHLPS Vdq,Hdq,Udq" Encoding:"vex m:1 p:0 l:0 w:i 0x12 /r:reg"/"RVM" { .Instruction = ND_INS_VMOVHLPS, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1334, + .Mnemonic = 1365, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -91332,6 +95767,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_7, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -91346,12 +95782,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3265 Instruction:"VMOVHPD Vdq,Hdq,Mq" Encoding:"evex m:1 p:1 l:0 w:1 0x16 /r:mem"/"RVM" + // Pos:3306 Instruction:"VMOVHPD Vdq,Hdq,Mq" Encoding:"evex m:1 p:1 l:0 w:1 0x16 /r:mem"/"RVM" { .Instruction = ND_INS_VMOVHPD, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1335, + .Mnemonic = 1366, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -91360,6 +95796,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E9NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -91374,12 +95811,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3266 Instruction:"VMOVHPD Mq,Vdq" Encoding:"evex m:1 p:1 l:0 w:1 0x17 /r:mem"/"MR" + // Pos:3307 Instruction:"VMOVHPD Mq,Vdq" Encoding:"evex m:1 p:1 l:0 w:1 0x17 /r:mem"/"MR" { .Instruction = ND_INS_VMOVHPD, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1335, + .Mnemonic = 1366, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -91388,6 +95825,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E9NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -91401,12 +95839,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3267 Instruction:"VMOVHPD Vdq,Hdq,Mq" Encoding:"vex m:1 p:1 l:0 w:i 0x16 /r:mem"/"RVM" + // Pos:3308 Instruction:"VMOVHPD Vdq,Hdq,Mq" Encoding:"vex m:1 p:1 l:0 w:i 0x16 /r:mem"/"RVM" { .Instruction = ND_INS_VMOVHPD, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX, - .Mnemonic = 1335, + .Mnemonic = 1366, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -91415,6 +95853,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -91429,12 +95868,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3268 Instruction:"VMOVHPD Mq,Vdq" Encoding:"vex m:1 p:1 l:0 w:i 0x17 /r:mem"/"MR" + // Pos:3309 Instruction:"VMOVHPD Mq,Vdq" Encoding:"vex m:1 p:1 l:0 w:i 0x17 /r:mem"/"MR" { .Instruction = ND_INS_VMOVHPD, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX, - .Mnemonic = 1335, + .Mnemonic = 1366, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -91443,6 +95882,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -91456,12 +95896,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3269 Instruction:"VMOVHPS Vdq,Hdq,Mq" Encoding:"evex m:1 p:0 l:0 w:0 0x16 /r:mem"/"RVM" + // Pos:3310 Instruction:"VMOVHPS Vdq,Hdq,Mq" Encoding:"evex m:1 p:0 l:0 w:0 0x16 /r:mem"/"RVM" { .Instruction = ND_INS_VMOVHPS, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1336, + .Mnemonic = 1367, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -91470,6 +95910,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E9NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -91484,12 +95925,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3270 Instruction:"VMOVHPS Mq,Vdq" Encoding:"evex m:1 p:0 l:0 w:0 0x17 /r:mem"/"MR" + // Pos:3311 Instruction:"VMOVHPS Mq,Vdq" Encoding:"evex m:1 p:0 l:0 w:0 0x17 /r:mem"/"MR" { .Instruction = ND_INS_VMOVHPS, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1336, + .Mnemonic = 1367, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -91498,6 +95939,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E9NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -91511,12 +95953,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3271 Instruction:"VMOVHPS Vdq,Hdq,Mq" Encoding:"vex m:1 p:0 l:0 w:i 0x16 /r:mem"/"RVM" + // Pos:3312 Instruction:"VMOVHPS Vdq,Hdq,Mq" Encoding:"vex m:1 p:0 l:0 w:i 0x16 /r:mem"/"RVM" { .Instruction = ND_INS_VMOVHPS, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX, - .Mnemonic = 1336, + .Mnemonic = 1367, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -91525,6 +95967,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -91539,12 +95982,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3272 Instruction:"VMOVHPS Mq,Vdq" Encoding:"vex m:1 p:0 l:0 w:i 0x17 /r:mem"/"MR" + // Pos:3313 Instruction:"VMOVHPS Mq,Vdq" Encoding:"vex m:1 p:0 l:0 w:i 0x17 /r:mem"/"MR" { .Instruction = ND_INS_VMOVHPS, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX, - .Mnemonic = 1336, + .Mnemonic = 1367, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -91553,6 +95996,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -91566,12 +96010,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3273 Instruction:"VMOVLHPS Vdq,Hdq,Udq" Encoding:"evex m:1 p:0 l:0 w:0 0x16 /r:reg"/"RVM" + // Pos:3314 Instruction:"VMOVLHPS Vdq,Hdq,Udq" Encoding:"evex m:1 p:0 l:0 w:0 0x16 /r:reg"/"RVM" { .Instruction = ND_INS_VMOVLHPS, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1337, + .Mnemonic = 1368, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -91580,6 +96024,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E7NM, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -91594,12 +96039,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3274 Instruction:"VMOVLHPS Vdq,Hdq,Udq" Encoding:"vex m:1 p:0 l:0 w:i 0x16 /r:reg"/"RVM" + // Pos:3315 Instruction:"VMOVLHPS Vdq,Hdq,Udq" Encoding:"vex m:1 p:0 l:0 w:i 0x16 /r:reg"/"RVM" { .Instruction = ND_INS_VMOVLHPS, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1337, + .Mnemonic = 1368, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -91608,6 +96053,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_7, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -91622,12 +96068,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3275 Instruction:"VMOVLPD Vdq,Hdq,Mq" Encoding:"evex m:1 p:1 l:0 w:1 0x12 /r:mem"/"RVM" + // Pos:3316 Instruction:"VMOVLPD Vdq,Hdq,Mq" Encoding:"evex m:1 p:1 l:0 w:1 0x12 /r:mem"/"RVM" { .Instruction = ND_INS_VMOVLPD, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1338, + .Mnemonic = 1369, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -91636,6 +96082,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E9NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -91650,12 +96097,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3276 Instruction:"VMOVLPD Mq,Vdq" Encoding:"evex m:1 p:1 l:0 w:1 0x13 /r:mem"/"MR" + // Pos:3317 Instruction:"VMOVLPD Mq,Vdq" Encoding:"evex m:1 p:1 l:0 w:1 0x13 /r:mem"/"MR" { .Instruction = ND_INS_VMOVLPD, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1338, + .Mnemonic = 1369, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -91664,6 +96111,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E9NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -91677,12 +96125,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3277 Instruction:"VMOVLPD Vdq,Hdq,Mq" Encoding:"vex m:1 p:1 l:0 w:i 0x12 /r:mem"/"RVM" + // Pos:3318 Instruction:"VMOVLPD Vdq,Hdq,Mq" Encoding:"vex m:1 p:1 l:0 w:i 0x12 /r:mem"/"RVM" { .Instruction = ND_INS_VMOVLPD, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX, - .Mnemonic = 1338, + .Mnemonic = 1369, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -91691,6 +96139,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -91705,12 +96154,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3278 Instruction:"VMOVLPD Mq,Vdq" Encoding:"vex m:1 p:1 l:0 w:i 0x13 /r:mem"/"MR" + // Pos:3319 Instruction:"VMOVLPD Mq,Vdq" Encoding:"vex m:1 p:1 l:0 w:i 0x13 /r:mem"/"MR" { .Instruction = ND_INS_VMOVLPD, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX, - .Mnemonic = 1338, + .Mnemonic = 1369, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -91719,6 +96168,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -91732,12 +96182,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3279 Instruction:"VMOVLPS Vdq,Hdq,Mq" Encoding:"evex m:1 p:0 l:0 w:0 0x12 /r:mem"/"RVM" + // Pos:3320 Instruction:"VMOVLPS Vdq,Hdq,Mq" Encoding:"evex m:1 p:0 l:0 w:0 0x12 /r:mem"/"RVM" { .Instruction = ND_INS_VMOVLPS, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1339, + .Mnemonic = 1370, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -91746,6 +96196,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E9NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -91760,12 +96211,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3280 Instruction:"VMOVLPS Mq,Vdq" Encoding:"evex m:1 p:0 l:0 w:0 0x13 /r:mem"/"MR" + // Pos:3321 Instruction:"VMOVLPS Mq,Vdq" Encoding:"evex m:1 p:0 l:0 w:0 0x13 /r:mem"/"MR" { .Instruction = ND_INS_VMOVLPS, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1339, + .Mnemonic = 1370, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -91774,6 +96225,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E9NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -91787,12 +96239,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3281 Instruction:"VMOVLPS Vdq,Hdq,Mq" Encoding:"vex m:1 p:0 l:0 w:i 0x12 /r:mem"/"RVM" + // Pos:3322 Instruction:"VMOVLPS Vdq,Hdq,Mq" Encoding:"vex m:1 p:0 l:0 w:i 0x12 /r:mem"/"RVM" { .Instruction = ND_INS_VMOVLPS, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX, - .Mnemonic = 1339, + .Mnemonic = 1370, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -91801,6 +96253,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -91815,12 +96268,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3282 Instruction:"VMOVLPS Mq,Vdq" Encoding:"vex m:1 p:0 l:0 w:i 0x13 /r:mem"/"MR" + // Pos:3323 Instruction:"VMOVLPS Mq,Vdq" Encoding:"vex m:1 p:0 l:0 w:i 0x13 /r:mem"/"MR" { .Instruction = ND_INS_VMOVLPS, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX, - .Mnemonic = 1339, + .Mnemonic = 1370, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -91829,6 +96282,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -91842,12 +96296,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3283 Instruction:"VMOVMSKPD Gy,Ux" Encoding:"vex m:1 p:1 l:x w:i 0x50 /r:reg"/"RM" + // Pos:3324 Instruction:"VMOVMSKPD Gy,Ux" Encoding:"vex m:1 p:1 l:x w:i 0x50 /r:reg"/"RM" { .Instruction = ND_INS_VMOVMSKPD, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX, - .Mnemonic = 1340, + .Mnemonic = 1371, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -91856,6 +96310,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_7, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -91869,12 +96324,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3284 Instruction:"VMOVMSKPS Gy,Ux" Encoding:"vex m:1 p:0 l:x w:i 0x50 /r:reg"/"RM" + // Pos:3325 Instruction:"VMOVMSKPS Gy,Ux" Encoding:"vex m:1 p:0 l:x w:i 0x50 /r:reg"/"RM" { .Instruction = ND_INS_VMOVMSKPS, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX, - .Mnemonic = 1341, + .Mnemonic = 1372, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -91883,6 +96338,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_7, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -91896,12 +96352,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3285 Instruction:"VMOVNTDQ Mfv,Vfv" Encoding:"evex m:1 p:1 l:x w:0 0xE7 /r:mem"/"MR" + // Pos:3326 Instruction:"VMOVNTDQ Mfv,Vfv" Encoding:"evex m:1 p:1 l:x w:0 0xE7 /r:mem"/"MR" { .Instruction = ND_INS_VMOVNTDQ, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1342, + .Mnemonic = 1373, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -91910,6 +96366,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E1NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -91923,12 +96380,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3286 Instruction:"VMOVNTDQ Mx,Vx" Encoding:"vex m:1 p:1 l:x w:i 0xE7 /r:mem"/"MR" + // Pos:3327 Instruction:"VMOVNTDQ Mx,Vx" Encoding:"vex m:1 p:1 l:x w:i 0xE7 /r:mem"/"MR" { .Instruction = ND_INS_VMOVNTDQ, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1342, + .Mnemonic = 1373, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -91937,6 +96394,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_1, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -91950,12 +96408,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3287 Instruction:"VMOVNTDQA Vfv,Mfv" Encoding:"evex m:2 p:1 l:x w:0 0x2A /r:mem"/"RM" + // Pos:3328 Instruction:"VMOVNTDQA Vfv,Mfv" Encoding:"evex m:2 p:1 l:x w:0 0x2A /r:mem"/"RM" { .Instruction = ND_INS_VMOVNTDQA, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1343, + .Mnemonic = 1374, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -91964,6 +96422,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E1NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -91977,12 +96436,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3288 Instruction:"VMOVNTDQA Vx,Mx" Encoding:"vex m:2 p:1 l:x w:i 0x2A /r:mem"/"RM" + // Pos:3329 Instruction:"VMOVNTDQA Vx,Mx" Encoding:"vex m:2 p:1 l:x w:i 0x2A /r:mem"/"RM" { .Instruction = ND_INS_VMOVNTDQA, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1343, + .Mnemonic = 1374, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -91991,6 +96450,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_1, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -92004,12 +96464,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3289 Instruction:"VMOVNTPD Mfv,Vfv" Encoding:"evex m:1 p:1 l:x w:1 0x2B /r:mem"/"MR" + // Pos:3330 Instruction:"VMOVNTPD Mfv,Vfv" Encoding:"evex m:1 p:1 l:x w:1 0x2B /r:mem"/"MR" { .Instruction = ND_INS_VMOVNTPD, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1344, + .Mnemonic = 1375, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -92018,6 +96478,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E1NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -92031,12 +96492,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3290 Instruction:"VMOVNTPD Mx,Vx" Encoding:"vex m:1 p:1 l:x w:i 0x2B /r:mem"/"MR" + // Pos:3331 Instruction:"VMOVNTPD Mx,Vx" Encoding:"vex m:1 p:1 l:x w:i 0x2B /r:mem"/"MR" { .Instruction = ND_INS_VMOVNTPD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1344, + .Mnemonic = 1375, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -92045,6 +96506,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_1, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -92058,12 +96520,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3291 Instruction:"VMOVNTPS Mfv,Vfv" Encoding:"evex m:1 p:0 l:x w:0 0x2B /r:mem"/"MR" + // Pos:3332 Instruction:"VMOVNTPS Mfv,Vfv" Encoding:"evex m:1 p:0 l:x w:0 0x2B /r:mem"/"MR" { .Instruction = ND_INS_VMOVNTPS, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1345, + .Mnemonic = 1376, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -92072,6 +96534,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E1NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -92085,12 +96548,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3292 Instruction:"VMOVNTPS Mx,Vx" Encoding:"vex m:1 p:0 l:x w:i 0x2B /r:mem"/"MR" + // Pos:3333 Instruction:"VMOVNTPS Mx,Vx" Encoding:"vex m:1 p:0 l:x w:i 0x2B /r:mem"/"MR" { .Instruction = ND_INS_VMOVNTPS, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1345, + .Mnemonic = 1376, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -92099,6 +96562,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_1, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -92112,12 +96576,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3293 Instruction:"VMOVQ Vdq,Eq" Encoding:"evex m:1 p:1 l:0 w:1 0x6E /r"/"RM" + // Pos:3334 Instruction:"VMOVQ Vdq,Eq" Encoding:"evex m:1 p:1 l:0 w:1 0x6E /r"/"RM" { .Instruction = ND_INS_VMOVQ, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1346, + .Mnemonic = 1377, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -92126,6 +96590,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E9NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -92139,12 +96604,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3294 Instruction:"VMOVQ Ey,Vdq" Encoding:"evex m:1 p:1 l:0 w:1 0x7E /r"/"MR" + // Pos:3335 Instruction:"VMOVQ Ey,Vdq" Encoding:"evex m:1 p:1 l:0 w:1 0x7E /r"/"MR" { .Instruction = ND_INS_VMOVQ, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1346, + .Mnemonic = 1377, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -92153,6 +96618,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E9NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -92166,12 +96632,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3295 Instruction:"VMOVQ Vdq,Wq" Encoding:"evex m:1 p:2 l:0 w:1 0x7E /r"/"RM" + // Pos:3336 Instruction:"VMOVQ Vdq,Wq" Encoding:"evex m:1 p:2 l:0 w:1 0x7E /r"/"RM" { .Instruction = ND_INS_VMOVQ, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1346, + .Mnemonic = 1377, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -92180,6 +96646,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E9NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -92193,12 +96660,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3296 Instruction:"VMOVQ Wq,Vdq" Encoding:"evex m:1 p:1 l:0 w:1 0xD6 /r"/"MR" + // Pos:3337 Instruction:"VMOVQ Wq,Vdq" Encoding:"evex m:1 p:1 l:0 w:1 0xD6 /r"/"MR" { .Instruction = ND_INS_VMOVQ, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1346, + .Mnemonic = 1377, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -92207,6 +96674,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E9NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -92220,12 +96688,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3297 Instruction:"VMOVQ Vdq,Ey" Encoding:"vex m:1 p:1 l:0 w:1 0x6E /r"/"RM" + // Pos:3338 Instruction:"VMOVQ Vdq,Ey" Encoding:"vex m:1 p:1 l:0 w:1 0x6E /r"/"RM" { .Instruction = ND_INS_VMOVQ, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX, - .Mnemonic = 1346, + .Mnemonic = 1377, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -92234,6 +96702,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -92247,12 +96716,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3298 Instruction:"VMOVQ Ey,Vq" Encoding:"vex m:1 p:1 l:0 w:1 0x7E /r"/"MR" + // Pos:3339 Instruction:"VMOVQ Ey,Vq" Encoding:"vex m:1 p:1 l:0 w:1 0x7E /r"/"MR" { .Instruction = ND_INS_VMOVQ, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX, - .Mnemonic = 1346, + .Mnemonic = 1377, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -92261,6 +96730,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -92274,12 +96744,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3299 Instruction:"VMOVQ Vdq,Wq" Encoding:"vex m:1 p:2 l:0 w:i 0x7E /r"/"RM" + // Pos:3340 Instruction:"VMOVQ Vdq,Wq" Encoding:"vex m:1 p:2 l:0 w:i 0x7E /r"/"RM" { .Instruction = ND_INS_VMOVQ, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX, - .Mnemonic = 1346, + .Mnemonic = 1377, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -92288,6 +96758,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -92301,12 +96772,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3300 Instruction:"VMOVQ Wq,Vdq" Encoding:"vex m:1 p:1 l:0 w:i 0xD6 /r"/"MR" + // Pos:3341 Instruction:"VMOVQ Wq,Vdq" Encoding:"vex m:1 p:1 l:0 w:i 0xD6 /r"/"MR" { .Instruction = ND_INS_VMOVQ, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX, - .Mnemonic = 1346, + .Mnemonic = 1377, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -92315,6 +96786,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -92328,12 +96800,128 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3301 Instruction:"VMOVSD Vdq{K}{z},aKq,Msd" Encoding:"evex m:1 p:3 l:i w:1 0x10 /r:mem"/"RAM" + // Pos:3342 Instruction:"VMOVRSB Vfv{K}{z},aKq,Wfv" Encoding:"evex m:5 p:3 l:x w:0 0x6F /r:mem"/"RAM" + { + .Instruction = ND_INS_VMOVRSB, + .Category = ND_CAT_DATAXFER, + .IsaSet = ND_SET_MOVRS, + .Mnemonic = 1378, + .ValidPrefixes = 0, + .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, + .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, + .OpsCount = ND_OPS_CNT(3, 0), + .TupleType = ND_TUPLE_FVM, + .ExcType = ND_EXT_E4, + .FpuFlags = 0, + .EvexMode = 0, + .SimdExc = 0, + .TestedFlags = 0, + .ModifiedFlags = 0, + .SetFlags = 0, + .ClearedFlags = 0, + .Attributes = ND_FLAG_MODRM|ND_FLAG_VECTOR|ND_FLAG_NOV|ND_FLAG_NOVP, + .CpuidFlag = ND_CFF_MOVRS, + .Operands = + { + OP(ND_OPT_V, ND_OPS_fv, 0, ND_OPA_W, ND_OPD_MASK|ND_OPD_ZERO, 0), + OP(ND_OPT_aK, ND_OPS_q, 0, ND_OPA_R, 0, 0), + OP(ND_OPT_W, ND_OPS_fv, 0, ND_OPA_R, 0, 0), + }, + }, + + // Pos:3343 Instruction:"VMOVRSD Vfv{K}{z},aKq,Wfv" Encoding:"evex m:5 p:2 l:x w:0 0x6F /r:mem"/"RAM" + { + .Instruction = ND_INS_VMOVRSD, + .Category = ND_CAT_DATAXFER, + .IsaSet = ND_SET_MOVRS, + .Mnemonic = 1379, + .ValidPrefixes = 0, + .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, + .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, + .OpsCount = ND_OPS_CNT(3, 0), + .TupleType = ND_TUPLE_FVM, + .ExcType = ND_EXT_E4, + .FpuFlags = 0, + .EvexMode = 0, + .SimdExc = 0, + .TestedFlags = 0, + .ModifiedFlags = 0, + .SetFlags = 0, + .ClearedFlags = 0, + .Attributes = ND_FLAG_MODRM|ND_FLAG_VECTOR|ND_FLAG_NOV|ND_FLAG_NOVP, + .CpuidFlag = ND_CFF_MOVRS, + .Operands = + { + OP(ND_OPT_V, ND_OPS_fv, 0, ND_OPA_W, ND_OPD_MASK|ND_OPD_ZERO, 0), + OP(ND_OPT_aK, ND_OPS_q, 0, ND_OPA_R, 0, 0), + OP(ND_OPT_W, ND_OPS_fv, 0, ND_OPA_R, 0, 0), + }, + }, + + // Pos:3344 Instruction:"VMOVRSQ Vfv{K}{z},aKq,Wfv" Encoding:"evex m:5 p:2 l:x w:1 0x6F /r:mem"/"RAM" + { + .Instruction = ND_INS_VMOVRSQ, + .Category = ND_CAT_DATAXFER, + .IsaSet = ND_SET_MOVRS, + .Mnemonic = 1380, + .ValidPrefixes = 0, + .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, + .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, + .OpsCount = ND_OPS_CNT(3, 0), + .TupleType = ND_TUPLE_FVM, + .ExcType = ND_EXT_E4, + .FpuFlags = 0, + .EvexMode = 0, + .SimdExc = 0, + .TestedFlags = 0, + .ModifiedFlags = 0, + .SetFlags = 0, + .ClearedFlags = 0, + .Attributes = ND_FLAG_MODRM|ND_FLAG_VECTOR|ND_FLAG_NOV|ND_FLAG_NOVP, + .CpuidFlag = ND_CFF_MOVRS, + .Operands = + { + OP(ND_OPT_V, ND_OPS_fv, 0, ND_OPA_W, ND_OPD_MASK|ND_OPD_ZERO, 0), + OP(ND_OPT_aK, ND_OPS_q, 0, ND_OPA_R, 0, 0), + OP(ND_OPT_W, ND_OPS_fv, 0, ND_OPA_R, 0, 0), + }, + }, + + // Pos:3345 Instruction:"VMOVRSW Vfv{K}{z},aKq,Wfv" Encoding:"evex m:5 p:3 l:x w:1 0x6F /r:mem"/"RAM" + { + .Instruction = ND_INS_VMOVRSW, + .Category = ND_CAT_DATAXFER, + .IsaSet = ND_SET_MOVRS, + .Mnemonic = 1381, + .ValidPrefixes = 0, + .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, + .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, + .OpsCount = ND_OPS_CNT(3, 0), + .TupleType = ND_TUPLE_FVM, + .ExcType = ND_EXT_E4, + .FpuFlags = 0, + .EvexMode = 0, + .SimdExc = 0, + .TestedFlags = 0, + .ModifiedFlags = 0, + .SetFlags = 0, + .ClearedFlags = 0, + .Attributes = ND_FLAG_MODRM|ND_FLAG_VECTOR|ND_FLAG_NOV|ND_FLAG_NOVP, + .CpuidFlag = ND_CFF_MOVRS, + .Operands = + { + OP(ND_OPT_V, ND_OPS_fv, 0, ND_OPA_W, ND_OPD_MASK|ND_OPD_ZERO, 0), + OP(ND_OPT_aK, ND_OPS_q, 0, ND_OPA_R, 0, 0), + OP(ND_OPT_W, ND_OPS_fv, 0, ND_OPA_R, 0, 0), + }, + }, + + // Pos:3346 Instruction:"VMOVSD Vdq{K}{z},aKq,Msd" Encoding:"evex m:1 p:3 l:i w:1 0x10 /r:mem"/"RAM" { .Instruction = ND_INS_VMOVSD, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1347, + .Mnemonic = 1382, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -92342,6 +96930,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E10, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -92356,12 +96945,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3302 Instruction:"VMOVSD Vdq{K}{z},aKq,Hdq,Udq" Encoding:"evex m:1 p:3 l:i w:1 0x10 /r:reg"/"RAVM" + // Pos:3347 Instruction:"VMOVSD Vdq{K}{z},aKq,Hdq,Udq" Encoding:"evex m:1 p:3 l:i w:1 0x10 /r:reg"/"RAVM" { .Instruction = ND_INS_VMOVSD, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1347, + .Mnemonic = 1382, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -92370,6 +96959,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E10, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -92385,12 +96975,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3303 Instruction:"VMOVSD Msd{K},aKq,Vdq" Encoding:"evex m:1 p:3 l:i w:1 0x11 /r:mem"/"MAR" + // Pos:3348 Instruction:"VMOVSD Msd{K},aKq,Vdq" Encoding:"evex m:1 p:3 l:i w:1 0x11 /r:mem"/"MAR" { .Instruction = ND_INS_VMOVSD, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1347, + .Mnemonic = 1382, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK, @@ -92399,6 +96989,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E10, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -92413,12 +97004,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3304 Instruction:"VMOVSD Udq{K}{z},aKq,Hdq,Vdq" Encoding:"evex m:1 p:3 l:i w:1 0x11 /r:reg"/"MAVR" + // Pos:3349 Instruction:"VMOVSD Udq{K}{z},aKq,Hdq,Vdq" Encoding:"evex m:1 p:3 l:i w:1 0x11 /r:reg"/"MAVR" { .Instruction = ND_INS_VMOVSD, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1347, + .Mnemonic = 1382, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -92427,6 +97018,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E10, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -92442,12 +97034,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3305 Instruction:"VMOVSD Vdq,Hdq,Usd" Encoding:"vex m:1 p:3 l:i w:i 0x10 /r:reg"/"RVM" + // Pos:3350 Instruction:"VMOVSD Vdq,Hdq,Usd" Encoding:"vex m:1 p:3 l:i w:i 0x10 /r:reg"/"RVM" { .Instruction = ND_INS_VMOVSD, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX, - .Mnemonic = 1347, + .Mnemonic = 1382, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -92456,6 +97048,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -92470,12 +97063,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3306 Instruction:"VMOVSD Vdq,Mq" Encoding:"vex m:1 p:3 l:i w:i 0x10 /r:mem"/"RM" + // Pos:3351 Instruction:"VMOVSD Vdq,Mq" Encoding:"vex m:1 p:3 l:i w:i 0x10 /r:mem"/"RM" { .Instruction = ND_INS_VMOVSD, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX, - .Mnemonic = 1347, + .Mnemonic = 1382, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -92484,6 +97077,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -92497,12 +97091,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3307 Instruction:"VMOVSD Usd,Hsd,Vsd" Encoding:"vex m:1 p:3 l:i w:i 0x11 /r:reg"/"MVR" + // Pos:3352 Instruction:"VMOVSD Usd,Hsd,Vsd" Encoding:"vex m:1 p:3 l:i w:i 0x11 /r:reg"/"MVR" { .Instruction = ND_INS_VMOVSD, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX, - .Mnemonic = 1347, + .Mnemonic = 1382, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -92511,6 +97105,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -92525,12 +97120,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3308 Instruction:"VMOVSD Mq,Vsd" Encoding:"vex m:1 p:3 l:i w:i 0x11 /r:mem"/"MR" + // Pos:3353 Instruction:"VMOVSD Mq,Vsd" Encoding:"vex m:1 p:3 l:i w:i 0x11 /r:mem"/"MR" { .Instruction = ND_INS_VMOVSD, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX, - .Mnemonic = 1347, + .Mnemonic = 1382, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -92539,6 +97134,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -92552,12 +97148,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3309 Instruction:"VMOVSH Vdq{K}{z},aKq,Wsh" Encoding:"evex m:5 p:2 l:i w:0 0x10 /r:mem"/"RAM" + // Pos:3354 Instruction:"VMOVSH Vdq{K}{z},aKq,Wsh" Encoding:"evex m:5 p:2 l:i w:0 0x10 /r:mem"/"RAM" { .Instruction = ND_INS_VMOVSH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1348, + .Mnemonic = 1383, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -92566,6 +97162,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -92580,12 +97177,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3310 Instruction:"VMOVSH Vdq{K}{z},aKq,Hdq,Wsh" Encoding:"evex m:5 p:2 l:i w:0 0x10 /r:reg"/"RAVM" + // Pos:3355 Instruction:"VMOVSH Vdq{K}{z},aKq,Hdq,Wsh" Encoding:"evex m:5 p:2 l:i w:0 0x10 /r:reg"/"RAVM" { .Instruction = ND_INS_VMOVSH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1348, + .Mnemonic = 1383, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -92594,6 +97191,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -92609,12 +97207,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3311 Instruction:"VMOVSH Wsh{K},aKq,Vdq" Encoding:"evex m:5 p:2 l:i w:0 0x11 /r:mem"/"MAR" + // Pos:3356 Instruction:"VMOVSH Wsh{K},aKq,Vdq" Encoding:"evex m:5 p:2 l:i w:0 0x11 /r:mem"/"MAR" { .Instruction = ND_INS_VMOVSH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1348, + .Mnemonic = 1383, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK, @@ -92623,6 +97221,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -92637,12 +97236,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3312 Instruction:"VMOVSH Wsh{K}{z},aKq,Hdq,Vdq" Encoding:"evex m:5 p:2 l:i w:0 0x11 /r:reg"/"MAVR" + // Pos:3357 Instruction:"VMOVSH Wsh{K}{z},aKq,Hdq,Vdq" Encoding:"evex m:5 p:2 l:i w:0 0x11 /r:reg"/"MAVR" { .Instruction = ND_INS_VMOVSH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1348, + .Mnemonic = 1383, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -92651,6 +97250,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -92666,12 +97266,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3313 Instruction:"VMOVSHDUP Vfv{K}{z},aKq,Wfv" Encoding:"evex m:1 p:2 l:x w:0 0x16 /r"/"RAM" + // Pos:3358 Instruction:"VMOVSHDUP Vfv{K}{z},aKq,Wfv" Encoding:"evex m:1 p:2 l:x w:0 0x16 /r"/"RAM" { .Instruction = ND_INS_VMOVSHDUP, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1349, + .Mnemonic = 1384, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -92680,6 +97280,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NFnb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -92694,12 +97295,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3314 Instruction:"VMOVSHDUP Vx,Wx" Encoding:"vex m:1 p:2 l:x w:i 0x16 /r"/"RM" + // Pos:3359 Instruction:"VMOVSHDUP Vx,Wx" Encoding:"vex m:1 p:2 l:x w:i 0x16 /r"/"RM" { .Instruction = ND_INS_VMOVSHDUP, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1349, + .Mnemonic = 1384, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -92708,6 +97309,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -92721,12 +97323,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3315 Instruction:"VMOVSLDUP Vfv{K}{z},aKq,Wfv" Encoding:"evex m:1 p:2 l:x w:0 0x12 /r"/"RAM" + // Pos:3360 Instruction:"VMOVSLDUP Vfv{K}{z},aKq,Wfv" Encoding:"evex m:1 p:2 l:x w:0 0x12 /r"/"RAM" { .Instruction = ND_INS_VMOVSLDUP, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1350, + .Mnemonic = 1385, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -92735,6 +97337,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NFnb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -92749,12 +97352,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3316 Instruction:"VMOVSLDUP Vx,Wx" Encoding:"vex m:1 p:2 l:x w:i 0x12 /r"/"RM" + // Pos:3361 Instruction:"VMOVSLDUP Vx,Wx" Encoding:"vex m:1 p:2 l:x w:i 0x12 /r"/"RM" { .Instruction = ND_INS_VMOVSLDUP, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1350, + .Mnemonic = 1385, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -92763,6 +97366,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -92776,12 +97380,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3317 Instruction:"VMOVSS Vdq{K}{z},aKq,Mss" Encoding:"evex m:1 p:2 l:i w:0 0x10 /r:mem"/"RAM" + // Pos:3362 Instruction:"VMOVSS Vdq{K}{z},aKq,Mss" Encoding:"evex m:1 p:2 l:i w:0 0x10 /r:mem"/"RAM" { .Instruction = ND_INS_VMOVSS, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1351, + .Mnemonic = 1386, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -92790,6 +97394,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E10, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -92804,12 +97409,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3318 Instruction:"VMOVSS Vdq{K}{z},aKq,Hdq,Udq" Encoding:"evex m:1 p:2 l:i w:0 0x10 /r:reg"/"RAVM" + // Pos:3363 Instruction:"VMOVSS Vdq{K}{z},aKq,Hdq,Udq" Encoding:"evex m:1 p:2 l:i w:0 0x10 /r:reg"/"RAVM" { .Instruction = ND_INS_VMOVSS, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1351, + .Mnemonic = 1386, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -92818,6 +97423,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E10, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -92833,12 +97439,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3319 Instruction:"VMOVSS Mss{K},aKq,Vdq" Encoding:"evex m:1 p:2 l:i w:0 0x11 /r:mem"/"MAR" + // Pos:3364 Instruction:"VMOVSS Mss{K},aKq,Vdq" Encoding:"evex m:1 p:2 l:i w:0 0x11 /r:mem"/"MAR" { .Instruction = ND_INS_VMOVSS, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1351, + .Mnemonic = 1386, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK, @@ -92847,6 +97453,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E10, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -92861,12 +97468,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3320 Instruction:"VMOVSS Udq{K}{z},aKq,Hdq,Vdq" Encoding:"evex m:1 p:2 l:i w:0 0x11 /r:reg"/"MAVR" + // Pos:3365 Instruction:"VMOVSS Udq{K}{z},aKq,Hdq,Vdq" Encoding:"evex m:1 p:2 l:i w:0 0x11 /r:reg"/"MAVR" { .Instruction = ND_INS_VMOVSS, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1351, + .Mnemonic = 1386, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -92875,6 +97482,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E10, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -92890,12 +97498,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3321 Instruction:"VMOVSS Vdq,Hdq,Uss" Encoding:"vex m:1 p:2 l:i w:i 0x10 /r:reg"/"RVM" + // Pos:3366 Instruction:"VMOVSS Vdq,Hdq,Uss" Encoding:"vex m:1 p:2 l:i w:i 0x10 /r:reg"/"RVM" { .Instruction = ND_INS_VMOVSS, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX, - .Mnemonic = 1351, + .Mnemonic = 1386, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -92904,6 +97512,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -92918,12 +97527,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3322 Instruction:"VMOVSS Vdq,Md" Encoding:"vex m:1 p:2 l:i w:i 0x10 /r:mem"/"RM" + // Pos:3367 Instruction:"VMOVSS Vdq,Md" Encoding:"vex m:1 p:2 l:i w:i 0x10 /r:mem"/"RM" { .Instruction = ND_INS_VMOVSS, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX, - .Mnemonic = 1351, + .Mnemonic = 1386, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -92932,6 +97541,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -92945,12 +97555,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3323 Instruction:"VMOVSS Uss,Hss,Vss" Encoding:"vex m:1 p:2 l:i w:i 0x11 /r:reg"/"MVR" + // Pos:3368 Instruction:"VMOVSS Uss,Hss,Vss" Encoding:"vex m:1 p:2 l:i w:i 0x11 /r:reg"/"MVR" { .Instruction = ND_INS_VMOVSS, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX, - .Mnemonic = 1351, + .Mnemonic = 1386, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -92959,6 +97569,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -92973,12 +97584,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3324 Instruction:"VMOVSS Md,Vss" Encoding:"vex m:1 p:2 l:i w:i 0x11 /r:mem"/"MR" + // Pos:3369 Instruction:"VMOVSS Md,Vss" Encoding:"vex m:1 p:2 l:i w:i 0x11 /r:mem"/"MR" { .Instruction = ND_INS_VMOVSS, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX, - .Mnemonic = 1351, + .Mnemonic = 1386, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -92987,6 +97598,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -93000,12 +97612,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3325 Instruction:"VMOVUPD Vfv{K}{z},aKq,Wfv" Encoding:"evex m:1 p:1 l:x w:1 0x10 /r"/"RAM" + // Pos:3370 Instruction:"VMOVUPD Vfv{K}{z},aKq,Wfv" Encoding:"evex m:1 p:1 l:x w:1 0x10 /r"/"RAM" { .Instruction = ND_INS_VMOVUPD, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1352, + .Mnemonic = 1387, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -93014,6 +97626,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -93028,12 +97641,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3326 Instruction:"VMOVUPD Wfv{K}{z},aKq,Vfv" Encoding:"evex m:1 p:1 l:x w:1 0x11 /r"/"MAR" + // Pos:3371 Instruction:"VMOVUPD Wfv{K}{z},aKq,Vfv" Encoding:"evex m:1 p:1 l:x w:1 0x11 /r"/"MAR" { .Instruction = ND_INS_VMOVUPD, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1352, + .Mnemonic = 1387, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -93042,6 +97655,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -93056,12 +97670,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3327 Instruction:"VMOVUPD Vx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0x10 /r"/"RM" + // Pos:3372 Instruction:"VMOVUPD Vx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0x10 /r"/"RM" { .Instruction = ND_INS_VMOVUPD, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX, - .Mnemonic = 1352, + .Mnemonic = 1387, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -93070,6 +97684,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -93083,12 +97698,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3328 Instruction:"VMOVUPD Wx,Vx" Encoding:"vex m:1 p:1 l:x w:i 0x11 /r"/"MR" + // Pos:3373 Instruction:"VMOVUPD Wx,Vx" Encoding:"vex m:1 p:1 l:x w:i 0x11 /r"/"MR" { .Instruction = ND_INS_VMOVUPD, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX, - .Mnemonic = 1352, + .Mnemonic = 1387, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -93097,6 +97712,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -93110,12 +97726,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3329 Instruction:"VMOVUPS Vfv{K}{z},aKq,Wfv" Encoding:"evex m:1 p:0 l:x w:0 0x10 /r"/"RAM" + // Pos:3374 Instruction:"VMOVUPS Vfv{K}{z},aKq,Wfv" Encoding:"evex m:1 p:0 l:x w:0 0x10 /r"/"RAM" { .Instruction = ND_INS_VMOVUPS, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1353, + .Mnemonic = 1388, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -93124,6 +97740,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -93138,12 +97755,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3330 Instruction:"VMOVUPS Wfv{K}{z},aKq,Vfv" Encoding:"evex m:1 p:0 l:x w:0 0x11 /r"/"MAR" + // Pos:3375 Instruction:"VMOVUPS Wfv{K}{z},aKq,Vfv" Encoding:"evex m:1 p:0 l:x w:0 0x11 /r"/"MAR" { .Instruction = ND_INS_VMOVUPS, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1353, + .Mnemonic = 1388, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -93152,6 +97769,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -93166,12 +97784,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3331 Instruction:"VMOVUPS Vx,Wx" Encoding:"vex m:1 p:0 l:x w:i 0x10 /r"/"RM" + // Pos:3376 Instruction:"VMOVUPS Vx,Wx" Encoding:"vex m:1 p:0 l:x w:i 0x10 /r"/"RM" { .Instruction = ND_INS_VMOVUPS, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX, - .Mnemonic = 1353, + .Mnemonic = 1388, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -93180,6 +97798,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -93193,12 +97812,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3332 Instruction:"VMOVUPS Wx,Vx" Encoding:"vex m:1 p:0 l:x w:i 0x11 /r"/"MR" + // Pos:3377 Instruction:"VMOVUPS Wx,Vx" Encoding:"vex m:1 p:0 l:x w:i 0x11 /r"/"MR" { .Instruction = ND_INS_VMOVUPS, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX, - .Mnemonic = 1353, + .Mnemonic = 1388, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -93207,6 +97826,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -93220,12 +97840,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3333 Instruction:"VMOVW Vdq,Mw" Encoding:"evex m:5 p:1 l:0 w:i 0x6E /r:mem"/"RM" + // Pos:3378 Instruction:"VMOVW Vdq,Mw" Encoding:"evex m:5 p:1 l:0 w:i 0x6E /r:mem"/"RM" { .Instruction = ND_INS_VMOVW, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1354, + .Mnemonic = 1389, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -93234,6 +97854,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E9NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -93247,12 +97868,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3334 Instruction:"VMOVW Vdq,Rd" Encoding:"evex m:5 p:1 l:0 w:i 0x6E /r:reg"/"RM" + // Pos:3379 Instruction:"VMOVW Vdq,Rd" Encoding:"evex m:5 p:1 l:0 w:i 0x6E /r:reg"/"RM" { .Instruction = ND_INS_VMOVW, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1354, + .Mnemonic = 1389, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -93261,6 +97882,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E9NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -93274,12 +97896,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3335 Instruction:"VMOVW Vdq,Ww" Encoding:"evex m:5 p:2 l:0 w:0 0x6E /r"/"RM" + // Pos:3380 Instruction:"VMOVW Vdq,Ww" Encoding:"evex m:5 p:2 l:0 w:0 0x6E /r"/"RM" { .Instruction = ND_INS_VMOVW, .Category = ND_CAT_AVX10PARTCOPY, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1354, + .Mnemonic = 1389, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -93288,6 +97910,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E9NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -93301,12 +97924,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3336 Instruction:"VMOVW Mw,Vdq" Encoding:"evex m:5 p:1 l:0 w:i 0x7E /r:mem"/"MR" + // Pos:3381 Instruction:"VMOVW Mw,Vdq" Encoding:"evex m:5 p:1 l:0 w:i 0x7E /r:mem"/"MR" { .Instruction = ND_INS_VMOVW, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1354, + .Mnemonic = 1389, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -93315,6 +97938,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E9NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -93328,12 +97952,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3337 Instruction:"VMOVW Rd,Vdq" Encoding:"evex m:5 p:1 l:0 w:i 0x7E /r:reg"/"MR" + // Pos:3382 Instruction:"VMOVW Rd,Vdq" Encoding:"evex m:5 p:1 l:0 w:i 0x7E /r:reg"/"MR" { .Instruction = ND_INS_VMOVW, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1354, + .Mnemonic = 1389, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -93342,6 +97966,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E9NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -93355,12 +97980,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3338 Instruction:"VMOVW Ww,Vdq" Encoding:"evex m:5 p:2 l:0 w:0 0x7E /r"/"MR" + // Pos:3383 Instruction:"VMOVW Ww,Vdq" Encoding:"evex m:5 p:2 l:0 w:0 0x7E /r"/"MR" { .Instruction = ND_INS_VMOVW, .Category = ND_CAT_AVX10PARTCOPY, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1354, + .Mnemonic = 1389, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -93369,6 +97994,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E9NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -93382,12 +98008,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3339 Instruction:"VMPSADBW Vfv{K}{z},aKq,Hfv,Wfv,Ib" Encoding:"evex m:3 p:2 l:x w:0 0x42 /r ib"/"RAVMI" + // Pos:3384 Instruction:"VMPSADBW Vfv{K}{z},aKq,Hfv,Wfv,Ib" Encoding:"evex m:3 p:2 l:x w:0 0x42 /r ib"/"RAVMI" { .Instruction = ND_INS_VMPSADBW, .Category = ND_CAT_AVX10INT, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1355, + .Mnemonic = 1390, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -93396,6 +98022,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -93412,12 +98039,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3340 Instruction:"VMPSADBW Vx,Hx,Wx,Ib" Encoding:"vex m:3 p:1 l:x w:i 0x42 /r ib"/"RVMI" + // Pos:3385 Instruction:"VMPSADBW Vx,Hx,Wx,Ib" Encoding:"vex m:3 p:1 l:x w:i 0x42 /r ib"/"RVMI" { .Instruction = ND_INS_VMPSADBW, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1355, + .Mnemonic = 1390, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -93426,6 +98053,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -93441,12 +98069,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3341 Instruction:"VMPTRLD Mq" Encoding:"NP 0x0F 0xC7 /6:mem"/"M" + // Pos:3386 Instruction:"VMPTRLD Mq" Encoding:"NP 0x0F 0xC7 /6:mem"/"M" { .Instruction = ND_INS_VMPTRLD, .Category = ND_CAT_VTX, .IsaSet = ND_SET_VTX, - .Mnemonic = 1356, + .Mnemonic = 1391, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_PROT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXR_SEAM|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF|ND_MOD_SMM_OFF, .ValidDecorators = 0, @@ -93455,6 +98083,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .SetFlags = 0, @@ -93468,12 +98097,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3342 Instruction:"VMPTRST Mq" Encoding:"NP 0x0F 0xC7 /7:mem"/"M" + // Pos:3387 Instruction:"VMPTRST Mq" Encoding:"NP 0x0F 0xC7 /7:mem"/"M" { .Instruction = ND_INS_VMPTRST, .Category = ND_CAT_VTX, .IsaSet = ND_SET_VTX, - .Mnemonic = 1357, + .Mnemonic = 1392, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_PROT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXR_SEAM|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF|ND_MOD_SMM_OFF, .ValidDecorators = 0, @@ -93482,6 +98111,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .SetFlags = 0, @@ -93495,12 +98125,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3343 Instruction:"VMREAD Ey,Gy" Encoding:"NP 0x0F 0x78 /r"/"MR" + // Pos:3388 Instruction:"VMREAD Ey,Gy" Encoding:"NP 0x0F 0x78 /r"/"MR" { .Instruction = ND_INS_VMREAD, .Category = ND_CAT_VTX, .IsaSet = ND_SET_VTX, - .Mnemonic = 1358, + .Mnemonic = 1393, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_PROT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXR_SEAM|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF|ND_MOD_SMM_OFF, .ValidDecorators = 0, @@ -93509,6 +98139,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .SetFlags = 0, @@ -93523,12 +98154,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3344 Instruction:"VMRESUME" Encoding:"NP 0x0F 0x01 /0xC3"/"" + // Pos:3389 Instruction:"VMRESUME" Encoding:"NP 0x0F 0x01 /0xC3"/"" { .Instruction = ND_INS_VMRESUME, .Category = ND_CAT_VTX, .IsaSet = ND_SET_VTX, - .Mnemonic = 1359, + .Mnemonic = 1394, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_PROT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXR_SEAM|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF|ND_MOD_SMM_OFF, .ValidDecorators = 0, @@ -93537,6 +98168,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .SetFlags = 0, @@ -93549,12 +98181,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3345 Instruction:"VMRUN" Encoding:"0x0F 0x01 /0xD8"/"" + // Pos:3390 Instruction:"VMRUN" Encoding:"0x0F 0x01 /0xD8"/"" { .Instruction = ND_INS_VMRUN, .Category = ND_CAT_SYSTEM, .IsaSet = ND_SET_SVM, - .Mnemonic = 1360, + .Mnemonic = 1395, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_PROT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXR_SEAM|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF|ND_MOD_SMM_OFF, .ValidDecorators = 0, @@ -93563,6 +98195,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -93575,12 +98208,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3346 Instruction:"VMSAVE" Encoding:"0x0F 0x01 /0xDB"/"" + // Pos:3391 Instruction:"VMSAVE" Encoding:"0x0F 0x01 /0xDB"/"" { .Instruction = ND_INS_VMSAVE, .Category = ND_CAT_SYSTEM, .IsaSet = ND_SET_SVM, - .Mnemonic = 1361, + .Mnemonic = 1396, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_PROT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXR_SEAM|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF|ND_MOD_SMM_OFF, .ValidDecorators = 0, @@ -93589,6 +98222,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -93601,12 +98235,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3347 Instruction:"VMULNEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16" Encoding:"evex m:5 p:1 l:x w:0 0x59 /r"/"RAVM" + // Pos:3392 Instruction:"VMULNEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16" Encoding:"evex m:5 p:1 l:x w:0 0x59 /r"/"RAVM" { .Instruction = ND_INS_VMULNEPBF16, .Category = ND_CAT_AVX10BF16, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1362, + .Mnemonic = 1397, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -93615,6 +98249,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -93630,12 +98265,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3348 Instruction:"VMULPD Vfv{K}{z},aKq,Hfv,Wfv|B64{er}" Encoding:"evex m:1 p:1 l:x w:1 0x59 /r"/"RAVM" + // Pos:3393 Instruction:"VMULPD Vfv{K}{z},aKq,Hfv,Wfv|B64{er}" Encoding:"evex m:1 p:1 l:x w:1 0x59 /r"/"RAVM" { .Instruction = ND_INS_VMULPD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1363, + .Mnemonic = 1398, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -93644,6 +98279,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -93659,12 +98295,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3349 Instruction:"VMULPD Vpd,Hpd,Wpd" Encoding:"vex m:1 p:1 l:x w:i 0x59 /r"/"RVM" + // Pos:3394 Instruction:"VMULPD Vpd,Hpd,Wpd" Encoding:"vex m:1 p:1 l:x w:i 0x59 /r"/"RVM" { .Instruction = ND_INS_VMULPD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1363, + .Mnemonic = 1398, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -93673,6 +98309,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -93687,12 +98324,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3350 Instruction:"VMULPH Vfv{K}{z},aKq,Hfv,Wfv|B16{er}" Encoding:"evex m:5 p:0 l:x w:0 0x59 /r"/"RAVM" + // Pos:3395 Instruction:"VMULPH Vfv{K}{z},aKq,Hfv,Wfv|B16{er}" Encoding:"evex m:5 p:0 l:x w:0 0x59 /r"/"RAVM" { .Instruction = ND_INS_VMULPH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1364, + .Mnemonic = 1399, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -93701,6 +98338,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -93716,12 +98354,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3351 Instruction:"VMULPS Vfv{K}{z},aKq,Hfv,Wfv|B32{er}" Encoding:"evex m:1 p:0 l:x w:0 0x59 /r"/"RAVM" + // Pos:3396 Instruction:"VMULPS Vfv{K}{z},aKq,Hfv,Wfv|B32{er}" Encoding:"evex m:1 p:0 l:x w:0 0x59 /r"/"RAVM" { .Instruction = ND_INS_VMULPS, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1365, + .Mnemonic = 1400, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -93730,6 +98368,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -93745,12 +98384,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3352 Instruction:"VMULPS Vps,Hps,Wps" Encoding:"vex m:1 p:0 l:x w:i 0x59 /r"/"RVM" + // Pos:3397 Instruction:"VMULPS Vps,Hps,Wps" Encoding:"vex m:1 p:0 l:x w:i 0x59 /r"/"RVM" { .Instruction = ND_INS_VMULPS, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1365, + .Mnemonic = 1400, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -93759,6 +98398,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -93773,12 +98413,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3353 Instruction:"VMULSD Vdq{K}{z},aKq,Hdq,Wsd{er}" Encoding:"evex m:1 p:3 l:i w:1 0x59 /r"/"RAVM" + // Pos:3398 Instruction:"VMULSD Vdq{K}{z},aKq,Hdq,Wsd{er}" Encoding:"evex m:1 p:3 l:i w:1 0x59 /r"/"RAVM" { .Instruction = ND_INS_VMULSD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1366, + .Mnemonic = 1401, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -93787,6 +98427,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -93802,12 +98443,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3354 Instruction:"VMULSD Vsd,Hsd,Wsd" Encoding:"vex m:1 p:3 l:i w:i 0x59 /r"/"RVM" + // Pos:3399 Instruction:"VMULSD Vsd,Hsd,Wsd" Encoding:"vex m:1 p:3 l:i w:i 0x59 /r"/"RVM" { .Instruction = ND_INS_VMULSD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1366, + .Mnemonic = 1401, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -93816,6 +98457,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -93830,12 +98472,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3355 Instruction:"VMULSH Vdq{K}{z},aKq,Hdq,Wsh{er}" Encoding:"evex m:5 p:2 l:i w:0 0x59 /r"/"RAVM" + // Pos:3400 Instruction:"VMULSH Vdq{K}{z},aKq,Hdq,Wsh{er}" Encoding:"evex m:5 p:2 l:i w:0 0x59 /r"/"RAVM" { .Instruction = ND_INS_VMULSH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1367, + .Mnemonic = 1402, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -93844,6 +98486,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -93859,12 +98502,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3356 Instruction:"VMULSS Vdq{K}{z},aKq,Hdq,Wss{er}" Encoding:"evex m:1 p:2 l:i w:0 0x59 /r"/"RAVM" + // Pos:3401 Instruction:"VMULSS Vdq{K}{z},aKq,Hdq,Wss{er}" Encoding:"evex m:1 p:2 l:i w:0 0x59 /r"/"RAVM" { .Instruction = ND_INS_VMULSS, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1368, + .Mnemonic = 1403, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -93873,6 +98516,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -93888,12 +98532,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3357 Instruction:"VMULSS Vss,Hss,Wss" Encoding:"vex m:1 p:2 l:i w:i 0x59 /r"/"RVM" + // Pos:3402 Instruction:"VMULSS Vss,Hss,Wss" Encoding:"vex m:1 p:2 l:i w:i 0x59 /r"/"RVM" { .Instruction = ND_INS_VMULSS, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1368, + .Mnemonic = 1403, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -93902,6 +98546,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -93916,12 +98561,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3358 Instruction:"VMWRITE Gy,Ey" Encoding:"NP 0x0F 0x79 /r"/"RM" + // Pos:3403 Instruction:"VMWRITE Gy,Ey" Encoding:"NP 0x0F 0x79 /r"/"RM" { .Instruction = ND_INS_VMWRITE, .Category = ND_CAT_VTX, .IsaSet = ND_SET_VTX, - .Mnemonic = 1369, + .Mnemonic = 1404, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_PROT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXR_SEAM|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF|ND_MOD_SMM_OFF, .ValidDecorators = 0, @@ -93930,6 +98575,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .SetFlags = 0, @@ -93944,12 +98590,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3359 Instruction:"VMXOFF" Encoding:"NP 0x0F 0x01 /0xC4"/"" + // Pos:3404 Instruction:"VMXOFF" Encoding:"NP 0x0F 0x01 /0xC4"/"" { .Instruction = ND_INS_VMXOFF, .Category = ND_CAT_VTX, .IsaSet = ND_SET_VTX, - .Mnemonic = 1370, + .Mnemonic = 1405, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_PROT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXR_SEAM|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF|ND_MOD_SMM_OFF, .ValidDecorators = 0, @@ -93958,6 +98604,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .SetFlags = 0, @@ -93970,12 +98617,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3360 Instruction:"VMXON Mq" Encoding:"0xF3 0x0F 0xC7 /6:mem"/"M" + // Pos:3405 Instruction:"VMXON Mq" Encoding:"0xF3 0x0F 0xC7 /6:mem"/"M" { .Instruction = ND_INS_VMXON, .Category = ND_CAT_VTX, .IsaSet = ND_SET_VTX, - .Mnemonic = 1371, + .Mnemonic = 1406, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_PROT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXR_SEAM|ND_MOD_SGX_OFF|ND_MOD_TSX_OFF|ND_MOD_SMM_OFF, .ValidDecorators = 0, @@ -93984,6 +98631,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .SetFlags = 0, @@ -93997,12 +98645,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3361 Instruction:"VORPD Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:1 p:1 l:x w:1 0x56 /r"/"RAVM" + // Pos:3406 Instruction:"VORPD Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:1 p:1 l:x w:1 0x56 /r"/"RAVM" { .Instruction = ND_INS_VORPD, .Category = ND_CAT_LOGICAL_FP, .IsaSet = ND_SET_AVX512DQ, - .Mnemonic = 1372, + .Mnemonic = 1407, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -94011,6 +98659,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -94026,12 +98675,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3362 Instruction:"VORPD Vpd,Hpd,Wpd" Encoding:"vex m:1 p:1 l:x w:i 0x56 /r"/"RVM" + // Pos:3407 Instruction:"VORPD Vpd,Hpd,Wpd" Encoding:"vex m:1 p:1 l:x w:i 0x56 /r"/"RVM" { .Instruction = ND_INS_VORPD, .Category = ND_CAT_LOGICAL_FP, .IsaSet = ND_SET_AVX, - .Mnemonic = 1372, + .Mnemonic = 1407, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -94040,6 +98689,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -94054,12 +98704,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3363 Instruction:"VORPS Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:1 p:0 l:x w:0 0x56 /r"/"RAVM" + // Pos:3408 Instruction:"VORPS Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:1 p:0 l:x w:0 0x56 /r"/"RAVM" { .Instruction = ND_INS_VORPS, .Category = ND_CAT_LOGICAL_FP, .IsaSet = ND_SET_AVX512DQ, - .Mnemonic = 1373, + .Mnemonic = 1408, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -94068,6 +98718,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -94083,12 +98734,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3364 Instruction:"VORPS Vps,Hps,Wps" Encoding:"vex m:1 p:0 l:x w:i 0x56 /r"/"RVM" + // Pos:3409 Instruction:"VORPS Vps,Hps,Wps" Encoding:"vex m:1 p:0 l:x w:i 0x56 /r"/"RVM" { .Instruction = ND_INS_VORPS, .Category = ND_CAT_LOGICAL_FP, .IsaSet = ND_SET_AVX, - .Mnemonic = 1373, + .Mnemonic = 1408, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -94097,6 +98748,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -94111,12 +98763,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3365 Instruction:"VP2INTERSECTD rKq+1,Hfv,Wfv|B32" Encoding:"evex m:2 p:3 l:x w:0 0x68 /r"/"RVM" + // Pos:3410 Instruction:"VP2INTERSECTD rKq+1,Hfv,Wfv|B32" Encoding:"evex m:2 p:3 l:x w:0 0x68 /r"/"RVM" { .Instruction = ND_INS_VP2INTERSECTD, .Category = ND_CAT_AVX512VP2INTERSECT, .IsaSet = ND_SET_AVX512VP2INTERSECT, - .Mnemonic = 1374, + .Mnemonic = 1409, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_BROADCAST, @@ -94125,6 +98777,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -94139,12 +98792,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3366 Instruction:"VP2INTERSECTQ rKq+1,Hfv,Wfv|B64" Encoding:"evex m:2 p:3 l:x w:1 0x68 /r"/"RVM" + // Pos:3411 Instruction:"VP2INTERSECTQ rKq+1,Hfv,Wfv|B64" Encoding:"evex m:2 p:3 l:x w:1 0x68 /r"/"RVM" { .Instruction = ND_INS_VP2INTERSECTQ, .Category = ND_CAT_AVX512VP2INTERSECT, .IsaSet = ND_SET_AVX512VP2INTERSECT, - .Mnemonic = 1375, + .Mnemonic = 1410, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_BROADCAST, @@ -94153,6 +98806,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -94167,12 +98821,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3367 Instruction:"VP4DPWSSD Voq{K}{z},aKq,Hoq+3,Mdq" Encoding:"evex m:2 p:3 l:2 w:0 0x52 /r:mem"/"RAVM" + // Pos:3412 Instruction:"VP4DPWSSD Voq{K}{z},aKq,Hoq+3,Mdq" Encoding:"evex m:2 p:3 l:2 w:0 0x52 /r:mem"/"RAVM" { .Instruction = ND_INS_VP4DPWSSD, .Category = ND_CAT_VNNIW, .IsaSet = ND_SET_AVX5124VNNIW, - .Mnemonic = 1376, + .Mnemonic = 1411, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -94181,6 +98835,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -94196,12 +98851,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3368 Instruction:"VP4DPWSSDS Voq{K}{z},aKq,Hoq+3,Mdq" Encoding:"evex m:2 p:3 l:2 w:0 0x53 /r:mem"/"RAVM" + // Pos:3413 Instruction:"VP4DPWSSDS Voq{K}{z},aKq,Hoq+3,Mdq" Encoding:"evex m:2 p:3 l:2 w:0 0x53 /r:mem"/"RAVM" { .Instruction = ND_INS_VP4DPWSSDS, .Category = ND_CAT_VNNIW, .IsaSet = ND_SET_AVX5124VNNIW, - .Mnemonic = 1377, + .Mnemonic = 1412, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -94210,6 +98865,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -94225,12 +98881,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3369 Instruction:"VPABSB Vfv{K}{z},aKq,Wfv" Encoding:"evex m:2 p:1 l:x w:x 0x1C /r"/"RAM" + // Pos:3414 Instruction:"VPABSB Vfv{K}{z},aKq,Wfv" Encoding:"evex m:2 p:1 l:x w:x 0x1C /r"/"RAM" { .Instruction = ND_INS_VPABSB, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1378, + .Mnemonic = 1413, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -94239,6 +98895,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -94253,12 +98910,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3370 Instruction:"VPABSB Vx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x1C /r"/"RM" + // Pos:3415 Instruction:"VPABSB Vx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x1C /r"/"RM" { .Instruction = ND_INS_VPABSB, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1378, + .Mnemonic = 1413, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -94267,6 +98924,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -94280,12 +98938,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3371 Instruction:"VPABSD Vfv{K}{z},aKq,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x1E /r"/"RAM" + // Pos:3416 Instruction:"VPABSD Vfv{K}{z},aKq,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x1E /r"/"RAM" { .Instruction = ND_INS_VPABSD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1379, + .Mnemonic = 1414, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -94294,6 +98952,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -94308,12 +98967,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3372 Instruction:"VPABSD Vx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x1E /r"/"RM" + // Pos:3417 Instruction:"VPABSD Vx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x1E /r"/"RM" { .Instruction = ND_INS_VPABSD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1379, + .Mnemonic = 1414, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -94322,6 +98981,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -94335,12 +98995,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3373 Instruction:"VPABSQ Vfv{K}{z},aKq,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x1F /r"/"RAM" + // Pos:3418 Instruction:"VPABSQ Vfv{K}{z},aKq,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x1F /r"/"RAM" { .Instruction = ND_INS_VPABSQ, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1380, + .Mnemonic = 1415, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -94349,6 +99009,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -94363,12 +99024,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3374 Instruction:"VPABSW Vfv{K}{z},aKq,Wfv" Encoding:"evex m:2 p:1 l:x w:x 0x1D /r"/"RAM" + // Pos:3419 Instruction:"VPABSW Vfv{K}{z},aKq,Wfv" Encoding:"evex m:2 p:1 l:x w:x 0x1D /r"/"RAM" { .Instruction = ND_INS_VPABSW, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1381, + .Mnemonic = 1416, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -94377,6 +99038,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -94391,12 +99053,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3375 Instruction:"VPABSW Vx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x1D /r"/"RM" + // Pos:3420 Instruction:"VPABSW Vx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x1D /r"/"RM" { .Instruction = ND_INS_VPABSW, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1381, + .Mnemonic = 1416, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -94405,6 +99067,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -94418,12 +99081,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3376 Instruction:"VPACKSSDW Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:1 p:1 l:x w:0 0x6B /r"/"RAVM" + // Pos:3421 Instruction:"VPACKSSDW Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:1 p:1 l:x w:0 0x6B /r"/"RAVM" { .Instruction = ND_INS_VPACKSSDW, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1382, + .Mnemonic = 1417, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -94432,6 +99095,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -94447,12 +99111,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3377 Instruction:"VPACKSSDW Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0x6B /r"/"RVM" + // Pos:3422 Instruction:"VPACKSSDW Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0x6B /r"/"RVM" { .Instruction = ND_INS_VPACKSSDW, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1382, + .Mnemonic = 1417, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -94461,6 +99125,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -94475,12 +99140,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3378 Instruction:"VPACKSSWB Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0x63 /r"/"RAVM" + // Pos:3423 Instruction:"VPACKSSWB Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0x63 /r"/"RAVM" { .Instruction = ND_INS_VPACKSSWB, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1383, + .Mnemonic = 1418, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -94489,6 +99154,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NFnb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -94504,12 +99170,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3379 Instruction:"VPACKSSWB Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0x63 /r"/"RVM" + // Pos:3424 Instruction:"VPACKSSWB Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0x63 /r"/"RVM" { .Instruction = ND_INS_VPACKSSWB, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1383, + .Mnemonic = 1418, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -94518,6 +99184,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -94532,12 +99199,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3380 Instruction:"VPACKUSDW Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x2B /r"/"RAVM" + // Pos:3425 Instruction:"VPACKUSDW Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x2B /r"/"RAVM" { .Instruction = ND_INS_VPACKUSDW, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1384, + .Mnemonic = 1419, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -94546,6 +99213,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -94561,12 +99229,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3381 Instruction:"VPACKUSDW Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x2B /r"/"RVM" + // Pos:3426 Instruction:"VPACKUSDW Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x2B /r"/"RVM" { .Instruction = ND_INS_VPACKUSDW, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1384, + .Mnemonic = 1419, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -94575,6 +99243,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -94589,12 +99258,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3382 Instruction:"VPACKUSWB Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0x67 /r"/"RAVM" + // Pos:3427 Instruction:"VPACKUSWB Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0x67 /r"/"RAVM" { .Instruction = ND_INS_VPACKUSWB, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1385, + .Mnemonic = 1420, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -94603,6 +99272,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NFnb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -94618,12 +99288,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3383 Instruction:"VPACKUSWB Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0x67 /r"/"RVM" + // Pos:3428 Instruction:"VPACKUSWB Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0x67 /r"/"RVM" { .Instruction = ND_INS_VPACKUSWB, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1385, + .Mnemonic = 1420, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -94632,6 +99302,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -94646,12 +99317,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3384 Instruction:"VPADDB Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0xFC /r"/"RAVM" + // Pos:3429 Instruction:"VPADDB Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0xFC /r"/"RAVM" { .Instruction = ND_INS_VPADDB, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1386, + .Mnemonic = 1421, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -94660,6 +99331,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -94675,12 +99347,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3385 Instruction:"VPADDB Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xFC /r"/"RVM" + // Pos:3430 Instruction:"VPADDB Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xFC /r"/"RVM" { .Instruction = ND_INS_VPADDB, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1386, + .Mnemonic = 1421, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -94689,6 +99361,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -94703,12 +99376,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3386 Instruction:"VPADDD Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:1 p:1 l:x w:0 0xFE /r"/"RAVM" + // Pos:3431 Instruction:"VPADDD Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:1 p:1 l:x w:0 0xFE /r"/"RAVM" { .Instruction = ND_INS_VPADDD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1387, + .Mnemonic = 1422, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -94717,6 +99390,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -94732,12 +99406,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3387 Instruction:"VPADDD Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xFE /r"/"RVM" + // Pos:3432 Instruction:"VPADDD Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xFE /r"/"RVM" { .Instruction = ND_INS_VPADDD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1387, + .Mnemonic = 1422, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -94746,6 +99420,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -94760,12 +99435,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3388 Instruction:"VPADDQ Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:1 p:1 l:x w:1 0xD4 /r"/"RAVM" + // Pos:3433 Instruction:"VPADDQ Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:1 p:1 l:x w:1 0xD4 /r"/"RAVM" { .Instruction = ND_INS_VPADDQ, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1388, + .Mnemonic = 1423, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -94774,6 +99449,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -94789,12 +99465,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3389 Instruction:"VPADDQ Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xD4 /r"/"RVM" + // Pos:3434 Instruction:"VPADDQ Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xD4 /r"/"RVM" { .Instruction = ND_INS_VPADDQ, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1388, + .Mnemonic = 1423, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -94803,6 +99479,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -94817,12 +99494,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3390 Instruction:"VPADDSB Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0xEC /r"/"RAVM" + // Pos:3435 Instruction:"VPADDSB Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0xEC /r"/"RAVM" { .Instruction = ND_INS_VPADDSB, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1389, + .Mnemonic = 1424, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -94831,6 +99508,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -94846,12 +99524,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3391 Instruction:"VPADDSB Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xEC /r"/"RVM" + // Pos:3436 Instruction:"VPADDSB Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xEC /r"/"RVM" { .Instruction = ND_INS_VPADDSB, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1389, + .Mnemonic = 1424, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -94860,6 +99538,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -94874,12 +99553,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3392 Instruction:"VPADDSW Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0xED /r"/"RAVM" + // Pos:3437 Instruction:"VPADDSW Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0xED /r"/"RAVM" { .Instruction = ND_INS_VPADDSW, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1390, + .Mnemonic = 1425, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -94888,6 +99567,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -94903,12 +99583,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3393 Instruction:"VPADDSW Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xED /r"/"RVM" + // Pos:3438 Instruction:"VPADDSW Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xED /r"/"RVM" { .Instruction = ND_INS_VPADDSW, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1390, + .Mnemonic = 1425, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -94917,6 +99597,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -94931,12 +99612,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3394 Instruction:"VPADDUSB Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0xDC /r"/"RAVM" + // Pos:3439 Instruction:"VPADDUSB Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0xDC /r"/"RAVM" { .Instruction = ND_INS_VPADDUSB, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1391, + .Mnemonic = 1426, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -94945,6 +99626,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -94960,12 +99642,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3395 Instruction:"VPADDUSB Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xDC /r"/"RVM" + // Pos:3440 Instruction:"VPADDUSB Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xDC /r"/"RVM" { .Instruction = ND_INS_VPADDUSB, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1391, + .Mnemonic = 1426, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -94974,6 +99656,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -94988,12 +99671,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3396 Instruction:"VPADDUSW Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0xDD /r"/"RAVM" + // Pos:3441 Instruction:"VPADDUSW Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0xDD /r"/"RAVM" { .Instruction = ND_INS_VPADDUSW, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1392, + .Mnemonic = 1427, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -95002,6 +99685,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -95017,12 +99701,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3397 Instruction:"VPADDUSW Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xDD /r"/"RVM" + // Pos:3442 Instruction:"VPADDUSW Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xDD /r"/"RVM" { .Instruction = ND_INS_VPADDUSW, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1392, + .Mnemonic = 1427, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -95031,6 +99715,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -95045,12 +99730,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3398 Instruction:"VPADDW Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0xFD /r"/"RAVM" + // Pos:3443 Instruction:"VPADDW Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0xFD /r"/"RAVM" { .Instruction = ND_INS_VPADDW, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1393, + .Mnemonic = 1428, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -95059,6 +99744,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -95074,12 +99760,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3399 Instruction:"VPADDW Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xFD /r"/"RVM" + // Pos:3444 Instruction:"VPADDW Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xFD /r"/"RVM" { .Instruction = ND_INS_VPADDW, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1393, + .Mnemonic = 1428, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -95088,6 +99774,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -95102,12 +99789,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3400 Instruction:"VPALIGNR Vfv{K}{z},aKq,Hfv,Wfv,Ib" Encoding:"evex m:3 p:1 l:x w:i 0x0F /r ib"/"RAVMI" + // Pos:3445 Instruction:"VPALIGNR Vfv{K}{z},aKq,Hfv,Wfv,Ib" Encoding:"evex m:3 p:1 l:x w:i 0x0F /r ib"/"RAVMI" { .Instruction = ND_INS_VPALIGNR, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1394, + .Mnemonic = 1429, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -95116,6 +99803,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NFnb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -95132,12 +99820,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3401 Instruction:"VPALIGNR Vx,Hx,Wx,Ib" Encoding:"vex m:3 p:1 l:x w:i 0x0F /r ib"/"RVMI" + // Pos:3446 Instruction:"VPALIGNR Vx,Hx,Wx,Ib" Encoding:"vex m:3 p:1 l:x w:i 0x0F /r ib"/"RVMI" { .Instruction = ND_INS_VPALIGNR, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1394, + .Mnemonic = 1429, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -95146,6 +99834,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -95161,12 +99850,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3402 Instruction:"VPAND Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xDB /r"/"RVM" + // Pos:3447 Instruction:"VPAND Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xDB /r"/"RVM" { .Instruction = ND_INS_VPAND, .Category = ND_CAT_LOGICAL, .IsaSet = ND_SET_AVX, - .Mnemonic = 1395, + .Mnemonic = 1430, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -95175,6 +99864,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -95189,12 +99879,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3403 Instruction:"VPANDD Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:1 p:1 l:x w:0 0xDB /r"/"RAVM" + // Pos:3448 Instruction:"VPANDD Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:1 p:1 l:x w:0 0xDB /r"/"RAVM" { .Instruction = ND_INS_VPANDD, .Category = ND_CAT_LOGICAL, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1396, + .Mnemonic = 1431, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -95203,6 +99893,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -95218,12 +99909,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3404 Instruction:"VPANDN Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xDF /r"/"RVM" + // Pos:3449 Instruction:"VPANDN Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xDF /r"/"RVM" { .Instruction = ND_INS_VPANDN, .Category = ND_CAT_LOGICAL, .IsaSet = ND_SET_AVX, - .Mnemonic = 1397, + .Mnemonic = 1432, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -95232,6 +99923,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -95246,12 +99938,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3405 Instruction:"VPANDND Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:1 p:1 l:x w:0 0xDF /r"/"RAVM" + // Pos:3450 Instruction:"VPANDND Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:1 p:1 l:x w:0 0xDF /r"/"RAVM" { .Instruction = ND_INS_VPANDND, .Category = ND_CAT_LOGICAL, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1398, + .Mnemonic = 1433, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -95260,6 +99952,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -95275,12 +99968,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3406 Instruction:"VPANDNQ Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:1 p:1 l:x w:1 0xDF /r"/"RAVM" + // Pos:3451 Instruction:"VPANDNQ Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:1 p:1 l:x w:1 0xDF /r"/"RAVM" { .Instruction = ND_INS_VPANDNQ, .Category = ND_CAT_LOGICAL, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1399, + .Mnemonic = 1434, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -95289,6 +99982,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -95304,12 +99998,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3407 Instruction:"VPANDQ Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:1 p:1 l:x w:1 0xDB /r"/"RAVM" + // Pos:3452 Instruction:"VPANDQ Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:1 p:1 l:x w:1 0xDB /r"/"RAVM" { .Instruction = ND_INS_VPANDQ, .Category = ND_CAT_LOGICAL, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1400, + .Mnemonic = 1435, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -95318,6 +100012,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -95333,12 +100028,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3408 Instruction:"VPAVGB Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0xE0 /r"/"RAVM" + // Pos:3453 Instruction:"VPAVGB Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0xE0 /r"/"RAVM" { .Instruction = ND_INS_VPAVGB, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1401, + .Mnemonic = 1436, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -95347,6 +100042,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -95362,12 +100058,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3409 Instruction:"VPAVGB Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xE0 /r"/"RVM" + // Pos:3454 Instruction:"VPAVGB Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xE0 /r"/"RVM" { .Instruction = ND_INS_VPAVGB, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1401, + .Mnemonic = 1436, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -95376,6 +100072,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -95390,12 +100087,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3410 Instruction:"VPAVGW Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0xE3 /r"/"RAVM" + // Pos:3455 Instruction:"VPAVGW Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0xE3 /r"/"RAVM" { .Instruction = ND_INS_VPAVGW, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1402, + .Mnemonic = 1437, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -95404,6 +100101,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -95419,12 +100117,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3411 Instruction:"VPAVGW Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xE3 /r"/"RVM" + // Pos:3456 Instruction:"VPAVGW Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xE3 /r"/"RVM" { .Instruction = ND_INS_VPAVGW, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1402, + .Mnemonic = 1437, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -95433,6 +100131,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -95447,12 +100146,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3412 Instruction:"VPBLENDD Vx,Hx,Wx,Ib" Encoding:"vex m:3 p:1 l:x w:0 0x02 /r ib"/"RVMI" + // Pos:3457 Instruction:"VPBLENDD Vx,Hx,Wx,Ib" Encoding:"vex m:3 p:1 l:x w:0 0x02 /r ib"/"RVMI" { .Instruction = ND_INS_VPBLENDD, .Category = ND_CAT_AVX2, .IsaSet = ND_SET_AVX2, - .Mnemonic = 1403, + .Mnemonic = 1438, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -95461,6 +100160,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -95476,12 +100176,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3413 Instruction:"VPBLENDMB Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:2 p:1 l:x w:0 0x66 /r"/"RAVM" + // Pos:3458 Instruction:"VPBLENDMB Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:2 p:1 l:x w:0 0x66 /r"/"RAVM" { .Instruction = ND_INS_VPBLENDMB, .Category = ND_CAT_BLEND, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1404, + .Mnemonic = 1439, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -95490,6 +100190,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -95505,12 +100206,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3414 Instruction:"VPBLENDMD Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x64 /r"/"RAVM" + // Pos:3459 Instruction:"VPBLENDMD Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x64 /r"/"RAVM" { .Instruction = ND_INS_VPBLENDMD, .Category = ND_CAT_BLEND, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1405, + .Mnemonic = 1440, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -95519,6 +100220,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -95534,12 +100236,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3415 Instruction:"VPBLENDMQ Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x64 /r"/"RAVM" + // Pos:3460 Instruction:"VPBLENDMQ Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x64 /r"/"RAVM" { .Instruction = ND_INS_VPBLENDMQ, .Category = ND_CAT_BLEND, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1406, + .Mnemonic = 1441, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -95548,6 +100250,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -95563,12 +100266,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3416 Instruction:"VPBLENDMW Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:2 p:1 l:x w:1 0x66 /r"/"RAVM" + // Pos:3461 Instruction:"VPBLENDMW Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:2 p:1 l:x w:1 0x66 /r"/"RAVM" { .Instruction = ND_INS_VPBLENDMW, .Category = ND_CAT_BLEND, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1407, + .Mnemonic = 1442, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -95577,6 +100280,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -95592,12 +100296,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3417 Instruction:"VPBLENDVB Vx,Hx,Wx,Lx" Encoding:"vex m:3 p:1 l:x w:0 0x4C /r is4"/"RVML" + // Pos:3462 Instruction:"VPBLENDVB Vx,Hx,Wx,Lx" Encoding:"vex m:3 p:1 l:x w:0 0x4C /r is4"/"RVML" { .Instruction = ND_INS_VPBLENDVB, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1408, + .Mnemonic = 1443, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -95606,6 +100310,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -95621,12 +100326,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3418 Instruction:"VPBLENDW Vx,Hx,Wx,Ib" Encoding:"vex m:3 p:1 l:x w:i 0x0E /r ib"/"RVMI" + // Pos:3463 Instruction:"VPBLENDW Vx,Hx,Wx,Ib" Encoding:"vex m:3 p:1 l:x w:i 0x0E /r ib"/"RVMI" { .Instruction = ND_INS_VPBLENDW, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1409, + .Mnemonic = 1444, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -95635,6 +100340,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -95650,12 +100356,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3419 Instruction:"VPBROADCASTB Vfv{K}{z},aKq,Wb" Encoding:"evex m:2 p:1 l:x w:0 0x78 /r"/"RAM" + // Pos:3464 Instruction:"VPBROADCASTB Vfv{K}{z},aKq,Wb" Encoding:"evex m:2 p:1 l:x w:0 0x78 /r"/"RAM" { .Instruction = ND_INS_VPBROADCASTB, .Category = ND_CAT_BROADCAST, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1410, + .Mnemonic = 1445, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -95664,6 +100370,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -95678,12 +100385,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3420 Instruction:"VPBROADCASTB Vfv{K}{z},aKq,Rb" Encoding:"evex m:2 p:1 l:x w:0 0x7A /r:reg"/"RAM" + // Pos:3465 Instruction:"VPBROADCASTB Vfv{K}{z},aKq,Rb" Encoding:"evex m:2 p:1 l:x w:0 0x7A /r:reg"/"RAM" { .Instruction = ND_INS_VPBROADCASTB, .Category = ND_CAT_BROADCAST, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1410, + .Mnemonic = 1445, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -95692,6 +100399,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E7NM, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -95706,12 +100414,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3421 Instruction:"VPBROADCASTB Vx,Wb" Encoding:"vex m:2 p:1 l:x w:0 0x78 /r"/"RM" + // Pos:3466 Instruction:"VPBROADCASTB Vx,Wb" Encoding:"vex m:2 p:1 l:x w:0 0x78 /r"/"RM" { .Instruction = ND_INS_VPBROADCASTB, .Category = ND_CAT_BROADCAST, .IsaSet = ND_SET_AVX2, - .Mnemonic = 1410, + .Mnemonic = 1445, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -95720,6 +100428,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -95733,12 +100442,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3422 Instruction:"VPBROADCASTD Vfv{K}{z},aKq,Wd" Encoding:"evex m:2 p:1 l:x w:0 0x58 /r"/"RAM" + // Pos:3467 Instruction:"VPBROADCASTD Vfv{K}{z},aKq,Wd" Encoding:"evex m:2 p:1 l:x w:0 0x58 /r"/"RAM" { .Instruction = ND_INS_VPBROADCASTD, .Category = ND_CAT_BROADCAST, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1411, + .Mnemonic = 1446, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -95747,6 +100456,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -95761,12 +100471,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3423 Instruction:"VPBROADCASTD Vfv{K}{z},aKq,Rd" Encoding:"evex m:2 p:1 l:x w:0 0x7C /r:reg"/"RAM" + // Pos:3468 Instruction:"VPBROADCASTD Vfv{K}{z},aKq,Rd" Encoding:"evex m:2 p:1 l:x w:0 0x7C /r:reg"/"RAM" { .Instruction = ND_INS_VPBROADCASTD, .Category = ND_CAT_BROADCAST, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1411, + .Mnemonic = 1446, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -95775,6 +100485,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E7NM, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -95789,12 +100500,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3424 Instruction:"VPBROADCASTD Vx,Wd" Encoding:"vex m:2 p:1 l:x w:0 0x58 /r"/"RM" + // Pos:3469 Instruction:"VPBROADCASTD Vx,Wd" Encoding:"vex m:2 p:1 l:x w:0 0x58 /r"/"RM" { .Instruction = ND_INS_VPBROADCASTD, .Category = ND_CAT_BROADCAST, .IsaSet = ND_SET_AVX2, - .Mnemonic = 1411, + .Mnemonic = 1446, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -95803,6 +100514,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -95816,12 +100528,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3425 Instruction:"VPBROADCASTMB2Q Vfv,mKq" Encoding:"evex m:2 p:2 l:x w:1 0x2A /r:reg"/"RM" + // Pos:3470 Instruction:"VPBROADCASTMB2Q Vfv,mKq" Encoding:"evex m:2 p:2 l:x w:1 0x2A /r:reg"/"RM" { .Instruction = ND_INS_VPBROADCASTMB2Q, .Category = ND_CAT_BROADCAST, .IsaSet = ND_SET_AVX512CD, - .Mnemonic = 1412, + .Mnemonic = 1447, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -95830,6 +100542,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E6NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -95843,12 +100556,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3426 Instruction:"VPBROADCASTMW2D Vfv,mKq" Encoding:"evex m:2 p:2 l:x w:0 0x3A /r:reg"/"RM" + // Pos:3471 Instruction:"VPBROADCASTMW2D Vfv,mKq" Encoding:"evex m:2 p:2 l:x w:0 0x3A /r:reg"/"RM" { .Instruction = ND_INS_VPBROADCASTMW2D, .Category = ND_CAT_BROADCAST, .IsaSet = ND_SET_AVX512CD, - .Mnemonic = 1413, + .Mnemonic = 1448, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -95857,6 +100570,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E6NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -95870,12 +100584,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3427 Instruction:"VPBROADCASTQ Vfv{K}{z},aKq,Wq" Encoding:"evex m:2 p:1 l:x w:1 0x59 /r"/"RAM" + // Pos:3472 Instruction:"VPBROADCASTQ Vfv{K}{z},aKq,Wq" Encoding:"evex m:2 p:1 l:x w:1 0x59 /r"/"RAM" { .Instruction = ND_INS_VPBROADCASTQ, .Category = ND_CAT_BROADCAST, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1414, + .Mnemonic = 1449, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -95884,6 +100598,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -95898,12 +100613,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3428 Instruction:"VPBROADCASTQ Vfv{K}{z},aKq,Rq" Encoding:"evex m:2 p:1 l:x w:1 0x7C /r:reg"/"RAM" + // Pos:3473 Instruction:"VPBROADCASTQ Vfv{K}{z},aKq,Rq" Encoding:"evex m:2 p:1 l:x w:1 0x7C /r:reg"/"RAM" { .Instruction = ND_INS_VPBROADCASTQ, .Category = ND_CAT_BROADCAST, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1414, + .Mnemonic = 1449, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -95912,6 +100627,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E7NM, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -95926,12 +100642,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3429 Instruction:"VPBROADCASTQ Vx,Wq" Encoding:"vex m:2 p:1 l:x w:0 0x59 /r"/"RM" + // Pos:3474 Instruction:"VPBROADCASTQ Vx,Wq" Encoding:"vex m:2 p:1 l:x w:0 0x59 /r"/"RM" { .Instruction = ND_INS_VPBROADCASTQ, .Category = ND_CAT_BROADCAST, .IsaSet = ND_SET_AVX2, - .Mnemonic = 1414, + .Mnemonic = 1449, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -95940,6 +100656,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -95953,12 +100670,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3430 Instruction:"VPBROADCASTW Vfv{K}{z},aKq,Ww" Encoding:"evex m:2 p:1 l:x w:0 0x79 /r"/"RAM" + // Pos:3475 Instruction:"VPBROADCASTW Vfv{K}{z},aKq,Ww" Encoding:"evex m:2 p:1 l:x w:0 0x79 /r"/"RAM" { .Instruction = ND_INS_VPBROADCASTW, .Category = ND_CAT_BROADCAST, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1415, + .Mnemonic = 1450, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -95967,6 +100684,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -95981,12 +100699,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3431 Instruction:"VPBROADCASTW Vfv{K}{z},aKq,Rw" Encoding:"evex m:2 p:1 l:x w:0 0x7B /r:reg"/"RAM" + // Pos:3476 Instruction:"VPBROADCASTW Vfv{K}{z},aKq,Rw" Encoding:"evex m:2 p:1 l:x w:0 0x7B /r:reg"/"RAM" { .Instruction = ND_INS_VPBROADCASTW, .Category = ND_CAT_BROADCAST, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1415, + .Mnemonic = 1450, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -95995,6 +100713,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E7NM, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -96009,12 +100728,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3432 Instruction:"VPBROADCASTW Vx,Ww" Encoding:"vex m:2 p:1 l:x w:0 0x79 /r"/"RM" + // Pos:3477 Instruction:"VPBROADCASTW Vx,Ww" Encoding:"vex m:2 p:1 l:x w:0 0x79 /r"/"RM" { .Instruction = ND_INS_VPBROADCASTW, .Category = ND_CAT_BROADCAST, .IsaSet = ND_SET_AVX2, - .Mnemonic = 1415, + .Mnemonic = 1450, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -96023,6 +100742,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -96036,12 +100756,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3433 Instruction:"VPCLMULQDQ Vfv,Hfv,Wfv,Ib" Encoding:"evex m:3 p:1 l:x w:i 0x44 /r ib"/"RVMI" + // Pos:3478 Instruction:"VPCLMULQDQ Vfv,Hfv,Wfv,Ib" Encoding:"evex m:3 p:1 l:x w:i 0x44 /r ib"/"RVMI" { .Instruction = ND_INS_VPCLMULQDQ, .Category = ND_CAT_VPCLMULQDQ, .IsaSet = ND_SET_VPCLMULQDQ, - .Mnemonic = 1416, + .Mnemonic = 1451, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -96050,6 +100770,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -96065,12 +100786,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3434 Instruction:"VPCLMULQDQ Vx,Hx,Wx,Ib" Encoding:"vex m:3 p:1 l:x w:i 0x44 /r ib"/"RVMI" + // Pos:3479 Instruction:"VPCLMULQDQ Vx,Hx,Wx,Ib" Encoding:"vex m:3 p:1 l:x w:i 0x44 /r ib"/"RVMI" { .Instruction = ND_INS_VPCLMULQDQ, .Category = ND_CAT_VPCLMULQDQ, .IsaSet = ND_SET_VPCLMULQDQ, - .Mnemonic = 1416, + .Mnemonic = 1451, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -96079,6 +100800,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -96094,12 +100816,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3435 Instruction:"VPCMOV Vx,Hx,Wx,Lx" Encoding:"xop m:8 w:0 0xA2 /r is4"/"RVML" + // Pos:3480 Instruction:"VPCMOV Vx,Hx,Wx,Lx" Encoding:"xop m:8 w:0 0xA2 /r is4"/"RVML" { .Instruction = ND_INS_VPCMOV, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1417, + .Mnemonic = 1452, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -96108,6 +100830,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -96123,12 +100846,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3436 Instruction:"VPCMOV Vx,Hx,Lx,Wx" Encoding:"xop m:8 w:1 0xA2 /r is4"/"RVLM" + // Pos:3481 Instruction:"VPCMOV Vx,Hx,Lx,Wx" Encoding:"xop m:8 w:1 0xA2 /r is4"/"RVLM" { .Instruction = ND_INS_VPCMOV, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1417, + .Mnemonic = 1452, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -96137,6 +100860,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -96152,12 +100876,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3437 Instruction:"VPCMPB rKq{K},aKq,Hfv,Wfv,Ib" Encoding:"evex m:3 p:1 l:x w:0 0x3F /r ib"/"RAVMI" + // Pos:3482 Instruction:"VPCMPB rKq{K},aKq,Hfv,Wfv,Ib" Encoding:"evex m:3 p:1 l:x w:0 0x3F /r ib"/"RAVMI" { .Instruction = ND_INS_VPCMPB, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1418, + .Mnemonic = 1453, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK, @@ -96166,6 +100890,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -96182,12 +100907,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3438 Instruction:"VPCMPD rKq{K},aKq,Hfv,Wfv|B32,Ib" Encoding:"evex m:3 p:1 l:x w:0 0x1F /r ib"/"RAVMI" + // Pos:3483 Instruction:"VPCMPD rKq{K},aKq,Hfv,Wfv|B32,Ib" Encoding:"evex m:3 p:1 l:x w:0 0x1F /r ib"/"RAVMI" { .Instruction = ND_INS_VPCMPD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1419, + .Mnemonic = 1454, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_BROADCAST, @@ -96196,6 +100921,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -96212,12 +100938,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3439 Instruction:"VPCMPEQB rKq{K},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0x74 /r"/"RAVM" + // Pos:3484 Instruction:"VPCMPEQB rKq{K},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0x74 /r"/"RAVM" { .Instruction = ND_INS_VPCMPEQB, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1420, + .Mnemonic = 1455, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK, @@ -96226,6 +100952,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -96241,12 +100968,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3440 Instruction:"VPCMPEQB Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0x74 /r"/"RVM" + // Pos:3485 Instruction:"VPCMPEQB Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0x74 /r"/"RVM" { .Instruction = ND_INS_VPCMPEQB, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1420, + .Mnemonic = 1455, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -96255,6 +100982,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -96269,12 +100997,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3441 Instruction:"VPCMPEQD rKq{K},aKq,Hfv,Wfv|B32" Encoding:"evex m:1 p:1 l:x w:i 0x76 /r"/"RAVM" + // Pos:3486 Instruction:"VPCMPEQD rKq{K},aKq,Hfv,Wfv|B32" Encoding:"evex m:1 p:1 l:x w:i 0x76 /r"/"RAVM" { .Instruction = ND_INS_VPCMPEQD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1421, + .Mnemonic = 1456, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_BROADCAST, @@ -96283,6 +101011,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -96298,12 +101027,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3442 Instruction:"VPCMPEQD Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0x76 /r"/"RVM" + // Pos:3487 Instruction:"VPCMPEQD Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0x76 /r"/"RVM" { .Instruction = ND_INS_VPCMPEQD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1421, + .Mnemonic = 1456, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -96312,6 +101041,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -96326,12 +101056,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3443 Instruction:"VPCMPEQQ rKq{K},aKq,Hfv,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x29 /r"/"RAVM" + // Pos:3488 Instruction:"VPCMPEQQ rKq{K},aKq,Hfv,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x29 /r"/"RAVM" { .Instruction = ND_INS_VPCMPEQQ, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1422, + .Mnemonic = 1457, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_BROADCAST, @@ -96340,6 +101070,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -96355,12 +101086,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3444 Instruction:"VPCMPEQQ Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x29 /r"/"RVM" + // Pos:3489 Instruction:"VPCMPEQQ Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x29 /r"/"RVM" { .Instruction = ND_INS_VPCMPEQQ, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1422, + .Mnemonic = 1457, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -96369,6 +101100,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -96383,12 +101115,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3445 Instruction:"VPCMPEQW rKq{K},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0x75 /r"/"RAVM" + // Pos:3490 Instruction:"VPCMPEQW rKq{K},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0x75 /r"/"RAVM" { .Instruction = ND_INS_VPCMPEQW, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1423, + .Mnemonic = 1458, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK, @@ -96397,6 +101129,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -96412,12 +101145,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3446 Instruction:"VPCMPEQW Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0x75 /r"/"RVM" + // Pos:3491 Instruction:"VPCMPEQW Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0x75 /r"/"RVM" { .Instruction = ND_INS_VPCMPEQW, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1423, + .Mnemonic = 1458, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -96426,6 +101159,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -96440,12 +101174,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3447 Instruction:"VPCMPESTRI Vdq,Wdq,Ib" Encoding:"vex m:3 p:1 l:0 w:i 0x61 /r ib"/"RMI" + // Pos:3492 Instruction:"VPCMPESTRI Vdq,Wdq,Ib" Encoding:"vex m:3 p:1 l:0 w:i 0x61 /r ib"/"RMI" { .Instruction = ND_INS_VPCMPESTRI, .Category = ND_CAT_STTNI, .IsaSet = ND_SET_AVX, - .Mnemonic = 1424, + .Mnemonic = 1459, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -96454,6 +101188,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -96472,12 +101207,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3448 Instruction:"VPCMPESTRM Vdq,Wdq,Ib" Encoding:"vex m:3 p:1 l:0 w:i 0x60 /r ib"/"RMI" + // Pos:3493 Instruction:"VPCMPESTRM Vdq,Wdq,Ib" Encoding:"vex m:3 p:1 l:0 w:i 0x60 /r ib"/"RMI" { .Instruction = ND_INS_VPCMPESTRM, .Category = ND_CAT_STTNI, .IsaSet = ND_SET_AVX, - .Mnemonic = 1425, + .Mnemonic = 1460, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -96486,6 +101221,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -96504,12 +101240,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3449 Instruction:"VPCMPGTB rKq{K},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0x64 /r"/"RAVM" + // Pos:3494 Instruction:"VPCMPGTB rKq{K},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0x64 /r"/"RAVM" { .Instruction = ND_INS_VPCMPGTB, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1426, + .Mnemonic = 1461, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK, @@ -96518,6 +101254,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -96533,12 +101270,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3450 Instruction:"VPCMPGTB Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0x64 /r"/"RVM" + // Pos:3495 Instruction:"VPCMPGTB Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0x64 /r"/"RVM" { .Instruction = ND_INS_VPCMPGTB, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1426, + .Mnemonic = 1461, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -96547,6 +101284,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -96561,12 +101299,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3451 Instruction:"VPCMPGTD rKq{K},aKq,Hfv,Wfv|B32" Encoding:"evex m:1 p:1 l:x w:0 0x66 /r"/"RAVM" + // Pos:3496 Instruction:"VPCMPGTD rKq{K},aKq,Hfv,Wfv|B32" Encoding:"evex m:1 p:1 l:x w:0 0x66 /r"/"RAVM" { .Instruction = ND_INS_VPCMPGTD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1427, + .Mnemonic = 1462, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_BROADCAST, @@ -96575,6 +101313,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -96590,12 +101329,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3452 Instruction:"VPCMPGTD Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0x66 /r"/"RVM" + // Pos:3497 Instruction:"VPCMPGTD Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0x66 /r"/"RVM" { .Instruction = ND_INS_VPCMPGTD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1427, + .Mnemonic = 1462, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -96604,6 +101343,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -96618,12 +101358,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3453 Instruction:"VPCMPGTQ rKq{K},aKq,Hfv,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x37 /r"/"RAVM" + // Pos:3498 Instruction:"VPCMPGTQ rKq{K},aKq,Hfv,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x37 /r"/"RAVM" { .Instruction = ND_INS_VPCMPGTQ, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1428, + .Mnemonic = 1463, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_BROADCAST, @@ -96632,6 +101372,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -96647,12 +101388,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3454 Instruction:"VPCMPGTQ Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x37 /r"/"RVM" + // Pos:3499 Instruction:"VPCMPGTQ Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x37 /r"/"RVM" { .Instruction = ND_INS_VPCMPGTQ, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1428, + .Mnemonic = 1463, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -96661,6 +101402,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -96675,12 +101417,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3455 Instruction:"VPCMPGTW rKq{K},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0x65 /r"/"RAVM" + // Pos:3500 Instruction:"VPCMPGTW rKq{K},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0x65 /r"/"RAVM" { .Instruction = ND_INS_VPCMPGTW, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1429, + .Mnemonic = 1464, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK, @@ -96689,6 +101431,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -96704,12 +101447,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3456 Instruction:"VPCMPGTW Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0x65 /r"/"RVM" + // Pos:3501 Instruction:"VPCMPGTW Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0x65 /r"/"RVM" { .Instruction = ND_INS_VPCMPGTW, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1429, + .Mnemonic = 1464, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -96718,6 +101461,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -96732,12 +101476,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3457 Instruction:"VPCMPISTRI Vdq,Wdq,Ib" Encoding:"vex m:3 p:1 l:0 w:i 0x63 /r ib"/"RMI" + // Pos:3502 Instruction:"VPCMPISTRI Vdq,Wdq,Ib" Encoding:"vex m:3 p:1 l:0 w:i 0x63 /r ib"/"RMI" { .Instruction = ND_INS_VPCMPISTRI, .Category = ND_CAT_STTNI, .IsaSet = ND_SET_AVX, - .Mnemonic = 1430, + .Mnemonic = 1465, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -96746,6 +101490,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -96762,12 +101507,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3458 Instruction:"VPCMPISTRM Vdq,Wdq,Ib" Encoding:"vex m:3 p:1 l:0 w:i 0x62 /r ib"/"RMI" + // Pos:3503 Instruction:"VPCMPISTRM Vdq,Wdq,Ib" Encoding:"vex m:3 p:1 l:0 w:i 0x62 /r ib"/"RMI" { .Instruction = ND_INS_VPCMPISTRM, .Category = ND_CAT_STTNI, .IsaSet = ND_SET_AVX, - .Mnemonic = 1431, + .Mnemonic = 1466, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -96776,6 +101521,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -96792,12 +101538,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3459 Instruction:"VPCMPQ rKq{K},aKq,Hfv,Wfv|B64,Ib" Encoding:"evex m:3 p:1 l:x w:1 0x1F /r ib"/"RAVMI" + // Pos:3504 Instruction:"VPCMPQ rKq{K},aKq,Hfv,Wfv|B64,Ib" Encoding:"evex m:3 p:1 l:x w:1 0x1F /r ib"/"RAVMI" { .Instruction = ND_INS_VPCMPQ, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1432, + .Mnemonic = 1467, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_BROADCAST, @@ -96806,6 +101552,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -96822,12 +101569,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3460 Instruction:"VPCMPUB rKq{K},aKq,Hfv,Wfv,Ib" Encoding:"evex m:3 p:1 l:x w:0 0x3E /r ib"/"RAVMI" + // Pos:3505 Instruction:"VPCMPUB rKq{K},aKq,Hfv,Wfv,Ib" Encoding:"evex m:3 p:1 l:x w:0 0x3E /r ib"/"RAVMI" { .Instruction = ND_INS_VPCMPUB, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1433, + .Mnemonic = 1468, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK, @@ -96836,6 +101583,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -96852,12 +101600,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3461 Instruction:"VPCMPUD rKq{K},aKq,Hfv,Wfv|B32,Ib" Encoding:"evex m:3 p:1 l:x w:0 0x1E /r ib"/"RAVMI" + // Pos:3506 Instruction:"VPCMPUD rKq{K},aKq,Hfv,Wfv|B32,Ib" Encoding:"evex m:3 p:1 l:x w:0 0x1E /r ib"/"RAVMI" { .Instruction = ND_INS_VPCMPUD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1434, + .Mnemonic = 1469, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_BROADCAST, @@ -96866,6 +101614,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -96882,12 +101631,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3462 Instruction:"VPCMPUQ rKq{K},aKq,Hfv,Wfv|B64,Ib" Encoding:"evex m:3 p:1 l:x w:1 0x1E /r ib"/"RAVMI" + // Pos:3507 Instruction:"VPCMPUQ rKq{K},aKq,Hfv,Wfv|B64,Ib" Encoding:"evex m:3 p:1 l:x w:1 0x1E /r ib"/"RAVMI" { .Instruction = ND_INS_VPCMPUQ, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1435, + .Mnemonic = 1470, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_BROADCAST, @@ -96896,6 +101645,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -96912,12 +101662,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3463 Instruction:"VPCMPUW rKq{K},aKq,Hfv,Wfv,Ib" Encoding:"evex m:3 p:1 l:x w:1 0x3E /r ib"/"RAVMI" + // Pos:3508 Instruction:"VPCMPUW rKq{K},aKq,Hfv,Wfv,Ib" Encoding:"evex m:3 p:1 l:x w:1 0x3E /r ib"/"RAVMI" { .Instruction = ND_INS_VPCMPUW, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1436, + .Mnemonic = 1471, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK, @@ -96926,6 +101676,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -96942,12 +101693,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3464 Instruction:"VPCMPW rKq{K},aKq,Hfv,Wfv,Ib" Encoding:"evex m:3 p:1 l:x w:1 0x3F /r ib"/"RAVMI" + // Pos:3509 Instruction:"VPCMPW rKq{K},aKq,Hfv,Wfv,Ib" Encoding:"evex m:3 p:1 l:x w:1 0x3F /r ib"/"RAVMI" { .Instruction = ND_INS_VPCMPW, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1437, + .Mnemonic = 1472, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK, @@ -96956,6 +101707,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -96972,12 +101724,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3465 Instruction:"VPCOMB Vdq,Hdq,Wdq,Ib" Encoding:"xop m:8 0xCC /r ib"/"RVMI" + // Pos:3510 Instruction:"VPCOMB Vdq,Hdq,Wdq,Ib" Encoding:"xop m:8 0xCC /r ib"/"RVMI" { .Instruction = ND_INS_VPCOMB, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1438, + .Mnemonic = 1473, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -96986,6 +101738,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -97001,12 +101754,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3466 Instruction:"VPCOMD Vdq,Hdq,Wdq,Ib" Encoding:"xop m:8 0xCE /r ib"/"RVMI" + // Pos:3511 Instruction:"VPCOMD Vdq,Hdq,Wdq,Ib" Encoding:"xop m:8 0xCE /r ib"/"RVMI" { .Instruction = ND_INS_VPCOMD, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1439, + .Mnemonic = 1474, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -97015,6 +101768,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -97030,12 +101784,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3467 Instruction:"VPCOMPRESSB Wfv{K}{z},aKq,Vfv" Encoding:"evex m:2 p:1 l:x w:0 0x63 /r"/"MAR" + // Pos:3512 Instruction:"VPCOMPRESSB Wfv{K}{z},aKq,Vfv" Encoding:"evex m:2 p:1 l:x w:0 0x63 /r"/"MAR" { .Instruction = ND_INS_VPCOMPRESSB, .Category = ND_CAT_AVX512VBMI, .IsaSet = ND_SET_AVX512VBMI2, - .Mnemonic = 1440, + .Mnemonic = 1475, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -97044,6 +101798,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -97058,12 +101813,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3468 Instruction:"VPCOMPRESSD Wfv{K}{z},aKq,Vfv" Encoding:"evex m:2 p:1 l:x w:0 0x8B /r"/"MAR" + // Pos:3513 Instruction:"VPCOMPRESSD Wfv{K}{z},aKq,Vfv" Encoding:"evex m:2 p:1 l:x w:0 0x8B /r"/"MAR" { .Instruction = ND_INS_VPCOMPRESSD, .Category = ND_CAT_COMPRESS, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1441, + .Mnemonic = 1476, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -97072,6 +101827,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -97086,12 +101842,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3469 Instruction:"VPCOMPRESSQ Wfv{K}{z},aKq,Vfv" Encoding:"evex m:2 p:1 l:x w:1 0x8B /r"/"MAR" + // Pos:3514 Instruction:"VPCOMPRESSQ Wfv{K}{z},aKq,Vfv" Encoding:"evex m:2 p:1 l:x w:1 0x8B /r"/"MAR" { .Instruction = ND_INS_VPCOMPRESSQ, .Category = ND_CAT_COMPRESS, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1442, + .Mnemonic = 1477, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -97100,6 +101856,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -97114,12 +101871,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3470 Instruction:"VPCOMPRESSW Wfv{K}{z},aKq,Vfv" Encoding:"evex m:2 p:1 l:x w:1 0x63 /r"/"MAR" + // Pos:3515 Instruction:"VPCOMPRESSW Wfv{K}{z},aKq,Vfv" Encoding:"evex m:2 p:1 l:x w:1 0x63 /r"/"MAR" { .Instruction = ND_INS_VPCOMPRESSW, .Category = ND_CAT_AVX512VBMI, .IsaSet = ND_SET_AVX512VBMI2, - .Mnemonic = 1443, + .Mnemonic = 1478, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -97128,6 +101885,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -97142,12 +101900,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3471 Instruction:"VPCOMQ Vdq,Hdq,Wdq,Ib" Encoding:"xop m:8 0xCF /r ib"/"RVMI" + // Pos:3516 Instruction:"VPCOMQ Vdq,Hdq,Wdq,Ib" Encoding:"xop m:8 0xCF /r ib"/"RVMI" { .Instruction = ND_INS_VPCOMQ, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1444, + .Mnemonic = 1479, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -97156,6 +101914,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -97171,12 +101930,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3472 Instruction:"VPCOMUB Vdq,Hdq,Wdq,Ib" Encoding:"xop m:8 0xEC /r ib"/"RVMI" + // Pos:3517 Instruction:"VPCOMUB Vdq,Hdq,Wdq,Ib" Encoding:"xop m:8 0xEC /r ib"/"RVMI" { .Instruction = ND_INS_VPCOMUB, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1445, + .Mnemonic = 1480, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -97185,6 +101944,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -97200,12 +101960,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3473 Instruction:"VPCOMUD Vdq,Hdq,Wdq,Ib" Encoding:"xop m:8 0xEE /r ib"/"RVMI" + // Pos:3518 Instruction:"VPCOMUD Vdq,Hdq,Wdq,Ib" Encoding:"xop m:8 0xEE /r ib"/"RVMI" { .Instruction = ND_INS_VPCOMUD, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1446, + .Mnemonic = 1481, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -97214,6 +101974,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -97229,12 +101990,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3474 Instruction:"VPCOMUQ Vdq,Hdq,Wdq,Ib" Encoding:"xop m:8 0xEF /r ib"/"RVMI" + // Pos:3519 Instruction:"VPCOMUQ Vdq,Hdq,Wdq,Ib" Encoding:"xop m:8 0xEF /r ib"/"RVMI" { .Instruction = ND_INS_VPCOMUQ, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1447, + .Mnemonic = 1482, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -97243,6 +102004,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -97258,12 +102020,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3475 Instruction:"VPCOMUW Vdq,Hdq,Wdq,Ib" Encoding:"xop m:8 0xED /r ib"/"RVMI" + // Pos:3520 Instruction:"VPCOMUW Vdq,Hdq,Wdq,Ib" Encoding:"xop m:8 0xED /r ib"/"RVMI" { .Instruction = ND_INS_VPCOMUW, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1448, + .Mnemonic = 1483, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -97272,6 +102034,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -97287,12 +102050,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3476 Instruction:"VPCOMW Vdq,Hdq,Wdq,Ib" Encoding:"xop m:8 0xCD /r ib"/"RVMI" + // Pos:3521 Instruction:"VPCOMW Vdq,Hdq,Wdq,Ib" Encoding:"xop m:8 0xCD /r ib"/"RVMI" { .Instruction = ND_INS_VPCOMW, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1449, + .Mnemonic = 1484, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -97301,6 +102064,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -97316,12 +102080,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3477 Instruction:"VPCONFLICTD Vfv{K}{z},aKq,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0xC4 /r"/"RAM" + // Pos:3522 Instruction:"VPCONFLICTD Vfv{K}{z},aKq,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0xC4 /r"/"RAM" { .Instruction = ND_INS_VPCONFLICTD, .Category = ND_CAT_CONFLICT, .IsaSet = ND_SET_AVX512CD, - .Mnemonic = 1450, + .Mnemonic = 1485, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -97330,6 +102094,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -97344,12 +102109,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3478 Instruction:"VPCONFLICTQ Vfv{K}{z},aKq,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0xC4 /r"/"RAM" + // Pos:3523 Instruction:"VPCONFLICTQ Vfv{K}{z},aKq,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0xC4 /r"/"RAM" { .Instruction = ND_INS_VPCONFLICTQ, .Category = ND_CAT_CONFLICT, .IsaSet = ND_SET_AVX512CD, - .Mnemonic = 1451, + .Mnemonic = 1486, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -97358,6 +102123,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -97372,12 +102138,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3479 Instruction:"VPDPBSSD Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:3 l:x w:0 0x50 /r"/"RAVM" + // Pos:3524 Instruction:"VPDPBSSD Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:3 l:x w:0 0x50 /r"/"RAVM" { .Instruction = ND_INS_VPDPBSSD, .Category = ND_CAT_AVX10INT, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1452, + .Mnemonic = 1487, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -97386,6 +102152,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -97401,12 +102168,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3480 Instruction:"VPDPBSSD Vx,Hx,Wx" Encoding:"vex m:2 p:3 l:x w:0 0x50 /r"/"RVM" + // Pos:3525 Instruction:"VPDPBSSD Vx,Hx,Wx" Encoding:"vex m:2 p:3 l:x w:0 0x50 /r"/"RVM" { .Instruction = ND_INS_VPDPBSSD, .Category = ND_CAT_AVXVNNIINT8, .IsaSet = ND_SET_AVXVNNIINT8, - .Mnemonic = 1452, + .Mnemonic = 1487, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -97415,6 +102182,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -97429,12 +102197,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3481 Instruction:"VPDPBSSDS Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:3 l:x w:0 0x51 /r"/"RAVM" + // Pos:3526 Instruction:"VPDPBSSDS Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:3 l:x w:0 0x51 /r"/"RAVM" { .Instruction = ND_INS_VPDPBSSDS, .Category = ND_CAT_AVX10INT, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1453, + .Mnemonic = 1488, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -97443,6 +102211,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -97458,12 +102227,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3482 Instruction:"VPDPBSSDS Vx,Hx,Wx" Encoding:"vex m:2 p:3 l:x w:0 0x51 /r"/"RVM" + // Pos:3527 Instruction:"VPDPBSSDS Vx,Hx,Wx" Encoding:"vex m:2 p:3 l:x w:0 0x51 /r"/"RVM" { .Instruction = ND_INS_VPDPBSSDS, .Category = ND_CAT_AVXVNNIINT8, .IsaSet = ND_SET_AVXVNNIINT8, - .Mnemonic = 1453, + .Mnemonic = 1488, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -97472,6 +102241,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -97486,12 +102256,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3483 Instruction:"VPDPBSUD Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:2 l:x w:0 0x50 /r"/"RAVM" + // Pos:3528 Instruction:"VPDPBSUD Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:2 l:x w:0 0x50 /r"/"RAVM" { .Instruction = ND_INS_VPDPBSUD, .Category = ND_CAT_AVX10INT, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1454, + .Mnemonic = 1489, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -97500,6 +102270,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -97515,12 +102286,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3484 Instruction:"VPDPBSUD Vx,Hx,Wx" Encoding:"vex m:2 p:2 l:x w:0 0x50 /r"/"RVM" + // Pos:3529 Instruction:"VPDPBSUD Vx,Hx,Wx" Encoding:"vex m:2 p:2 l:x w:0 0x50 /r"/"RVM" { .Instruction = ND_INS_VPDPBSUD, .Category = ND_CAT_AVXVNNIINT8, .IsaSet = ND_SET_AVXVNNIINT8, - .Mnemonic = 1454, + .Mnemonic = 1489, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -97529,6 +102300,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -97543,12 +102315,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3485 Instruction:"VPDPBSUDS Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:2 l:x w:0 0x51 /r"/"RAVM" + // Pos:3530 Instruction:"VPDPBSUDS Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:2 l:x w:0 0x51 /r"/"RAVM" { .Instruction = ND_INS_VPDPBSUDS, .Category = ND_CAT_AVX10INT, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1455, + .Mnemonic = 1490, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -97557,6 +102329,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -97572,12 +102345,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3486 Instruction:"VPDPBSUDS Vx,Hx,Wx" Encoding:"vex m:2 p:2 l:x w:0 0x51 /r"/"RVM" + // Pos:3531 Instruction:"VPDPBSUDS Vx,Hx,Wx" Encoding:"vex m:2 p:2 l:x w:0 0x51 /r"/"RVM" { .Instruction = ND_INS_VPDPBSUDS, .Category = ND_CAT_AVXVNNIINT8, .IsaSet = ND_SET_AVXVNNIINT8, - .Mnemonic = 1455, + .Mnemonic = 1490, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -97586,6 +102359,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -97600,12 +102374,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3487 Instruction:"VPDPBUSD Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x50 /r"/"RAVM" + // Pos:3532 Instruction:"VPDPBUSD Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x50 /r"/"RAVM" { .Instruction = ND_INS_VPDPBUSD, .Category = ND_CAT_VNNI, .IsaSet = ND_SET_AVX512VNNI, - .Mnemonic = 1456, + .Mnemonic = 1491, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -97614,6 +102388,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -97629,12 +102404,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3488 Instruction:"VPDPBUSD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0x50 /r"/"RVM" + // Pos:3533 Instruction:"VPDPBUSD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0x50 /r"/"RVM" { .Instruction = ND_INS_VPDPBUSD, .Category = ND_CAT_AVXVNNI, .IsaSet = ND_SET_AVXVNNI, - .Mnemonic = 1456, + .Mnemonic = 1491, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -97643,6 +102418,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -97657,12 +102433,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3489 Instruction:"VPDPBUSDS Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x51 /r"/"RAVM" + // Pos:3534 Instruction:"VPDPBUSDS Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x51 /r"/"RAVM" { .Instruction = ND_INS_VPDPBUSDS, .Category = ND_CAT_VNNI, .IsaSet = ND_SET_AVX512VNNI, - .Mnemonic = 1457, + .Mnemonic = 1492, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -97671,6 +102447,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -97686,12 +102463,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3490 Instruction:"VPDPBUSDS Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0x51 /r"/"RVM" + // Pos:3535 Instruction:"VPDPBUSDS Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0x51 /r"/"RVM" { .Instruction = ND_INS_VPDPBUSDS, .Category = ND_CAT_AVXVNNI, .IsaSet = ND_SET_AVXVNNI, - .Mnemonic = 1457, + .Mnemonic = 1492, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -97700,6 +102477,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -97714,12 +102492,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3491 Instruction:"VPDPBUUD Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:0 l:x w:0 0x50 /r"/"RAVM" + // Pos:3536 Instruction:"VPDPBUUD Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:0 l:x w:0 0x50 /r"/"RAVM" { .Instruction = ND_INS_VPDPBUUD, .Category = ND_CAT_AVX10INT, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1458, + .Mnemonic = 1493, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -97728,6 +102506,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -97743,12 +102522,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3492 Instruction:"VPDPBUUD Vx,Hx,Wx" Encoding:"vex m:2 p:0 l:x w:0 0x50 /r"/"RVM" + // Pos:3537 Instruction:"VPDPBUUD Vx,Hx,Wx" Encoding:"vex m:2 p:0 l:x w:0 0x50 /r"/"RVM" { .Instruction = ND_INS_VPDPBUUD, .Category = ND_CAT_AVXVNNIINT8, .IsaSet = ND_SET_AVXVNNIINT8, - .Mnemonic = 1458, + .Mnemonic = 1493, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -97757,6 +102536,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -97771,12 +102551,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3493 Instruction:"VPDPBUUDS Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:0 l:x w:0 0x51 /r"/"RAVM" + // Pos:3538 Instruction:"VPDPBUUDS Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:0 l:x w:0 0x51 /r"/"RAVM" { .Instruction = ND_INS_VPDPBUUDS, .Category = ND_CAT_AVX10INT, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1459, + .Mnemonic = 1494, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -97785,6 +102565,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -97800,12 +102581,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3494 Instruction:"VPDPBUUDS Vx,Hx,Wx" Encoding:"vex m:2 p:0 l:x w:0 0x51 /r"/"RVM" + // Pos:3539 Instruction:"VPDPBUUDS Vx,Hx,Wx" Encoding:"vex m:2 p:0 l:x w:0 0x51 /r"/"RVM" { .Instruction = ND_INS_VPDPBUUDS, .Category = ND_CAT_AVXVNNIINT8, .IsaSet = ND_SET_AVXVNNIINT8, - .Mnemonic = 1459, + .Mnemonic = 1494, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -97814,6 +102595,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -97828,12 +102610,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3495 Instruction:"VPDPWSSD Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x52 /r"/"RAVM" + // Pos:3540 Instruction:"VPDPWSSD Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x52 /r"/"RAVM" { .Instruction = ND_INS_VPDPWSSD, .Category = ND_CAT_VNNI, .IsaSet = ND_SET_AVX512VNNI, - .Mnemonic = 1460, + .Mnemonic = 1495, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -97842,6 +102624,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -97857,12 +102640,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3496 Instruction:"VPDPWSSD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0x52 /r"/"RVM" + // Pos:3541 Instruction:"VPDPWSSD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0x52 /r"/"RVM" { .Instruction = ND_INS_VPDPWSSD, .Category = ND_CAT_AVXVNNI, .IsaSet = ND_SET_AVXVNNI, - .Mnemonic = 1460, + .Mnemonic = 1495, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -97871,6 +102654,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -97885,12 +102669,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3497 Instruction:"VPDPWSSDS Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x53 /r"/"RAVM" + // Pos:3542 Instruction:"VPDPWSSDS Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x53 /r"/"RAVM" { .Instruction = ND_INS_VPDPWSSDS, .Category = ND_CAT_VNNI, .IsaSet = ND_SET_AVX512VNNI, - .Mnemonic = 1461, + .Mnemonic = 1496, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -97899,6 +102683,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -97914,12 +102699,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3498 Instruction:"VPDPWSSDS Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0x53 /r"/"RVM" + // Pos:3543 Instruction:"VPDPWSSDS Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0x53 /r"/"RVM" { .Instruction = ND_INS_VPDPWSSDS, .Category = ND_CAT_AVXVNNI, .IsaSet = ND_SET_AVXVNNI, - .Mnemonic = 1461, + .Mnemonic = 1496, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -97928,6 +102713,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -97942,12 +102728,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3499 Instruction:"VPDPWSUD Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:2 l:x w:0 0xD2 /r"/"RAVM" + // Pos:3544 Instruction:"VPDPWSUD Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:2 l:x w:0 0xD2 /r"/"RAVM" { .Instruction = ND_INS_VPDPWSUD, .Category = ND_CAT_AVX10INT, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1462, + .Mnemonic = 1497, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -97956,6 +102742,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -97971,12 +102758,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3500 Instruction:"VPDPWSUD Vx,Hx,Wx" Encoding:"vex m:2 p:2 l:x w:0 0xD2 /r"/"RVM" + // Pos:3545 Instruction:"VPDPWSUD Vx,Hx,Wx" Encoding:"vex m:2 p:2 l:x w:0 0xD2 /r"/"RVM" { .Instruction = ND_INS_VPDPWSUD, .Category = ND_CAT_AVXVNNIINT16, .IsaSet = ND_SET_AVXVNNIINT16, - .Mnemonic = 1462, + .Mnemonic = 1497, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -97985,6 +102772,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -97999,12 +102787,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3501 Instruction:"VPDPWSUDS Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:2 l:x w:0 0xD3 /r"/"RAVM" + // Pos:3546 Instruction:"VPDPWSUDS Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:2 l:x w:0 0xD3 /r"/"RAVM" { .Instruction = ND_INS_VPDPWSUDS, .Category = ND_CAT_AVX10INT, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1463, + .Mnemonic = 1498, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -98013,6 +102801,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -98028,12 +102817,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3502 Instruction:"VPDPWSUDS Vx,Hx,Wx" Encoding:"vex m:2 p:2 l:x w:0 0xD3 /r"/"RVM" + // Pos:3547 Instruction:"VPDPWSUDS Vx,Hx,Wx" Encoding:"vex m:2 p:2 l:x w:0 0xD3 /r"/"RVM" { .Instruction = ND_INS_VPDPWSUDS, .Category = ND_CAT_AVXVNNIINT16, .IsaSet = ND_SET_AVXVNNIINT16, - .Mnemonic = 1463, + .Mnemonic = 1498, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -98042,6 +102831,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -98056,12 +102846,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3503 Instruction:"VPDPWUSD Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0xD2 /r"/"RAVM" + // Pos:3548 Instruction:"VPDPWUSD Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0xD2 /r"/"RAVM" { .Instruction = ND_INS_VPDPWUSD, .Category = ND_CAT_AVX10INT, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1464, + .Mnemonic = 1499, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -98070,6 +102860,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -98085,12 +102876,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3504 Instruction:"VPDPWUSD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0xD2 /r"/"RVM" + // Pos:3549 Instruction:"VPDPWUSD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0xD2 /r"/"RVM" { .Instruction = ND_INS_VPDPWUSD, .Category = ND_CAT_AVXVNNIINT16, .IsaSet = ND_SET_AVXVNNIINT16, - .Mnemonic = 1464, + .Mnemonic = 1499, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -98099,6 +102890,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -98113,12 +102905,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3505 Instruction:"VPDPWUSDS Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0xD3 /r"/"RAVM" + // Pos:3550 Instruction:"VPDPWUSDS Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0xD3 /r"/"RAVM" { .Instruction = ND_INS_VPDPWUSDS, .Category = ND_CAT_AVX10INT, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1465, + .Mnemonic = 1500, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -98127,6 +102919,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -98142,12 +102935,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3506 Instruction:"VPDPWUSDS Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0xD3 /r"/"RVM" + // Pos:3551 Instruction:"VPDPWUSDS Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0xD3 /r"/"RVM" { .Instruction = ND_INS_VPDPWUSDS, .Category = ND_CAT_AVXVNNIINT16, .IsaSet = ND_SET_AVXVNNIINT16, - .Mnemonic = 1465, + .Mnemonic = 1500, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -98156,6 +102949,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -98170,12 +102964,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3507 Instruction:"VPDPWUUD Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:0 l:x w:0 0xD2 /r"/"RAVM" + // Pos:3552 Instruction:"VPDPWUUD Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:0 l:x w:0 0xD2 /r"/"RAVM" { .Instruction = ND_INS_VPDPWUUD, .Category = ND_CAT_AVX10INT, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1466, + .Mnemonic = 1501, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -98184,6 +102978,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -98199,12 +102994,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3508 Instruction:"VPDPWUUD Vx,Hx,Wx" Encoding:"vex m:2 p:0 l:x w:0 0xD2 /r"/"RVM" + // Pos:3553 Instruction:"VPDPWUUD Vx,Hx,Wx" Encoding:"vex m:2 p:0 l:x w:0 0xD2 /r"/"RVM" { .Instruction = ND_INS_VPDPWUUD, .Category = ND_CAT_AVXVNNIINT16, .IsaSet = ND_SET_AVXVNNIINT16, - .Mnemonic = 1466, + .Mnemonic = 1501, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -98213,6 +103008,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -98227,12 +103023,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3509 Instruction:"VPDPWUUDS Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:0 l:x w:0 0xD3 /r"/"RAVM" + // Pos:3554 Instruction:"VPDPWUUDS Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:0 l:x w:0 0xD3 /r"/"RAVM" { .Instruction = ND_INS_VPDPWUUDS, .Category = ND_CAT_AVX10INT, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1467, + .Mnemonic = 1502, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -98241,6 +103037,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -98256,12 +103053,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3510 Instruction:"VPDPWUUDS Vx,Hx,Wx" Encoding:"vex m:2 p:0 l:x w:0 0xD3 /r"/"RVM" + // Pos:3555 Instruction:"VPDPWUUDS Vx,Hx,Wx" Encoding:"vex m:2 p:0 l:x w:0 0xD3 /r"/"RVM" { .Instruction = ND_INS_VPDPWUUDS, .Category = ND_CAT_AVXVNNIINT16, .IsaSet = ND_SET_AVXVNNIINT16, - .Mnemonic = 1467, + .Mnemonic = 1502, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -98270,6 +103067,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -98284,12 +103082,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3511 Instruction:"VPERM2F128 Vqq,Hqq,Wqq,Ib" Encoding:"vex m:3 p:1 l:1 w:0 0x06 /r ib"/"RVMI" + // Pos:3556 Instruction:"VPERM2F128 Vqq,Hqq,Wqq,Ib" Encoding:"vex m:3 p:1 l:1 w:0 0x06 /r ib"/"RVMI" { .Instruction = ND_INS_VPERM2F128, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1468, + .Mnemonic = 1503, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -98298,6 +103096,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -98313,12 +103112,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3512 Instruction:"VPERM2I128 Vqq,Hqq,Wqq,Ib" Encoding:"vex m:3 p:1 l:1 w:0 0x46 /r ib"/"RVMI" + // Pos:3557 Instruction:"VPERM2I128 Vqq,Hqq,Wqq,Ib" Encoding:"vex m:3 p:1 l:1 w:0 0x46 /r ib"/"RVMI" { .Instruction = ND_INS_VPERM2I128, .Category = ND_CAT_AVX2, .IsaSet = ND_SET_AVX2, - .Mnemonic = 1469, + .Mnemonic = 1504, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -98327,6 +103126,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -98342,12 +103142,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3513 Instruction:"VPERMB Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:2 p:1 l:x w:0 0x8D /r"/"RAVM" + // Pos:3558 Instruction:"VPERMB Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:2 p:1 l:x w:0 0x8D /r"/"RAVM" { .Instruction = ND_INS_VPERMB, .Category = ND_CAT_AVX512VBMI, .IsaSet = ND_SET_AVX512VBMI, - .Mnemonic = 1470, + .Mnemonic = 1505, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -98356,6 +103156,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NFnb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -98371,12 +103172,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3514 Instruction:"VPERMD Vuv{K}{z},aKq,Huv,Wuv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x36 /r"/"RAVM" + // Pos:3559 Instruction:"VPERMD Vuv{K}{z},aKq,Huv,Wuv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x36 /r"/"RAVM" { .Instruction = ND_INS_VPERMD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1471, + .Mnemonic = 1506, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -98385,6 +103186,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -98400,12 +103202,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3515 Instruction:"VPERMD Vqq,Hqq,Wqq" Encoding:"vex m:2 p:1 l:1 w:0 0x36 /r"/"RVM" + // Pos:3560 Instruction:"VPERMD Vqq,Hqq,Wqq" Encoding:"vex m:2 p:1 l:1 w:0 0x36 /r"/"RVM" { .Instruction = ND_INS_VPERMD, .Category = ND_CAT_AVX2, .IsaSet = ND_SET_AVX2, - .Mnemonic = 1471, + .Mnemonic = 1506, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -98414,6 +103216,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -98428,12 +103231,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3516 Instruction:"VPERMI2B Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:2 p:1 l:x w:0 0x75 /r"/"RAVM" + // Pos:3561 Instruction:"VPERMI2B Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:2 p:1 l:x w:0 0x75 /r"/"RAVM" { .Instruction = ND_INS_VPERMI2B, .Category = ND_CAT_AVX512VBMI, .IsaSet = ND_SET_AVX512VBMI, - .Mnemonic = 1472, + .Mnemonic = 1507, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -98442,6 +103245,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NFnb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -98457,12 +103261,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3517 Instruction:"VPERMI2D Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x76 /r"/"RAVM" + // Pos:3562 Instruction:"VPERMI2D Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x76 /r"/"RAVM" { .Instruction = ND_INS_VPERMI2D, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1473, + .Mnemonic = 1508, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -98471,6 +103275,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -98486,12 +103291,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3518 Instruction:"VPERMI2PD Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x77 /r"/"RAVM" + // Pos:3563 Instruction:"VPERMI2PD Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x77 /r"/"RAVM" { .Instruction = ND_INS_VPERMI2PD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1474, + .Mnemonic = 1509, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -98500,6 +103305,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -98515,12 +103321,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3519 Instruction:"VPERMI2PS Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x77 /r"/"RAVM" + // Pos:3564 Instruction:"VPERMI2PS Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x77 /r"/"RAVM" { .Instruction = ND_INS_VPERMI2PS, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1475, + .Mnemonic = 1510, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -98529,6 +103335,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -98544,12 +103351,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3520 Instruction:"VPERMI2Q Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x76 /r"/"RAVM" + // Pos:3565 Instruction:"VPERMI2Q Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x76 /r"/"RAVM" { .Instruction = ND_INS_VPERMI2Q, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1476, + .Mnemonic = 1511, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -98558,6 +103365,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -98573,12 +103381,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3521 Instruction:"VPERMI2W Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:2 p:1 l:x w:1 0x75 /r"/"RAVM" + // Pos:3566 Instruction:"VPERMI2W Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:2 p:1 l:x w:1 0x75 /r"/"RAVM" { .Instruction = ND_INS_VPERMI2W, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1477, + .Mnemonic = 1512, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -98587,6 +103395,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NFnb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -98602,12 +103411,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3522 Instruction:"VPERMIL2PD Vx,Hx,Wx,Lx,m2zIb" Encoding:"vex m:3 p:1 l:x w:0 0x49 /r is4"/"RVMLL" + // Pos:3567 Instruction:"VPERMIL2PD Vx,Hx,Wx,Lx,m2zIb" Encoding:"vex m:3 p:1 l:x w:0 0x49 /r is4"/"RVMLL" { .Instruction = ND_INS_VPERMIL2PD, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1478, + .Mnemonic = 1513, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -98616,6 +103425,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -98632,12 +103442,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3523 Instruction:"VPERMIL2PD Vx,Hx,Lx,Wx,m2zIb" Encoding:"vex m:3 p:1 l:x w:1 0x49 /r is4"/"RVLML" + // Pos:3568 Instruction:"VPERMIL2PD Vx,Hx,Lx,Wx,m2zIb" Encoding:"vex m:3 p:1 l:x w:1 0x49 /r is4"/"RVLML" { .Instruction = ND_INS_VPERMIL2PD, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1478, + .Mnemonic = 1513, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -98646,6 +103456,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -98662,12 +103473,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3524 Instruction:"VPERMIL2PS Vx,Hx,Wx,Lx,m2zIb" Encoding:"vex m:3 p:1 l:x w:0 0x48 /r is4"/"RVMLL" + // Pos:3569 Instruction:"VPERMIL2PS Vx,Hx,Wx,Lx,m2zIb" Encoding:"vex m:3 p:1 l:x w:0 0x48 /r is4"/"RVMLL" { .Instruction = ND_INS_VPERMIL2PS, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1479, + .Mnemonic = 1514, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -98676,6 +103487,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -98692,12 +103504,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3525 Instruction:"VPERMIL2PS Vx,Hx,Lx,Wx,m2zIb" Encoding:"vex m:3 p:1 l:x w:1 0x48 /r is4"/"RVLML" + // Pos:3570 Instruction:"VPERMIL2PS Vx,Hx,Lx,Wx,m2zIb" Encoding:"vex m:3 p:1 l:x w:1 0x48 /r is4"/"RVLML" { .Instruction = ND_INS_VPERMIL2PS, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1479, + .Mnemonic = 1514, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -98706,6 +103518,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -98722,12 +103535,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3526 Instruction:"VPERMILPD Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x0D /r"/"RAVM" + // Pos:3571 Instruction:"VPERMILPD Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x0D /r"/"RAVM" { .Instruction = ND_INS_VPERMILPD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1480, + .Mnemonic = 1515, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -98736,6 +103549,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -98751,12 +103565,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3527 Instruction:"VPERMILPD Vfv{K}{z},aKq,Wfv|B64,Ib" Encoding:"evex m:3 p:1 l:x w:1 0x05 /r ib"/"RAMI" + // Pos:3572 Instruction:"VPERMILPD Vfv{K}{z},aKq,Wfv|B64,Ib" Encoding:"evex m:3 p:1 l:x w:1 0x05 /r ib"/"RAMI" { .Instruction = ND_INS_VPERMILPD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1480, + .Mnemonic = 1515, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -98765,6 +103579,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -98780,12 +103595,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3528 Instruction:"VPERMILPD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0x0D /r"/"RVM" + // Pos:3573 Instruction:"VPERMILPD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0x0D /r"/"RVM" { .Instruction = ND_INS_VPERMILPD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1480, + .Mnemonic = 1515, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -98794,6 +103609,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -98808,12 +103624,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3529 Instruction:"VPERMILPD Vx,Wx,Ib" Encoding:"vex m:3 p:1 l:x w:0 0x05 /r ib"/"RMI" + // Pos:3574 Instruction:"VPERMILPD Vx,Wx,Ib" Encoding:"vex m:3 p:1 l:x w:0 0x05 /r ib"/"RMI" { .Instruction = ND_INS_VPERMILPD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1480, + .Mnemonic = 1515, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -98822,6 +103638,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -98836,12 +103653,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3530 Instruction:"VPERMILPS Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x0C /r"/"RAVM" + // Pos:3575 Instruction:"VPERMILPS Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x0C /r"/"RAVM" { .Instruction = ND_INS_VPERMILPS, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1481, + .Mnemonic = 1516, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -98850,6 +103667,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -98865,12 +103683,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3531 Instruction:"VPERMILPS Vfv{K}{z},aKq,Wfv|B32,Ib" Encoding:"evex m:3 p:1 l:x w:0 0x04 /r ib"/"RAMI" + // Pos:3576 Instruction:"VPERMILPS Vfv{K}{z},aKq,Wfv|B32,Ib" Encoding:"evex m:3 p:1 l:x w:0 0x04 /r ib"/"RAMI" { .Instruction = ND_INS_VPERMILPS, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1481, + .Mnemonic = 1516, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -98879,6 +103697,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -98894,12 +103713,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3532 Instruction:"VPERMILPS Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0x0C /r"/"RVM" + // Pos:3577 Instruction:"VPERMILPS Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0x0C /r"/"RVM" { .Instruction = ND_INS_VPERMILPS, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1481, + .Mnemonic = 1516, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -98908,6 +103727,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -98922,12 +103742,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3533 Instruction:"VPERMILPS Vx,Wx,Ib" Encoding:"vex m:3 p:1 l:x w:0 0x04 /r ib"/"RMI" + // Pos:3578 Instruction:"VPERMILPS Vx,Wx,Ib" Encoding:"vex m:3 p:1 l:x w:0 0x04 /r ib"/"RMI" { .Instruction = ND_INS_VPERMILPS, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1481, + .Mnemonic = 1516, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -98936,6 +103756,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -98950,12 +103771,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3534 Instruction:"VPERMPD Vuv{K}{z},aKq,Huv,Wuv|B64" Encoding:"evex m:2 p:1 l:1 w:1 0x16 /r"/"RAVM" + // Pos:3579 Instruction:"VPERMPD Vuv{K}{z},aKq,Huv,Wuv|B64" Encoding:"evex m:2 p:1 l:1 w:1 0x16 /r"/"RAVM" { .Instruction = ND_INS_VPERMPD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1482, + .Mnemonic = 1517, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -98964,6 +103785,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -98979,12 +103801,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3535 Instruction:"VPERMPD Vuv{K}{z},aKq,Huv,Wuv|B64" Encoding:"evex m:2 p:1 l:2 w:1 0x16 /r"/"RAVM" + // Pos:3580 Instruction:"VPERMPD Vuv{K}{z},aKq,Huv,Wuv|B64" Encoding:"evex m:2 p:1 l:2 w:1 0x16 /r"/"RAVM" { .Instruction = ND_INS_VPERMPD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1482, + .Mnemonic = 1517, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -98993,6 +103815,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -99008,12 +103831,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3536 Instruction:"VPERMPD Vuv{K}{z},aKq,Wuv|B64,Ib" Encoding:"evex m:3 p:1 l:x w:1 0x01 /r ib"/"RAMI" + // Pos:3581 Instruction:"VPERMPD Vuv{K}{z},aKq,Wuv|B64,Ib" Encoding:"evex m:3 p:1 l:x w:1 0x01 /r ib"/"RAMI" { .Instruction = ND_INS_VPERMPD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1482, + .Mnemonic = 1517, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -99022,6 +103845,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -99037,12 +103861,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3537 Instruction:"VPERMPD Vqq,Wqq,Ib" Encoding:"vex m:3 p:1 l:1 w:1 0x01 /r ib"/"RMI" + // Pos:3582 Instruction:"VPERMPD Vqq,Wqq,Ib" Encoding:"vex m:3 p:1 l:1 w:1 0x01 /r ib"/"RMI" { .Instruction = ND_INS_VPERMPD, .Category = ND_CAT_AVX2, .IsaSet = ND_SET_AVX2, - .Mnemonic = 1482, + .Mnemonic = 1517, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -99051,6 +103875,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -99065,12 +103890,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3538 Instruction:"VPERMPS Vuv{K}{z},aKq,Huv,Wuv|B32" Encoding:"evex m:2 p:1 l:1 w:0 0x16 /r"/"RAVM" + // Pos:3583 Instruction:"VPERMPS Vuv{K}{z},aKq,Huv,Wuv|B32" Encoding:"evex m:2 p:1 l:1 w:0 0x16 /r"/"RAVM" { .Instruction = ND_INS_VPERMPS, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1483, + .Mnemonic = 1518, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -99079,6 +103904,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -99094,12 +103920,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3539 Instruction:"VPERMPS Vuv{K}{z},aKq,Huv,Wuv|B32" Encoding:"evex m:2 p:1 l:2 w:0 0x16 /r"/"RAVM" + // Pos:3584 Instruction:"VPERMPS Vuv{K}{z},aKq,Huv,Wuv|B32" Encoding:"evex m:2 p:1 l:2 w:0 0x16 /r"/"RAVM" { .Instruction = ND_INS_VPERMPS, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1483, + .Mnemonic = 1518, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -99108,6 +103934,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -99123,12 +103950,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3540 Instruction:"VPERMPS Vqq,Hqq,Wqq" Encoding:"vex m:2 p:1 l:1 w:0 0x16 /r"/"RVM" + // Pos:3585 Instruction:"VPERMPS Vqq,Hqq,Wqq" Encoding:"vex m:2 p:1 l:1 w:0 0x16 /r"/"RVM" { .Instruction = ND_INS_VPERMPS, .Category = ND_CAT_AVX2, .IsaSet = ND_SET_AVX2, - .Mnemonic = 1483, + .Mnemonic = 1518, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -99137,6 +103964,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -99151,12 +103979,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3541 Instruction:"VPERMQ Vuv{K}{z},aKq,Huv,Wuv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x36 /r"/"RAVM" + // Pos:3586 Instruction:"VPERMQ Vuv{K}{z},aKq,Huv,Wuv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x36 /r"/"RAVM" { .Instruction = ND_INS_VPERMQ, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1484, + .Mnemonic = 1519, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -99165,6 +103993,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -99180,12 +104009,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3542 Instruction:"VPERMQ Vuv{K}{z},aKq,Wuv|B64,Ib" Encoding:"evex m:3 p:1 l:x w:1 0x00 /r ib"/"RAMI" + // Pos:3587 Instruction:"VPERMQ Vuv{K}{z},aKq,Wuv|B64,Ib" Encoding:"evex m:3 p:1 l:x w:1 0x00 /r ib"/"RAMI" { .Instruction = ND_INS_VPERMQ, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1484, + .Mnemonic = 1519, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -99194,6 +104023,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -99209,12 +104039,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3543 Instruction:"VPERMQ Vqq,Wqq,Ib" Encoding:"vex m:3 p:1 l:1 w:1 0x00 /r ib"/"RMI" + // Pos:3588 Instruction:"VPERMQ Vqq,Wqq,Ib" Encoding:"vex m:3 p:1 l:1 w:1 0x00 /r ib"/"RMI" { .Instruction = ND_INS_VPERMQ, .Category = ND_CAT_AVX2, .IsaSet = ND_SET_AVX2, - .Mnemonic = 1484, + .Mnemonic = 1519, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -99223,6 +104053,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -99237,12 +104068,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3544 Instruction:"VPERMT2B Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:2 p:1 l:x w:0 0x7D /r"/"RAVM" + // Pos:3589 Instruction:"VPERMT2B Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:2 p:1 l:x w:0 0x7D /r"/"RAVM" { .Instruction = ND_INS_VPERMT2B, .Category = ND_CAT_AVX512VBMI, .IsaSet = ND_SET_AVX512VBMI, - .Mnemonic = 1485, + .Mnemonic = 1520, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -99251,6 +104082,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NFnb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -99266,12 +104098,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3545 Instruction:"VPERMT2D Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x7E /r"/"RAVM" + // Pos:3590 Instruction:"VPERMT2D Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x7E /r"/"RAVM" { .Instruction = ND_INS_VPERMT2D, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1486, + .Mnemonic = 1521, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -99280,6 +104112,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -99295,12 +104128,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3546 Instruction:"VPERMT2PD Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x7F /r"/"RAVM" + // Pos:3591 Instruction:"VPERMT2PD Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x7F /r"/"RAVM" { .Instruction = ND_INS_VPERMT2PD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1487, + .Mnemonic = 1522, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -99309,6 +104142,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -99324,12 +104158,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3547 Instruction:"VPERMT2PS Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x7F /r"/"RAVM" + // Pos:3592 Instruction:"VPERMT2PS Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x7F /r"/"RAVM" { .Instruction = ND_INS_VPERMT2PS, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1488, + .Mnemonic = 1523, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -99338,6 +104172,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -99353,12 +104188,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3548 Instruction:"VPERMT2Q Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x7E /r"/"RAVM" + // Pos:3593 Instruction:"VPERMT2Q Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x7E /r"/"RAVM" { .Instruction = ND_INS_VPERMT2Q, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1489, + .Mnemonic = 1524, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -99367,6 +104202,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -99382,12 +104218,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3549 Instruction:"VPERMT2W Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:2 p:1 l:x w:1 0x7D /r"/"RAVM" + // Pos:3594 Instruction:"VPERMT2W Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:2 p:1 l:x w:1 0x7D /r"/"RAVM" { .Instruction = ND_INS_VPERMT2W, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1490, + .Mnemonic = 1525, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -99396,6 +104232,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NFnb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -99411,12 +104248,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3550 Instruction:"VPERMW Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:2 p:1 l:x w:1 0x8D /r"/"RAVM" + // Pos:3595 Instruction:"VPERMW Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:2 p:1 l:x w:1 0x8D /r"/"RAVM" { .Instruction = ND_INS_VPERMW, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1491, + .Mnemonic = 1526, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -99425,6 +104262,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NFnb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -99440,12 +104278,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3551 Instruction:"VPEXPANDB Vfv{K}{z},aKq,Wfv" Encoding:"evex m:2 p:1 l:x w:0 0x62 /r"/"RAM" + // Pos:3596 Instruction:"VPEXPANDB Vfv{K}{z},aKq,Wfv" Encoding:"evex m:2 p:1 l:x w:0 0x62 /r"/"RAM" { .Instruction = ND_INS_VPEXPANDB, .Category = ND_CAT_AVX512VBMI, .IsaSet = ND_SET_AVX512VBMI2, - .Mnemonic = 1492, + .Mnemonic = 1527, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -99454,6 +104292,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -99468,12 +104307,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3552 Instruction:"VPEXPANDD Vfv{K}{z},aKq,Wfv" Encoding:"evex m:2 p:1 l:x w:0 0x89 /r"/"RAM" + // Pos:3597 Instruction:"VPEXPANDD Vfv{K}{z},aKq,Wfv" Encoding:"evex m:2 p:1 l:x w:0 0x89 /r"/"RAM" { .Instruction = ND_INS_VPEXPANDD, .Category = ND_CAT_EXPAND, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1493, + .Mnemonic = 1528, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -99482,6 +104321,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -99496,12 +104336,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3553 Instruction:"VPEXPANDQ Vfv{K}{z},aKq,Wfv" Encoding:"evex m:2 p:1 l:x w:1 0x89 /r"/"RAM" + // Pos:3598 Instruction:"VPEXPANDQ Vfv{K}{z},aKq,Wfv" Encoding:"evex m:2 p:1 l:x w:1 0x89 /r"/"RAM" { .Instruction = ND_INS_VPEXPANDQ, .Category = ND_CAT_EXPAND, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1494, + .Mnemonic = 1529, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -99510,6 +104350,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -99524,12 +104365,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3554 Instruction:"VPEXPANDW Vfv{K}{z},aKq,Wfv" Encoding:"evex m:2 p:1 l:x w:1 0x62 /r"/"RAM" + // Pos:3599 Instruction:"VPEXPANDW Vfv{K}{z},aKq,Wfv" Encoding:"evex m:2 p:1 l:x w:1 0x62 /r"/"RAM" { .Instruction = ND_INS_VPEXPANDW, .Category = ND_CAT_AVX512VBMI, .IsaSet = ND_SET_AVX512VBMI2, - .Mnemonic = 1495, + .Mnemonic = 1530, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -99538,6 +104379,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -99552,12 +104394,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3555 Instruction:"VPEXTRB Mb,Vdq,Ib" Encoding:"evex m:3 p:1 l:0 w:i 0x14 /r:mem ib"/"MRI" + // Pos:3600 Instruction:"VPEXTRB Mb,Vdq,Ib" Encoding:"evex m:3 p:1 l:0 w:i 0x14 /r:mem ib"/"MRI" { .Instruction = ND_INS_VPEXTRB, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1496, + .Mnemonic = 1531, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -99566,6 +104408,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E9NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -99580,12 +104423,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3556 Instruction:"VPEXTRB Ry,Vdq,Ib" Encoding:"evex m:3 p:1 l:0 w:i 0x14 /r:reg ib"/"MRI" + // Pos:3601 Instruction:"VPEXTRB Ry,Vdq,Ib" Encoding:"evex m:3 p:1 l:0 w:i 0x14 /r:reg ib"/"MRI" { .Instruction = ND_INS_VPEXTRB, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1496, + .Mnemonic = 1531, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -99594,6 +104437,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E9NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -99608,12 +104452,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3557 Instruction:"VPEXTRB Mb,Vdq,Ib" Encoding:"vex m:3 p:1 l:0 w:i 0x14 /r:mem ib"/"MRI" + // Pos:3602 Instruction:"VPEXTRB Mb,Vdq,Ib" Encoding:"vex m:3 p:1 l:0 w:i 0x14 /r:mem ib"/"MRI" { .Instruction = ND_INS_VPEXTRB, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1496, + .Mnemonic = 1531, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -99622,6 +104466,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -99636,12 +104481,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3558 Instruction:"VPEXTRB Ry,Vdq,Ib" Encoding:"vex m:3 p:1 l:0 w:i 0x14 /r:reg ib"/"MRI" + // Pos:3603 Instruction:"VPEXTRB Ry,Vdq,Ib" Encoding:"vex m:3 p:1 l:0 w:i 0x14 /r:reg ib"/"MRI" { .Instruction = ND_INS_VPEXTRB, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1496, + .Mnemonic = 1531, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -99650,6 +104495,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -99664,12 +104510,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3559 Instruction:"VPEXTRD Md,Vdq,Ib" Encoding:"evex m:3 p:1 l:0 w:0 0x16 /r:mem ib"/"MRI" + // Pos:3604 Instruction:"VPEXTRD Md,Vdq,Ib" Encoding:"evex m:3 p:1 l:0 w:0 0x16 /r:mem ib"/"MRI" { .Instruction = ND_INS_VPEXTRD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512DQ, - .Mnemonic = 1497, + .Mnemonic = 1532, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -99678,6 +104524,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E9NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -99692,12 +104539,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3560 Instruction:"VPEXTRD Ry,Vdq,Ib" Encoding:"evex m:3 p:1 l:0 w:0 0x16 /r:reg ib"/"MRI" + // Pos:3605 Instruction:"VPEXTRD Ry,Vdq,Ib" Encoding:"evex m:3 p:1 l:0 w:0 0x16 /r:reg ib"/"MRI" { .Instruction = ND_INS_VPEXTRD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512DQ, - .Mnemonic = 1497, + .Mnemonic = 1532, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -99706,6 +104553,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E9NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -99720,12 +104568,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3561 Instruction:"VPEXTRD Md,Vdq,Ib" Encoding:"vex m:3 p:1 l:0 w:0 0x16 /r:mem ib"/"MRI" + // Pos:3606 Instruction:"VPEXTRD Md,Vdq,Ib" Encoding:"vex m:3 p:1 l:0 w:0 0x16 /r:mem ib"/"MRI" { .Instruction = ND_INS_VPEXTRD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1497, + .Mnemonic = 1532, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -99734,6 +104582,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -99748,12 +104597,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3562 Instruction:"VPEXTRD Ry,Vdq,Ib" Encoding:"vex m:3 p:1 l:0 w:0 0x16 /r:reg ib"/"MRI" + // Pos:3607 Instruction:"VPEXTRD Ry,Vdq,Ib" Encoding:"vex m:3 p:1 l:0 w:0 0x16 /r:reg ib"/"MRI" { .Instruction = ND_INS_VPEXTRD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1497, + .Mnemonic = 1532, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -99762,6 +104611,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -99776,12 +104626,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3563 Instruction:"VPEXTRQ Mq,Vdq,Ib" Encoding:"evex m:3 p:1 l:0 w:1 0x16 /r:mem ib"/"MRI" + // Pos:3608 Instruction:"VPEXTRQ Mq,Vdq,Ib" Encoding:"evex m:3 p:1 l:0 w:1 0x16 /r:mem ib"/"MRI" { .Instruction = ND_INS_VPEXTRQ, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512DQ, - .Mnemonic = 1498, + .Mnemonic = 1533, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -99790,6 +104640,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E9NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -99804,12 +104655,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3564 Instruction:"VPEXTRQ Ry,Vdq,Ib" Encoding:"evex m:3 p:1 l:0 w:1 0x16 /r:reg ib"/"MRI" + // Pos:3609 Instruction:"VPEXTRQ Ry,Vdq,Ib" Encoding:"evex m:3 p:1 l:0 w:1 0x16 /r:reg ib"/"MRI" { .Instruction = ND_INS_VPEXTRQ, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512DQ, - .Mnemonic = 1498, + .Mnemonic = 1533, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -99818,6 +104669,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E9NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -99832,12 +104684,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3565 Instruction:"VPEXTRQ Mq,Vdq,Ib" Encoding:"vex m:3 p:1 l:0 w:1 0x16 /r:mem ib"/"MRI" + // Pos:3610 Instruction:"VPEXTRQ Mq,Vdq,Ib" Encoding:"vex m:3 p:1 l:0 w:1 0x16 /r:mem ib"/"MRI" { .Instruction = ND_INS_VPEXTRQ, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1498, + .Mnemonic = 1533, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -99846,6 +104698,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -99860,12 +104713,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3566 Instruction:"VPEXTRQ Ry,Vdq,Ib" Encoding:"vex m:3 p:1 l:0 w:1 0x16 /r:reg ib"/"MRI" + // Pos:3611 Instruction:"VPEXTRQ Ry,Vdq,Ib" Encoding:"vex m:3 p:1 l:0 w:1 0x16 /r:reg ib"/"MRI" { .Instruction = ND_INS_VPEXTRQ, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1498, + .Mnemonic = 1533, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -99874,6 +104727,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -99888,12 +104742,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3567 Instruction:"VPEXTRW Gy,Udq,Ib" Encoding:"evex m:1 p:1 l:0 w:i 0xC5 /r:reg ib"/"RMI" + // Pos:3612 Instruction:"VPEXTRW Gy,Udq,Ib" Encoding:"evex m:1 p:1 l:0 w:i 0xC5 /r:reg ib"/"RMI" { .Instruction = ND_INS_VPEXTRW, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1499, + .Mnemonic = 1534, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -99902,6 +104756,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E9NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -99916,12 +104771,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3568 Instruction:"VPEXTRW Mw,Vdq,Ib" Encoding:"evex m:3 p:1 l:0 w:i 0x15 /r:mem ib"/"MRI" + // Pos:3613 Instruction:"VPEXTRW Mw,Vdq,Ib" Encoding:"evex m:3 p:1 l:0 w:i 0x15 /r:mem ib"/"MRI" { .Instruction = ND_INS_VPEXTRW, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1499, + .Mnemonic = 1534, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -99930,6 +104785,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E9NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -99944,12 +104800,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3569 Instruction:"VPEXTRW Ry,Vdq,Ib" Encoding:"evex m:3 p:1 l:0 w:i 0x15 /r:reg ib"/"MRI" + // Pos:3614 Instruction:"VPEXTRW Ry,Vdq,Ib" Encoding:"evex m:3 p:1 l:0 w:i 0x15 /r:reg ib"/"MRI" { .Instruction = ND_INS_VPEXTRW, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1499, + .Mnemonic = 1534, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -99958,6 +104814,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E9NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -99972,12 +104829,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3570 Instruction:"VPEXTRW Gy,Udq,Ib" Encoding:"vex m:1 p:1 l:0 w:i 0xC5 /r:reg ib"/"RMI" + // Pos:3615 Instruction:"VPEXTRW Gy,Udq,Ib" Encoding:"vex m:1 p:1 l:0 w:i 0xC5 /r:reg ib"/"RMI" { .Instruction = ND_INS_VPEXTRW, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1499, + .Mnemonic = 1534, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -99986,6 +104843,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -100000,12 +104858,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3571 Instruction:"VPEXTRW Mw,Vdq,Ib" Encoding:"vex m:3 p:1 l:0 w:i 0x15 /r:mem ib"/"MRI" + // Pos:3616 Instruction:"VPEXTRW Mw,Vdq,Ib" Encoding:"vex m:3 p:1 l:0 w:i 0x15 /r:mem ib"/"MRI" { .Instruction = ND_INS_VPEXTRW, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1499, + .Mnemonic = 1534, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -100014,6 +104872,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -100028,12 +104887,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3572 Instruction:"VPEXTRW Ry,Vdq,Ib" Encoding:"vex m:3 p:1 l:0 w:i 0x15 /r:reg ib"/"MRI" + // Pos:3617 Instruction:"VPEXTRW Ry,Vdq,Ib" Encoding:"vex m:3 p:1 l:0 w:i 0x15 /r:reg ib"/"MRI" { .Instruction = ND_INS_VPEXTRW, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1499, + .Mnemonic = 1534, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -100042,6 +104901,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -100056,12 +104916,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3573 Instruction:"VPGATHERDD Vfv{K},aKq,Mvm32n" Encoding:"evex m:2 p:1 l:x w:0 0x90 /r:mem vsib"/"RAM" + // Pos:3618 Instruction:"VPGATHERDD Vfv{K},aKq,Mvm32n" Encoding:"evex m:2 p:1 l:x w:0 0x90 /r:mem vsib"/"RAM" { .Instruction = ND_INS_VPGATHERDD, .Category = ND_CAT_GATHER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1500, + .Mnemonic = 1535, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK, @@ -100070,6 +104930,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E12, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -100084,12 +104945,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3574 Instruction:"VPGATHERDD Vx,Mvm32n,Hx" Encoding:"vex m:2 p:1 l:x w:0 0x90 /r:mem vsib"/"RMV" + // Pos:3619 Instruction:"VPGATHERDD Vx,Mvm32n,Hx" Encoding:"vex m:2 p:1 l:x w:0 0x90 /r:mem vsib"/"RMV" { .Instruction = ND_INS_VPGATHERDD, .Category = ND_CAT_AVX2GATHER, .IsaSet = ND_SET_AVX2GATHER, - .Mnemonic = 1500, + .Mnemonic = 1535, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -100098,6 +104959,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_12, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -100112,12 +104974,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3575 Instruction:"VPGATHERDQ Vfv{K},aKq,Mvm32h" Encoding:"evex m:2 p:1 l:x w:1 0x90 /r:mem vsib"/"RAM" + // Pos:3620 Instruction:"VPGATHERDQ Vfv{K},aKq,Mvm32h" Encoding:"evex m:2 p:1 l:x w:1 0x90 /r:mem vsib"/"RAM" { .Instruction = ND_INS_VPGATHERDQ, .Category = ND_CAT_GATHER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1501, + .Mnemonic = 1536, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK, @@ -100126,6 +104988,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E12, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -100140,12 +105003,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3576 Instruction:"VPGATHERDQ Vx,Mvm32h,Hx" Encoding:"vex m:2 p:1 l:x w:1 0x90 /r:mem vsib"/"RMV" + // Pos:3621 Instruction:"VPGATHERDQ Vx,Mvm32h,Hx" Encoding:"vex m:2 p:1 l:x w:1 0x90 /r:mem vsib"/"RMV" { .Instruction = ND_INS_VPGATHERDQ, .Category = ND_CAT_AVX2GATHER, .IsaSet = ND_SET_AVX2GATHER, - .Mnemonic = 1501, + .Mnemonic = 1536, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -100154,6 +105017,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_12, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -100168,12 +105032,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3577 Instruction:"VPGATHERQD Vhv{K},aKq,Mvm64n" Encoding:"evex m:2 p:1 l:x w:0 0x91 /r:mem vsib"/"RAM" + // Pos:3622 Instruction:"VPGATHERQD Vhv{K},aKq,Mvm64n" Encoding:"evex m:2 p:1 l:x w:0 0x91 /r:mem vsib"/"RAM" { .Instruction = ND_INS_VPGATHERQD, .Category = ND_CAT_GATHER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1502, + .Mnemonic = 1537, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK, @@ -100182,6 +105046,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E12, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -100196,12 +105061,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3578 Instruction:"VPGATHERQD Vdq,Mvm64n,Hdq" Encoding:"vex m:2 p:1 l:x w:0 0x91 /r:mem vsib"/"RMV" + // Pos:3623 Instruction:"VPGATHERQD Vdq,Mvm64n,Hdq" Encoding:"vex m:2 p:1 l:x w:0 0x91 /r:mem vsib"/"RMV" { .Instruction = ND_INS_VPGATHERQD, .Category = ND_CAT_AVX2GATHER, .IsaSet = ND_SET_AVX2GATHER, - .Mnemonic = 1502, + .Mnemonic = 1537, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -100210,6 +105075,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_12, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -100224,12 +105090,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3579 Instruction:"VPGATHERQQ Vfv{K},aKq,Mvm64n" Encoding:"evex m:2 p:1 l:x w:1 0x91 /r:mem vsib"/"RAM" + // Pos:3624 Instruction:"VPGATHERQQ Vfv{K},aKq,Mvm64n" Encoding:"evex m:2 p:1 l:x w:1 0x91 /r:mem vsib"/"RAM" { .Instruction = ND_INS_VPGATHERQQ, .Category = ND_CAT_GATHER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1503, + .Mnemonic = 1538, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK, @@ -100238,6 +105104,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E12, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -100252,12 +105119,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3580 Instruction:"VPGATHERQQ Vx,Mvm64n,Hx" Encoding:"vex m:2 p:1 l:x w:1 0x91 /r:mem vsib"/"RMV" + // Pos:3625 Instruction:"VPGATHERQQ Vx,Mvm64n,Hx" Encoding:"vex m:2 p:1 l:x w:1 0x91 /r:mem vsib"/"RMV" { .Instruction = ND_INS_VPGATHERQQ, .Category = ND_CAT_AVX2GATHER, .IsaSet = ND_SET_AVX2GATHER, - .Mnemonic = 1503, + .Mnemonic = 1538, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -100266,6 +105133,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_12, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -100280,12 +105148,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3581 Instruction:"VPHADDBD Vdq,Wdq" Encoding:"xop m:9 0xC2 /r"/"RM" + // Pos:3626 Instruction:"VPHADDBD Vdq,Wdq" Encoding:"xop m:9 0xC2 /r"/"RM" { .Instruction = ND_INS_VPHADDBD, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1504, + .Mnemonic = 1539, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -100294,6 +105162,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -100307,12 +105176,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3582 Instruction:"VPHADDBQ Vdq,Wdq" Encoding:"xop m:9 0xC3 /r"/"RM" + // Pos:3627 Instruction:"VPHADDBQ Vdq,Wdq" Encoding:"xop m:9 0xC3 /r"/"RM" { .Instruction = ND_INS_VPHADDBQ, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1505, + .Mnemonic = 1540, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -100321,6 +105190,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -100334,12 +105204,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3583 Instruction:"VPHADDBW Vdq,Wdq" Encoding:"xop m:9 0xC1 /r"/"RM" + // Pos:3628 Instruction:"VPHADDBW Vdq,Wdq" Encoding:"xop m:9 0xC1 /r"/"RM" { .Instruction = ND_INS_VPHADDBW, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1506, + .Mnemonic = 1541, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -100348,6 +105218,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -100361,12 +105232,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3584 Instruction:"VPHADDD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x02 /r"/"RVM" + // Pos:3629 Instruction:"VPHADDD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x02 /r"/"RVM" { .Instruction = ND_INS_VPHADDD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1507, + .Mnemonic = 1542, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -100375,6 +105246,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -100389,12 +105261,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3585 Instruction:"VPHADDDQ Vdq,Wdq" Encoding:"xop m:9 0xCB /r"/"RM" + // Pos:3630 Instruction:"VPHADDDQ Vdq,Wdq" Encoding:"xop m:9 0xCB /r"/"RM" { .Instruction = ND_INS_VPHADDDQ, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1508, + .Mnemonic = 1543, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -100403,6 +105275,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -100416,12 +105289,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3586 Instruction:"VPHADDSW Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x03 /r"/"RVM" + // Pos:3631 Instruction:"VPHADDSW Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x03 /r"/"RVM" { .Instruction = ND_INS_VPHADDSW, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1509, + .Mnemonic = 1544, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -100430,6 +105303,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -100444,12 +105318,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3587 Instruction:"VPHADDUBD Vdq,Wdq" Encoding:"xop m:9 0xD2 /r"/"RM" + // Pos:3632 Instruction:"VPHADDUBD Vdq,Wdq" Encoding:"xop m:9 0xD2 /r"/"RM" { .Instruction = ND_INS_VPHADDUBD, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1510, + .Mnemonic = 1545, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -100458,6 +105332,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -100471,12 +105346,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3588 Instruction:"VPHADDUBQ Vdq,Wdq" Encoding:"xop m:9 0xD3 /r"/"RM" + // Pos:3633 Instruction:"VPHADDUBQ Vdq,Wdq" Encoding:"xop m:9 0xD3 /r"/"RM" { .Instruction = ND_INS_VPHADDUBQ, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1511, + .Mnemonic = 1546, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -100485,6 +105360,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -100498,12 +105374,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3589 Instruction:"VPHADDUBW Vdq,Wdq" Encoding:"xop m:9 0xD1 /r"/"RM" + // Pos:3634 Instruction:"VPHADDUBW Vdq,Wdq" Encoding:"xop m:9 0xD1 /r"/"RM" { .Instruction = ND_INS_VPHADDUBW, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1512, + .Mnemonic = 1547, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -100512,6 +105388,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -100525,12 +105402,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3590 Instruction:"VPHADDUDQ Vdq,Wdq" Encoding:"xop m:9 0xDB /r"/"RM" + // Pos:3635 Instruction:"VPHADDUDQ Vdq,Wdq" Encoding:"xop m:9 0xDB /r"/"RM" { .Instruction = ND_INS_VPHADDUDQ, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1513, + .Mnemonic = 1548, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -100539,6 +105416,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -100552,12 +105430,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3591 Instruction:"VPHADDUWD Vdq,Wdq" Encoding:"xop m:9 0xD6 /r"/"RM" + // Pos:3636 Instruction:"VPHADDUWD Vdq,Wdq" Encoding:"xop m:9 0xD6 /r"/"RM" { .Instruction = ND_INS_VPHADDUWD, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1514, + .Mnemonic = 1549, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -100566,6 +105444,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -100579,12 +105458,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3592 Instruction:"VPHADDUWQ Vdq,Wdq" Encoding:"xop m:9 0xD7 /r"/"RM" + // Pos:3637 Instruction:"VPHADDUWQ Vdq,Wdq" Encoding:"xop m:9 0xD7 /r"/"RM" { .Instruction = ND_INS_VPHADDUWQ, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1515, + .Mnemonic = 1550, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -100593,6 +105472,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -100606,12 +105486,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3593 Instruction:"VPHADDW Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x01 /r"/"RVM" + // Pos:3638 Instruction:"VPHADDW Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x01 /r"/"RVM" { .Instruction = ND_INS_VPHADDW, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1516, + .Mnemonic = 1551, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -100620,6 +105500,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -100634,12 +105515,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3594 Instruction:"VPHADDWD Vdq,Wdq" Encoding:"xop m:9 0xC6 /r"/"RM" + // Pos:3639 Instruction:"VPHADDWD Vdq,Wdq" Encoding:"xop m:9 0xC6 /r"/"RM" { .Instruction = ND_INS_VPHADDWD, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1517, + .Mnemonic = 1552, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -100648,6 +105529,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -100661,12 +105543,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3595 Instruction:"VPHADDWQ Vdq,Wdq" Encoding:"xop m:9 0xC7 /r"/"RM" + // Pos:3640 Instruction:"VPHADDWQ Vdq,Wdq" Encoding:"xop m:9 0xC7 /r"/"RM" { .Instruction = ND_INS_VPHADDWQ, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1518, + .Mnemonic = 1553, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -100675,6 +105557,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -100688,12 +105571,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3596 Instruction:"VPHMINPOSUW Vdq,Wdq" Encoding:"vex m:2 p:1 l:0 w:i 0x41 /r"/"RM" + // Pos:3641 Instruction:"VPHMINPOSUW Vdq,Wdq" Encoding:"vex m:2 p:1 l:0 w:i 0x41 /r"/"RM" { .Instruction = ND_INS_VPHMINPOSUW, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1519, + .Mnemonic = 1554, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -100702,6 +105585,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -100715,12 +105599,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3597 Instruction:"VPHSUBBW Vdq,Wdq" Encoding:"xop m:9 0xE1 /r"/"RM" + // Pos:3642 Instruction:"VPHSUBBW Vdq,Wdq" Encoding:"xop m:9 0xE1 /r"/"RM" { .Instruction = ND_INS_VPHSUBBW, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1520, + .Mnemonic = 1555, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -100729,6 +105613,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -100742,12 +105627,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3598 Instruction:"VPHSUBD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x06 /r"/"RVM" + // Pos:3643 Instruction:"VPHSUBD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x06 /r"/"RVM" { .Instruction = ND_INS_VPHSUBD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1521, + .Mnemonic = 1556, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -100756,6 +105641,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -100770,12 +105656,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3599 Instruction:"VPHSUBDQ Vdq,Wdq" Encoding:"xop m:9 0xE3 /r"/"RM" + // Pos:3644 Instruction:"VPHSUBDQ Vdq,Wdq" Encoding:"xop m:9 0xE3 /r"/"RM" { .Instruction = ND_INS_VPHSUBDQ, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1522, + .Mnemonic = 1557, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -100784,6 +105670,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -100797,12 +105684,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3600 Instruction:"VPHSUBSW Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x07 /r"/"RVM" + // Pos:3645 Instruction:"VPHSUBSW Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x07 /r"/"RVM" { .Instruction = ND_INS_VPHSUBSW, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1523, + .Mnemonic = 1558, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -100811,6 +105698,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -100825,12 +105713,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3601 Instruction:"VPHSUBW Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x05 /r"/"RVM" + // Pos:3646 Instruction:"VPHSUBW Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x05 /r"/"RVM" { .Instruction = ND_INS_VPHSUBW, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1524, + .Mnemonic = 1559, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -100839,6 +105727,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -100853,12 +105742,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3602 Instruction:"VPHSUBWD Vdq,Wdq" Encoding:"xop m:9 0xE2 /r"/"RM" + // Pos:3647 Instruction:"VPHSUBWD Vdq,Wdq" Encoding:"xop m:9 0xE2 /r"/"RM" { .Instruction = ND_INS_VPHSUBWD, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1525, + .Mnemonic = 1560, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -100867,6 +105756,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -100880,12 +105770,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3603 Instruction:"VPINSRB Vdq,Hdq,Mb,Ib" Encoding:"evex m:3 p:1 l:0 w:i 0x20 /r:mem ib"/"RVMI" + // Pos:3648 Instruction:"VPINSRB Vdq,Hdq,Mb,Ib" Encoding:"evex m:3 p:1 l:0 w:i 0x20 /r:mem ib"/"RVMI" { .Instruction = ND_INS_VPINSRB, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1526, + .Mnemonic = 1561, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -100894,6 +105784,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E9NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -100909,12 +105800,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3604 Instruction:"VPINSRB Vdq,Hdq,Rd,Ib" Encoding:"evex m:3 p:1 l:0 w:i 0x20 /r:reg ib"/"RVMI" + // Pos:3649 Instruction:"VPINSRB Vdq,Hdq,Rd,Ib" Encoding:"evex m:3 p:1 l:0 w:i 0x20 /r:reg ib"/"RVMI" { .Instruction = ND_INS_VPINSRB, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1526, + .Mnemonic = 1561, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -100923,6 +105814,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E9NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -100938,12 +105830,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3605 Instruction:"VPINSRB Vdq,Hdq,Mb,Ib" Encoding:"vex m:3 p:1 l:0 w:i 0x20 /r:mem ib"/"RVMI" + // Pos:3650 Instruction:"VPINSRB Vdq,Hdq,Mb,Ib" Encoding:"vex m:3 p:1 l:0 w:i 0x20 /r:mem ib"/"RVMI" { .Instruction = ND_INS_VPINSRB, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1526, + .Mnemonic = 1561, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -100952,6 +105844,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -100967,12 +105860,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3606 Instruction:"VPINSRB Vdq,Hdq,Rd,Ib" Encoding:"vex m:3 p:1 l:0 w:i 0x20 /r:reg ib"/"RVMI" + // Pos:3651 Instruction:"VPINSRB Vdq,Hdq,Rd,Ib" Encoding:"vex m:3 p:1 l:0 w:i 0x20 /r:reg ib"/"RVMI" { .Instruction = ND_INS_VPINSRB, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1526, + .Mnemonic = 1561, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -100981,6 +105874,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -100996,12 +105890,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3607 Instruction:"VPINSRD Vdq,Hdq,Ed,Ib" Encoding:"evex m:3 p:1 l:0 w:0 0x22 /r ib"/"RVMI" + // Pos:3652 Instruction:"VPINSRD Vdq,Hdq,Ed,Ib" Encoding:"evex m:3 p:1 l:0 w:0 0x22 /r ib"/"RVMI" { .Instruction = ND_INS_VPINSRD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512DQ, - .Mnemonic = 1527, + .Mnemonic = 1562, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -101010,6 +105904,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E9NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -101025,12 +105920,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3608 Instruction:"VPINSRD Vdq,Hdq,Ey,Ib" Encoding:"vex m:3 p:1 l:0 w:0 0x22 /r ib"/"RVMI" + // Pos:3653 Instruction:"VPINSRD Vdq,Hdq,Ey,Ib" Encoding:"vex m:3 p:1 l:0 w:0 0x22 /r ib"/"RVMI" { .Instruction = ND_INS_VPINSRD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1527, + .Mnemonic = 1562, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -101039,6 +105934,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -101054,12 +105950,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3609 Instruction:"VPINSRQ Vdq,Hdq,Eq,Ib" Encoding:"evex m:3 p:1 l:0 w:1 0x22 /r ib"/"RVMI" + // Pos:3654 Instruction:"VPINSRQ Vdq,Hdq,Eq,Ib" Encoding:"evex m:3 p:1 l:0 w:1 0x22 /r ib"/"RVMI" { .Instruction = ND_INS_VPINSRQ, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512DQ, - .Mnemonic = 1528, + .Mnemonic = 1563, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -101068,6 +105964,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E9NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -101083,12 +105980,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3610 Instruction:"VPINSRQ Vdq,Hdq,Ey,Ib" Encoding:"vex m:3 p:1 l:0 w:1 0x22 /r ib"/"RVMI" + // Pos:3655 Instruction:"VPINSRQ Vdq,Hdq,Ey,Ib" Encoding:"vex m:3 p:1 l:0 w:1 0x22 /r ib"/"RVMI" { .Instruction = ND_INS_VPINSRQ, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1528, + .Mnemonic = 1563, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -101097,6 +105994,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -101112,12 +106010,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3611 Instruction:"VPINSRW Vdq,Hdq,Mw,Ib" Encoding:"evex m:1 p:1 l:0 w:i 0xC4 /r:mem ib"/"RVMI" + // Pos:3656 Instruction:"VPINSRW Vdq,Hdq,Mw,Ib" Encoding:"evex m:1 p:1 l:0 w:i 0xC4 /r:mem ib"/"RVMI" { .Instruction = ND_INS_VPINSRW, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1529, + .Mnemonic = 1564, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -101126,6 +106024,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E9NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -101141,12 +106040,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3612 Instruction:"VPINSRW Vdq,Hdq,Rv,Ib" Encoding:"evex m:1 p:1 l:0 w:i 0xC4 /r:reg ib"/"RVMI" + // Pos:3657 Instruction:"VPINSRW Vdq,Hdq,Rv,Ib" Encoding:"evex m:1 p:1 l:0 w:i 0xC4 /r:reg ib"/"RVMI" { .Instruction = ND_INS_VPINSRW, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1529, + .Mnemonic = 1564, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -101155,6 +106054,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E9NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -101170,12 +106070,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3613 Instruction:"VPINSRW Vdq,Hdq,Mw,Ib" Encoding:"vex m:1 p:1 l:0 w:i 0xC4 /r:mem ib"/"RVMI" + // Pos:3658 Instruction:"VPINSRW Vdq,Hdq,Mw,Ib" Encoding:"vex m:1 p:1 l:0 w:i 0xC4 /r:mem ib"/"RVMI" { .Instruction = ND_INS_VPINSRW, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1529, + .Mnemonic = 1564, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -101184,6 +106084,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -101199,12 +106100,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3614 Instruction:"VPINSRW Vdq,Hdq,Rd,Ib" Encoding:"vex m:1 p:1 l:0 w:i 0xC4 /r:reg ib"/"RVMI" + // Pos:3659 Instruction:"VPINSRW Vdq,Hdq,Rd,Ib" Encoding:"vex m:1 p:1 l:0 w:i 0xC4 /r:reg ib"/"RVMI" { .Instruction = ND_INS_VPINSRW, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1529, + .Mnemonic = 1564, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -101213,6 +106114,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -101228,12 +106130,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3615 Instruction:"VPLZCNTD Vfv{K}{z},aKq,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x44 /r"/"RAM" + // Pos:3660 Instruction:"VPLZCNTD Vfv{K}{z},aKq,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x44 /r"/"RAM" { .Instruction = ND_INS_VPLZCNTD, .Category = ND_CAT_CONFLICT, .IsaSet = ND_SET_AVX512CD, - .Mnemonic = 1530, + .Mnemonic = 1565, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -101242,6 +106144,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -101256,12 +106159,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3616 Instruction:"VPLZCNTQ Vfv{K}{z},aKq,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x44 /r"/"RAM" + // Pos:3661 Instruction:"VPLZCNTQ Vfv{K}{z},aKq,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x44 /r"/"RAM" { .Instruction = ND_INS_VPLZCNTQ, .Category = ND_CAT_CONFLICT, .IsaSet = ND_SET_AVX512CD, - .Mnemonic = 1531, + .Mnemonic = 1566, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -101270,6 +106173,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -101284,12 +106188,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3617 Instruction:"VPMACSDD Vdq,Hdq,Wdq,Ldq" Encoding:"xop m:8 0x9E /r is4"/"RVML" + // Pos:3662 Instruction:"VPMACSDD Vdq,Hdq,Wdq,Ldq" Encoding:"xop m:8 0x9E /r is4"/"RVML" { .Instruction = ND_INS_VPMACSDD, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1532, + .Mnemonic = 1567, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -101298,6 +106202,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -101313,12 +106218,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3618 Instruction:"VPMACSDQH Vdq,Hdq,Wdq,Ldq" Encoding:"xop m:8 0x9F /r is4"/"RVML" + // Pos:3663 Instruction:"VPMACSDQH Vdq,Hdq,Wdq,Ldq" Encoding:"xop m:8 0x9F /r is4"/"RVML" { .Instruction = ND_INS_VPMACSDQH, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1533, + .Mnemonic = 1568, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -101327,6 +106232,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -101342,12 +106248,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3619 Instruction:"VPMACSDQL Vdq,Hdq,Wdq,Ldq" Encoding:"xop m:8 0x97 /r is4"/"RVML" + // Pos:3664 Instruction:"VPMACSDQL Vdq,Hdq,Wdq,Ldq" Encoding:"xop m:8 0x97 /r is4"/"RVML" { .Instruction = ND_INS_VPMACSDQL, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1534, + .Mnemonic = 1569, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -101356,6 +106262,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -101371,12 +106278,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3620 Instruction:"VPMACSSDD Vdq,Hdq,Wdq,Ldq" Encoding:"xop m:8 0x8E /r is4"/"RVML" + // Pos:3665 Instruction:"VPMACSSDD Vdq,Hdq,Wdq,Ldq" Encoding:"xop m:8 0x8E /r is4"/"RVML" { .Instruction = ND_INS_VPMACSSDD, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1535, + .Mnemonic = 1570, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -101385,6 +106292,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -101400,12 +106308,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3621 Instruction:"VPMACSSDQH Vdq,Hdq,Wdq,Ldq" Encoding:"xop m:8 0x8F /r is4"/"RVML" + // Pos:3666 Instruction:"VPMACSSDQH Vdq,Hdq,Wdq,Ldq" Encoding:"xop m:8 0x8F /r is4"/"RVML" { .Instruction = ND_INS_VPMACSSDQH, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1536, + .Mnemonic = 1571, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -101414,6 +106322,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -101429,12 +106338,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3622 Instruction:"VPMACSSDQL Vdq,Hdq,Wdq,Ldq" Encoding:"xop m:8 0x87 /r is4"/"RVML" + // Pos:3667 Instruction:"VPMACSSDQL Vdq,Hdq,Wdq,Ldq" Encoding:"xop m:8 0x87 /r is4"/"RVML" { .Instruction = ND_INS_VPMACSSDQL, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1537, + .Mnemonic = 1572, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -101443,6 +106352,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -101458,12 +106368,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3623 Instruction:"VPMACSSWD Vdq,Hdq,Wdq,Ldq" Encoding:"xop m:8 0x86 /r is4"/"RVML" + // Pos:3668 Instruction:"VPMACSSWD Vdq,Hdq,Wdq,Ldq" Encoding:"xop m:8 0x86 /r is4"/"RVML" { .Instruction = ND_INS_VPMACSSWD, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1538, + .Mnemonic = 1573, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -101472,6 +106382,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -101487,12 +106398,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3624 Instruction:"VPMACSSWW Vdq,Hdq,Wdq,Ldq" Encoding:"xop m:8 0x85 /r is4"/"RVML" + // Pos:3669 Instruction:"VPMACSSWW Vdq,Hdq,Wdq,Ldq" Encoding:"xop m:8 0x85 /r is4"/"RVML" { .Instruction = ND_INS_VPMACSSWW, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1539, + .Mnemonic = 1574, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -101501,6 +106412,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -101516,12 +106428,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3625 Instruction:"VPMACSWD Vdq,Hdq,Wdq,Ldq" Encoding:"xop m:8 0x96 /r is4"/"RVML" + // Pos:3670 Instruction:"VPMACSWD Vdq,Hdq,Wdq,Ldq" Encoding:"xop m:8 0x96 /r is4"/"RVML" { .Instruction = ND_INS_VPMACSWD, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1540, + .Mnemonic = 1575, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -101530,6 +106442,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -101545,12 +106458,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3626 Instruction:"VPMACSWW Vdq,Hdq,Wdq,Ldq" Encoding:"xop m:8 0x95 /r is4"/"RVML" + // Pos:3671 Instruction:"VPMACSWW Vdq,Hdq,Wdq,Ldq" Encoding:"xop m:8 0x95 /r is4"/"RVML" { .Instruction = ND_INS_VPMACSWW, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1541, + .Mnemonic = 1576, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -101559,6 +106472,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -101574,12 +106488,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3627 Instruction:"VPMADCSSWD Vdq,Hdq,Wdq,Ldq" Encoding:"xop m:8 0xA6 /r is4"/"RVML" + // Pos:3672 Instruction:"VPMADCSSWD Vdq,Hdq,Wdq,Ldq" Encoding:"xop m:8 0xA6 /r is4"/"RVML" { .Instruction = ND_INS_VPMADCSSWD, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1542, + .Mnemonic = 1577, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -101588,6 +106502,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -101603,12 +106518,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3628 Instruction:"VPMADCSWD Vdq,Hdq,Wdq,Ldq" Encoding:"xop m:8 0xB6 /r is4"/"RVML" + // Pos:3673 Instruction:"VPMADCSWD Vdq,Hdq,Wdq,Ldq" Encoding:"xop m:8 0xB6 /r is4"/"RVML" { .Instruction = ND_INS_VPMADCSWD, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1543, + .Mnemonic = 1578, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -101617,6 +106532,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -101632,12 +106548,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3629 Instruction:"VPMADD52HUQ Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0xB5 /r"/"RAVM" + // Pos:3674 Instruction:"VPMADD52HUQ Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0xB5 /r"/"RAVM" { .Instruction = ND_INS_VPMADD52HUQ, .Category = ND_CAT_IFMA, .IsaSet = ND_SET_AVX512IFMA, - .Mnemonic = 1544, + .Mnemonic = 1579, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -101646,6 +106562,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -101661,12 +106578,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3630 Instruction:"VPMADD52HUQ Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:1 0xB5 /r"/"RVM" + // Pos:3675 Instruction:"VPMADD52HUQ Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:1 0xB5 /r"/"RVM" { .Instruction = ND_INS_VPMADD52HUQ, .Category = ND_CAT_AVXIFMA, .IsaSet = ND_SET_AVXIFMA, - .Mnemonic = 1544, + .Mnemonic = 1579, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -101675,6 +106592,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -101689,12 +106607,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3631 Instruction:"VPMADD52LUQ Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0xB4 /r"/"RAVM" + // Pos:3676 Instruction:"VPMADD52LUQ Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0xB4 /r"/"RAVM" { .Instruction = ND_INS_VPMADD52LUQ, .Category = ND_CAT_IFMA, .IsaSet = ND_SET_AVX512IFMA, - .Mnemonic = 1545, + .Mnemonic = 1580, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -101703,6 +106621,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -101718,12 +106637,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3632 Instruction:"VPMADD52LUQ Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:1 0xB4 /r"/"RVM" + // Pos:3677 Instruction:"VPMADD52LUQ Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:1 0xB4 /r"/"RVM" { .Instruction = ND_INS_VPMADD52LUQ, .Category = ND_CAT_AVXIFMA, .IsaSet = ND_SET_AVXIFMA, - .Mnemonic = 1545, + .Mnemonic = 1580, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -101732,6 +106651,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -101746,12 +106666,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3633 Instruction:"VPMADDUBSW Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:2 p:1 l:x w:i 0x04 /r"/"RAVM" + // Pos:3678 Instruction:"VPMADDUBSW Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:2 p:1 l:x w:i 0x04 /r"/"RAVM" { .Instruction = ND_INS_VPMADDUBSW, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1546, + .Mnemonic = 1581, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -101760,6 +106680,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NFnb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -101775,12 +106696,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3634 Instruction:"VPMADDUBSW Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x04 /r"/"RVM" + // Pos:3679 Instruction:"VPMADDUBSW Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x04 /r"/"RVM" { .Instruction = ND_INS_VPMADDUBSW, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1546, + .Mnemonic = 1581, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -101789,6 +106710,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -101803,12 +106725,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3635 Instruction:"VPMADDWD Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0xF5 /r"/"RAVM" + // Pos:3680 Instruction:"VPMADDWD Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0xF5 /r"/"RAVM" { .Instruction = ND_INS_VPMADDWD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1547, + .Mnemonic = 1582, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -101817,6 +106739,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -101832,12 +106755,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3636 Instruction:"VPMADDWD Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xF5 /r"/"RVM" + // Pos:3681 Instruction:"VPMADDWD Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xF5 /r"/"RVM" { .Instruction = ND_INS_VPMADDWD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1547, + .Mnemonic = 1582, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -101846,6 +106769,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -101860,12 +106784,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3637 Instruction:"VPMASKMOVD Vx,Hx,Mx" Encoding:"vex m:2 p:1 l:x w:0 0x8C /r:mem"/"RVM" + // Pos:3682 Instruction:"VPMASKMOVD Vx,Hx,Mx" Encoding:"vex m:2 p:1 l:x w:0 0x8C /r:mem"/"RVM" { .Instruction = ND_INS_VPMASKMOVD, .Category = ND_CAT_AVX2, .IsaSet = ND_SET_AVX2, - .Mnemonic = 1548, + .Mnemonic = 1583, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -101874,6 +106798,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -101888,12 +106813,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3638 Instruction:"VPMASKMOVD Mx,Hx,Vx" Encoding:"vex m:2 p:1 l:x w:0 0x8E /r:mem"/"MVR" + // Pos:3683 Instruction:"VPMASKMOVD Mx,Hx,Vx" Encoding:"vex m:2 p:1 l:x w:0 0x8E /r:mem"/"MVR" { .Instruction = ND_INS_VPMASKMOVD, .Category = ND_CAT_AVX2, .IsaSet = ND_SET_AVX2, - .Mnemonic = 1548, + .Mnemonic = 1583, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -101902,6 +106827,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -101916,12 +106842,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3639 Instruction:"VPMASKMOVQ Vx,Hx,Mx" Encoding:"vex m:2 p:1 l:x w:1 0x8C /r:mem"/"RVM" + // Pos:3684 Instruction:"VPMASKMOVQ Vx,Hx,Mx" Encoding:"vex m:2 p:1 l:x w:1 0x8C /r:mem"/"RVM" { .Instruction = ND_INS_VPMASKMOVQ, .Category = ND_CAT_AVX2, .IsaSet = ND_SET_AVX2, - .Mnemonic = 1549, + .Mnemonic = 1584, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -101930,6 +106856,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -101944,12 +106871,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3640 Instruction:"VPMASKMOVQ Mx,Hx,Vx" Encoding:"vex m:2 p:1 l:x w:1 0x8E /r:mem"/"MVR" + // Pos:3685 Instruction:"VPMASKMOVQ Mx,Hx,Vx" Encoding:"vex m:2 p:1 l:x w:1 0x8E /r:mem"/"MVR" { .Instruction = ND_INS_VPMASKMOVQ, .Category = ND_CAT_AVX2, .IsaSet = ND_SET_AVX2, - .Mnemonic = 1549, + .Mnemonic = 1584, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -101958,6 +106885,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -101972,12 +106900,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3641 Instruction:"VPMAXSB Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:2 p:1 l:x w:i 0x3C /r"/"RAVM" + // Pos:3686 Instruction:"VPMAXSB Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:2 p:1 l:x w:i 0x3C /r"/"RAVM" { .Instruction = ND_INS_VPMAXSB, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1550, + .Mnemonic = 1585, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -101986,6 +106914,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -102001,12 +106930,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3642 Instruction:"VPMAXSB Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x3C /r"/"RVM" + // Pos:3687 Instruction:"VPMAXSB Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x3C /r"/"RVM" { .Instruction = ND_INS_VPMAXSB, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1550, + .Mnemonic = 1585, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -102015,6 +106944,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -102029,12 +106959,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3643 Instruction:"VPMAXSD Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x3D /r"/"RAVM" + // Pos:3688 Instruction:"VPMAXSD Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x3D /r"/"RAVM" { .Instruction = ND_INS_VPMAXSD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1551, + .Mnemonic = 1586, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -102043,6 +106973,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -102058,12 +106989,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3644 Instruction:"VPMAXSD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x3D /r"/"RVM" + // Pos:3689 Instruction:"VPMAXSD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x3D /r"/"RVM" { .Instruction = ND_INS_VPMAXSD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1551, + .Mnemonic = 1586, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -102072,6 +107003,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -102086,12 +107018,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3645 Instruction:"VPMAXSQ Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x3D /r"/"RAVM" + // Pos:3690 Instruction:"VPMAXSQ Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x3D /r"/"RAVM" { .Instruction = ND_INS_VPMAXSQ, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1552, + .Mnemonic = 1587, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -102100,6 +107032,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -102115,12 +107048,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3646 Instruction:"VPMAXSW Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0xEE /r"/"RAVM" + // Pos:3691 Instruction:"VPMAXSW Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0xEE /r"/"RAVM" { .Instruction = ND_INS_VPMAXSW, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1553, + .Mnemonic = 1588, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -102129,6 +107062,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -102144,12 +107078,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3647 Instruction:"VPMAXSW Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xEE /r"/"RVM" + // Pos:3692 Instruction:"VPMAXSW Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xEE /r"/"RVM" { .Instruction = ND_INS_VPMAXSW, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1553, + .Mnemonic = 1588, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -102158,6 +107092,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -102172,12 +107107,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3648 Instruction:"VPMAXUB Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0xDE /r"/"RAVM" + // Pos:3693 Instruction:"VPMAXUB Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0xDE /r"/"RAVM" { .Instruction = ND_INS_VPMAXUB, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1554, + .Mnemonic = 1589, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -102186,6 +107121,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -102201,12 +107137,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3649 Instruction:"VPMAXUB Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xDE /r"/"RVM" + // Pos:3694 Instruction:"VPMAXUB Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xDE /r"/"RVM" { .Instruction = ND_INS_VPMAXUB, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1554, + .Mnemonic = 1589, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -102215,6 +107151,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -102229,12 +107166,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3650 Instruction:"VPMAXUD Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x3F /r"/"RAVM" + // Pos:3695 Instruction:"VPMAXUD Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x3F /r"/"RAVM" { .Instruction = ND_INS_VPMAXUD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1555, + .Mnemonic = 1590, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -102243,6 +107180,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -102258,12 +107196,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3651 Instruction:"VPMAXUD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x3F /r"/"RVM" + // Pos:3696 Instruction:"VPMAXUD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x3F /r"/"RVM" { .Instruction = ND_INS_VPMAXUD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1555, + .Mnemonic = 1590, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -102272,6 +107210,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -102286,12 +107225,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3652 Instruction:"VPMAXUQ Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x3F /r"/"RAVM" + // Pos:3697 Instruction:"VPMAXUQ Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x3F /r"/"RAVM" { .Instruction = ND_INS_VPMAXUQ, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1556, + .Mnemonic = 1591, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -102300,6 +107239,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -102315,12 +107255,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3653 Instruction:"VPMAXUW Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:2 p:1 l:x w:i 0x3E /r"/"RAVM" + // Pos:3698 Instruction:"VPMAXUW Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:2 p:1 l:x w:i 0x3E /r"/"RAVM" { .Instruction = ND_INS_VPMAXUW, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1557, + .Mnemonic = 1592, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -102329,6 +107269,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -102344,12 +107285,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3654 Instruction:"VPMAXUW Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x3E /r"/"RVM" + // Pos:3699 Instruction:"VPMAXUW Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x3E /r"/"RVM" { .Instruction = ND_INS_VPMAXUW, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1557, + .Mnemonic = 1592, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -102358,6 +107299,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -102372,12 +107314,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3655 Instruction:"VPMINSB Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:2 p:1 l:x w:i 0x38 /r"/"RAVM" + // Pos:3700 Instruction:"VPMINSB Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:2 p:1 l:x w:i 0x38 /r"/"RAVM" { .Instruction = ND_INS_VPMINSB, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1558, + .Mnemonic = 1593, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -102386,6 +107328,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -102401,12 +107344,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3656 Instruction:"VPMINSB Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x38 /r"/"RVM" + // Pos:3701 Instruction:"VPMINSB Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x38 /r"/"RVM" { .Instruction = ND_INS_VPMINSB, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1558, + .Mnemonic = 1593, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -102415,6 +107358,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -102429,12 +107373,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3657 Instruction:"VPMINSD Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x39 /r"/"RAVM" + // Pos:3702 Instruction:"VPMINSD Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x39 /r"/"RAVM" { .Instruction = ND_INS_VPMINSD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1559, + .Mnemonic = 1594, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -102443,6 +107387,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -102458,12 +107403,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3658 Instruction:"VPMINSD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x39 /r"/"RVM" + // Pos:3703 Instruction:"VPMINSD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x39 /r"/"RVM" { .Instruction = ND_INS_VPMINSD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1559, + .Mnemonic = 1594, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -102472,6 +107417,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -102486,12 +107432,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3659 Instruction:"VPMINSQ Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x39 /r"/"RAVM" + // Pos:3704 Instruction:"VPMINSQ Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x39 /r"/"RAVM" { .Instruction = ND_INS_VPMINSQ, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1560, + .Mnemonic = 1595, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -102500,6 +107446,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -102515,12 +107462,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3660 Instruction:"VPMINSW Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0xEA /r"/"RAVM" + // Pos:3705 Instruction:"VPMINSW Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0xEA /r"/"RAVM" { .Instruction = ND_INS_VPMINSW, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1561, + .Mnemonic = 1596, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -102529,6 +107476,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -102544,12 +107492,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3661 Instruction:"VPMINSW Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xEA /r"/"RVM" + // Pos:3706 Instruction:"VPMINSW Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xEA /r"/"RVM" { .Instruction = ND_INS_VPMINSW, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1561, + .Mnemonic = 1596, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -102558,6 +107506,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -102572,12 +107521,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3662 Instruction:"VPMINUB Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0xDA /r"/"RAVM" + // Pos:3707 Instruction:"VPMINUB Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0xDA /r"/"RAVM" { .Instruction = ND_INS_VPMINUB, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1562, + .Mnemonic = 1597, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -102586,6 +107535,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -102601,12 +107551,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3663 Instruction:"VPMINUB Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xDA /r"/"RVM" + // Pos:3708 Instruction:"VPMINUB Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xDA /r"/"RVM" { .Instruction = ND_INS_VPMINUB, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1562, + .Mnemonic = 1597, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -102615,6 +107565,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -102629,12 +107580,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3664 Instruction:"VPMINUD Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x3B /r"/"RAVM" + // Pos:3709 Instruction:"VPMINUD Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x3B /r"/"RAVM" { .Instruction = ND_INS_VPMINUD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1563, + .Mnemonic = 1598, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -102643,6 +107594,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -102658,12 +107610,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3665 Instruction:"VPMINUD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x3B /r"/"RVM" + // Pos:3710 Instruction:"VPMINUD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x3B /r"/"RVM" { .Instruction = ND_INS_VPMINUD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1563, + .Mnemonic = 1598, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -102672,6 +107624,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -102686,12 +107639,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3666 Instruction:"VPMINUQ Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x3B /r"/"RAVM" + // Pos:3711 Instruction:"VPMINUQ Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x3B /r"/"RAVM" { .Instruction = ND_INS_VPMINUQ, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1564, + .Mnemonic = 1599, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -102700,6 +107653,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -102715,12 +107669,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3667 Instruction:"VPMINUW Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:2 p:1 l:x w:i 0x3A /r"/"RAVM" + // Pos:3712 Instruction:"VPMINUW Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:2 p:1 l:x w:i 0x3A /r"/"RAVM" { .Instruction = ND_INS_VPMINUW, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1565, + .Mnemonic = 1600, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -102729,6 +107683,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -102744,12 +107699,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3668 Instruction:"VPMINUW Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x3A /r"/"RVM" + // Pos:3713 Instruction:"VPMINUW Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x3A /r"/"RVM" { .Instruction = ND_INS_VPMINUW, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1565, + .Mnemonic = 1600, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -102758,6 +107713,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -102772,12 +107728,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3669 Instruction:"VPMOVB2M rKq,Ufv" Encoding:"evex m:2 p:2 l:x w:0 0x29 /r:reg"/"RM" + // Pos:3714 Instruction:"VPMOVB2M rKq,Ufv" Encoding:"evex m:2 p:2 l:x w:0 0x29 /r:reg"/"RM" { .Instruction = ND_INS_VPMOVB2M, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1566, + .Mnemonic = 1601, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -102786,6 +107742,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E7NM, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -102799,12 +107756,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3670 Instruction:"VPMOVD2M rKq,Ufv" Encoding:"evex m:2 p:2 l:x w:0 0x39 /r:reg"/"RM" + // Pos:3715 Instruction:"VPMOVD2M rKq,Ufv" Encoding:"evex m:2 p:2 l:x w:0 0x39 /r:reg"/"RM" { .Instruction = ND_INS_VPMOVD2M, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512DQ, - .Mnemonic = 1567, + .Mnemonic = 1602, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -102813,6 +107770,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E7NM, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -102826,12 +107784,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3671 Instruction:"VPMOVDB Wqv{K}{z},aKq,Vfv" Encoding:"evex m:2 p:2 l:x w:0 0x31 /r"/"MAR" + // Pos:3716 Instruction:"VPMOVDB Wqv{K}{z},aKq,Vfv" Encoding:"evex m:2 p:2 l:x w:0 0x31 /r"/"MAR" { .Instruction = ND_INS_VPMOVDB, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1568, + .Mnemonic = 1603, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -102840,6 +107798,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -102854,12 +107813,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3672 Instruction:"VPMOVDW Whv{K}{z},aKq,Vfv" Encoding:"evex m:2 p:2 l:x w:0 0x33 /r"/"MAR" + // Pos:3717 Instruction:"VPMOVDW Whv{K}{z},aKq,Vfv" Encoding:"evex m:2 p:2 l:x w:0 0x33 /r"/"MAR" { .Instruction = ND_INS_VPMOVDW, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1569, + .Mnemonic = 1604, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -102868,6 +107827,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -102882,12 +107842,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3673 Instruction:"VPMOVM2B Vfv,mKq" Encoding:"evex m:2 p:2 l:x w:0 0x28 /r:reg"/"RM" + // Pos:3718 Instruction:"VPMOVM2B Vfv,mKq" Encoding:"evex m:2 p:2 l:x w:0 0x28 /r:reg"/"RM" { .Instruction = ND_INS_VPMOVM2B, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1570, + .Mnemonic = 1605, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -102896,6 +107856,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E7NM, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -102909,12 +107870,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3674 Instruction:"VPMOVM2D Vfv,mKq" Encoding:"evex m:2 p:2 l:x w:0 0x38 /r:reg"/"RM" + // Pos:3719 Instruction:"VPMOVM2D Vfv,mKq" Encoding:"evex m:2 p:2 l:x w:0 0x38 /r:reg"/"RM" { .Instruction = ND_INS_VPMOVM2D, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512DQ, - .Mnemonic = 1571, + .Mnemonic = 1606, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -102923,6 +107884,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E7NM, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -102936,12 +107898,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3675 Instruction:"VPMOVM2Q Vfv,mKq" Encoding:"evex m:2 p:2 l:x w:1 0x38 /r:reg"/"RM" + // Pos:3720 Instruction:"VPMOVM2Q Vfv,mKq" Encoding:"evex m:2 p:2 l:x w:1 0x38 /r:reg"/"RM" { .Instruction = ND_INS_VPMOVM2Q, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512DQ, - .Mnemonic = 1572, + .Mnemonic = 1607, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -102950,6 +107912,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E7NM, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -102963,12 +107926,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3676 Instruction:"VPMOVM2W Vfv,mKq" Encoding:"evex m:2 p:2 l:x w:1 0x28 /r:reg"/"RM" + // Pos:3721 Instruction:"VPMOVM2W Vfv,mKq" Encoding:"evex m:2 p:2 l:x w:1 0x28 /r:reg"/"RM" { .Instruction = ND_INS_VPMOVM2W, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1573, + .Mnemonic = 1608, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -102977,6 +107940,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E7NM, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -102990,12 +107954,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3677 Instruction:"VPMOVMSKB Gy,Ux" Encoding:"vex m:1 p:1 l:x w:i 0xD7 /r:reg"/"RM" + // Pos:3722 Instruction:"VPMOVMSKB Gy,Ux" Encoding:"vex m:1 p:1 l:x w:i 0xD7 /r:reg"/"RM" { .Instruction = ND_INS_VPMOVMSKB, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX, - .Mnemonic = 1574, + .Mnemonic = 1609, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -103004,6 +107968,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_7, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -103017,12 +107982,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3678 Instruction:"VPMOVQ2M rKq,Ufv" Encoding:"evex m:2 p:2 l:x w:1 0x39 /r:reg"/"RM" + // Pos:3723 Instruction:"VPMOVQ2M rKq,Ufv" Encoding:"evex m:2 p:2 l:x w:1 0x39 /r:reg"/"RM" { .Instruction = ND_INS_VPMOVQ2M, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512DQ, - .Mnemonic = 1575, + .Mnemonic = 1610, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -103031,6 +107996,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E7NM, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -103044,12 +108010,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3679 Instruction:"VPMOVQB Wev{K}{z},aKq,Vfv" Encoding:"evex m:2 p:2 l:x w:0 0x32 /r"/"MAR" + // Pos:3724 Instruction:"VPMOVQB Wev{K}{z},aKq,Vfv" Encoding:"evex m:2 p:2 l:x w:0 0x32 /r"/"MAR" { .Instruction = ND_INS_VPMOVQB, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1576, + .Mnemonic = 1611, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -103058,6 +108024,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -103072,12 +108039,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3680 Instruction:"VPMOVQD Whv{K}{z},aKq,Vfv" Encoding:"evex m:2 p:2 l:x w:0 0x35 /r"/"MAR" + // Pos:3725 Instruction:"VPMOVQD Whv{K}{z},aKq,Vfv" Encoding:"evex m:2 p:2 l:x w:0 0x35 /r"/"MAR" { .Instruction = ND_INS_VPMOVQD, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1577, + .Mnemonic = 1612, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -103086,6 +108053,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -103100,12 +108068,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3681 Instruction:"VPMOVQW Wqv{K}{z},aKq,Vfv" Encoding:"evex m:2 p:2 l:x w:0 0x34 /r"/"MAR" + // Pos:3726 Instruction:"VPMOVQW Wqv{K}{z},aKq,Vfv" Encoding:"evex m:2 p:2 l:x w:0 0x34 /r"/"MAR" { .Instruction = ND_INS_VPMOVQW, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1578, + .Mnemonic = 1613, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -103114,6 +108082,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -103128,12 +108097,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3682 Instruction:"VPMOVSDB Wqv{K}{z},aKq,Vfv" Encoding:"evex m:2 p:2 l:x w:0 0x21 /r"/"MAR" + // Pos:3727 Instruction:"VPMOVSDB Wqv{K}{z},aKq,Vfv" Encoding:"evex m:2 p:2 l:x w:0 0x21 /r"/"MAR" { .Instruction = ND_INS_VPMOVSDB, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1579, + .Mnemonic = 1614, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -103142,6 +108111,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -103156,12 +108126,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3683 Instruction:"VPMOVSDW Whv{K}{z},aKq,Vfv" Encoding:"evex m:2 p:2 l:x w:0 0x23 /r"/"MAR" + // Pos:3728 Instruction:"VPMOVSDW Whv{K}{z},aKq,Vfv" Encoding:"evex m:2 p:2 l:x w:0 0x23 /r"/"MAR" { .Instruction = ND_INS_VPMOVSDW, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1580, + .Mnemonic = 1615, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -103170,6 +108140,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -103184,12 +108155,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3684 Instruction:"VPMOVSQB Wev{K}{z},aKq,Vfv" Encoding:"evex m:2 p:2 l:x w:0 0x22 /r"/"MAR" + // Pos:3729 Instruction:"VPMOVSQB Wev{K}{z},aKq,Vfv" Encoding:"evex m:2 p:2 l:x w:0 0x22 /r"/"MAR" { .Instruction = ND_INS_VPMOVSQB, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1581, + .Mnemonic = 1616, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -103198,6 +108169,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -103212,12 +108184,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3685 Instruction:"VPMOVSQD Whv{K}{z},aKq,Vfv" Encoding:"evex m:2 p:2 l:x w:0 0x25 /r"/"MAR" + // Pos:3730 Instruction:"VPMOVSQD Whv{K}{z},aKq,Vfv" Encoding:"evex m:2 p:2 l:x w:0 0x25 /r"/"MAR" { .Instruction = ND_INS_VPMOVSQD, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1582, + .Mnemonic = 1617, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -103226,6 +108198,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -103240,12 +108213,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3686 Instruction:"VPMOVSQW Wqv{K}{z},aKq,Vfv" Encoding:"evex m:2 p:2 l:x w:0 0x24 /r"/"MAR" + // Pos:3731 Instruction:"VPMOVSQW Wqv{K}{z},aKq,Vfv" Encoding:"evex m:2 p:2 l:x w:0 0x24 /r"/"MAR" { .Instruction = ND_INS_VPMOVSQW, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1583, + .Mnemonic = 1618, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -103254,6 +108227,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -103268,12 +108242,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3687 Instruction:"VPMOVSWB Whv{K}{z},aKq,Vfv" Encoding:"evex m:2 p:2 l:x w:0 0x20 /r"/"MAR" + // Pos:3732 Instruction:"VPMOVSWB Whv{K}{z},aKq,Vfv" Encoding:"evex m:2 p:2 l:x w:0 0x20 /r"/"MAR" { .Instruction = ND_INS_VPMOVSWB, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1584, + .Mnemonic = 1619, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -103282,6 +108256,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -103296,12 +108271,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3688 Instruction:"VPMOVSXBD Vfv{K}{z},aKq,Wqv" Encoding:"evex m:2 p:1 l:x w:i 0x21 /r"/"RAM" + // Pos:3733 Instruction:"VPMOVSXBD Vfv{K}{z},aKq,Wqv" Encoding:"evex m:2 p:1 l:x w:i 0x21 /r"/"RAM" { .Instruction = ND_INS_VPMOVSXBD, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1585, + .Mnemonic = 1620, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -103310,6 +108285,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -103324,12 +108300,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3689 Instruction:"VPMOVSXBD Vdq,Wd" Encoding:"vex m:2 p:1 l:0 w:i 0x21 /r"/"RM" + // Pos:3734 Instruction:"VPMOVSXBD Vdq,Wd" Encoding:"vex m:2 p:1 l:0 w:i 0x21 /r"/"RM" { .Instruction = ND_INS_VPMOVSXBD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1585, + .Mnemonic = 1620, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -103338,6 +108314,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -103351,12 +108328,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3690 Instruction:"VPMOVSXBD Vqq,Wq" Encoding:"vex m:2 p:1 l:1 w:i 0x21 /r"/"RM" + // Pos:3735 Instruction:"VPMOVSXBD Vqq,Wq" Encoding:"vex m:2 p:1 l:1 w:i 0x21 /r"/"RM" { .Instruction = ND_INS_VPMOVSXBD, .Category = ND_CAT_AVX2, .IsaSet = ND_SET_AVX2, - .Mnemonic = 1585, + .Mnemonic = 1620, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -103365,6 +108342,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -103378,12 +108356,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3691 Instruction:"VPMOVSXBQ Vfv{K}{z},aKq,Wev" Encoding:"evex m:2 p:1 l:x w:i 0x22 /r"/"RAM" + // Pos:3736 Instruction:"VPMOVSXBQ Vfv{K}{z},aKq,Wev" Encoding:"evex m:2 p:1 l:x w:i 0x22 /r"/"RAM" { .Instruction = ND_INS_VPMOVSXBQ, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1586, + .Mnemonic = 1621, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -103392,6 +108370,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -103406,12 +108385,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3692 Instruction:"VPMOVSXBQ Vdq,Ww" Encoding:"vex m:2 p:1 l:0 w:i 0x22 /r"/"RM" + // Pos:3737 Instruction:"VPMOVSXBQ Vdq,Ww" Encoding:"vex m:2 p:1 l:0 w:i 0x22 /r"/"RM" { .Instruction = ND_INS_VPMOVSXBQ, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1586, + .Mnemonic = 1621, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -103420,6 +108399,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -103433,12 +108413,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3693 Instruction:"VPMOVSXBQ Vqq,Wd" Encoding:"vex m:2 p:1 l:1 w:i 0x22 /r"/"RM" + // Pos:3738 Instruction:"VPMOVSXBQ Vqq,Wd" Encoding:"vex m:2 p:1 l:1 w:i 0x22 /r"/"RM" { .Instruction = ND_INS_VPMOVSXBQ, .Category = ND_CAT_AVX2, .IsaSet = ND_SET_AVX2, - .Mnemonic = 1586, + .Mnemonic = 1621, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -103447,6 +108427,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -103460,12 +108441,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3694 Instruction:"VPMOVSXBW Vfv{K}{z},aKq,Whv" Encoding:"evex m:2 p:1 l:x w:i 0x20 /r"/"RAM" + // Pos:3739 Instruction:"VPMOVSXBW Vfv{K}{z},aKq,Whv" Encoding:"evex m:2 p:1 l:x w:i 0x20 /r"/"RAM" { .Instruction = ND_INS_VPMOVSXBW, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1587, + .Mnemonic = 1622, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -103474,6 +108455,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -103488,12 +108470,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3695 Instruction:"VPMOVSXBW Vdq,Wq" Encoding:"vex m:2 p:1 l:0 w:i 0x20 /r"/"RM" + // Pos:3740 Instruction:"VPMOVSXBW Vdq,Wq" Encoding:"vex m:2 p:1 l:0 w:i 0x20 /r"/"RM" { .Instruction = ND_INS_VPMOVSXBW, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1587, + .Mnemonic = 1622, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -103502,6 +108484,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -103515,12 +108498,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3696 Instruction:"VPMOVSXBW Vqq,Wdq" Encoding:"vex m:2 p:1 l:1 w:i 0x20 /r"/"RM" + // Pos:3741 Instruction:"VPMOVSXBW Vqq,Wdq" Encoding:"vex m:2 p:1 l:1 w:i 0x20 /r"/"RM" { .Instruction = ND_INS_VPMOVSXBW, .Category = ND_CAT_AVX2, .IsaSet = ND_SET_AVX2, - .Mnemonic = 1587, + .Mnemonic = 1622, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -103529,6 +108512,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -103542,12 +108526,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3697 Instruction:"VPMOVSXDQ Vfv{K}{z},aKq,Whv" Encoding:"evex m:2 p:1 l:x w:0 0x25 /r"/"RAM" + // Pos:3742 Instruction:"VPMOVSXDQ Vfv{K}{z},aKq,Whv" Encoding:"evex m:2 p:1 l:x w:0 0x25 /r"/"RAM" { .Instruction = ND_INS_VPMOVSXDQ, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1588, + .Mnemonic = 1623, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -103556,6 +108540,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -103570,12 +108555,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3698 Instruction:"VPMOVSXDQ Vdq,Wq" Encoding:"vex m:2 p:1 l:0 w:i 0x25 /r"/"RM" + // Pos:3743 Instruction:"VPMOVSXDQ Vdq,Wq" Encoding:"vex m:2 p:1 l:0 w:i 0x25 /r"/"RM" { .Instruction = ND_INS_VPMOVSXDQ, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1588, + .Mnemonic = 1623, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -103584,6 +108569,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -103597,12 +108583,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3699 Instruction:"VPMOVSXDQ Vqq,Wdq" Encoding:"vex m:2 p:1 l:1 w:i 0x25 /r"/"RM" + // Pos:3744 Instruction:"VPMOVSXDQ Vqq,Wdq" Encoding:"vex m:2 p:1 l:1 w:i 0x25 /r"/"RM" { .Instruction = ND_INS_VPMOVSXDQ, .Category = ND_CAT_AVX2, .IsaSet = ND_SET_AVX2, - .Mnemonic = 1588, + .Mnemonic = 1623, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -103611,6 +108597,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -103624,12 +108611,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3700 Instruction:"VPMOVSXWD Vfv{K}{z},aKq,Whv" Encoding:"evex m:2 p:1 l:x w:i 0x23 /r"/"RAM" + // Pos:3745 Instruction:"VPMOVSXWD Vfv{K}{z},aKq,Whv" Encoding:"evex m:2 p:1 l:x w:i 0x23 /r"/"RAM" { .Instruction = ND_INS_VPMOVSXWD, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1589, + .Mnemonic = 1624, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -103638,6 +108625,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -103652,12 +108640,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3701 Instruction:"VPMOVSXWD Vdq,Wq" Encoding:"vex m:2 p:1 l:0 w:i 0x23 /r"/"RM" + // Pos:3746 Instruction:"VPMOVSXWD Vdq,Wq" Encoding:"vex m:2 p:1 l:0 w:i 0x23 /r"/"RM" { .Instruction = ND_INS_VPMOVSXWD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1589, + .Mnemonic = 1624, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -103666,6 +108654,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -103679,12 +108668,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3702 Instruction:"VPMOVSXWD Vqq,Wdq" Encoding:"vex m:2 p:1 l:1 w:i 0x23 /r"/"RM" + // Pos:3747 Instruction:"VPMOVSXWD Vqq,Wdq" Encoding:"vex m:2 p:1 l:1 w:i 0x23 /r"/"RM" { .Instruction = ND_INS_VPMOVSXWD, .Category = ND_CAT_AVX2, .IsaSet = ND_SET_AVX2, - .Mnemonic = 1589, + .Mnemonic = 1624, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -103693,6 +108682,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -103706,12 +108696,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3703 Instruction:"VPMOVSXWQ Vfv{K}{z},aKq,Wqv" Encoding:"evex m:2 p:1 l:x w:i 0x24 /r"/"RAM" + // Pos:3748 Instruction:"VPMOVSXWQ Vfv{K}{z},aKq,Wqv" Encoding:"evex m:2 p:1 l:x w:i 0x24 /r"/"RAM" { .Instruction = ND_INS_VPMOVSXWQ, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1590, + .Mnemonic = 1625, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -103720,6 +108710,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -103734,12 +108725,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3704 Instruction:"VPMOVSXWQ Vdq,Wd" Encoding:"vex m:2 p:1 l:0 w:i 0x24 /r"/"RM" + // Pos:3749 Instruction:"VPMOVSXWQ Vdq,Wd" Encoding:"vex m:2 p:1 l:0 w:i 0x24 /r"/"RM" { .Instruction = ND_INS_VPMOVSXWQ, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1590, + .Mnemonic = 1625, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -103748,6 +108739,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -103761,12 +108753,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3705 Instruction:"VPMOVSXWQ Vqq,Wq" Encoding:"vex m:2 p:1 l:1 w:i 0x24 /r"/"RM" + // Pos:3750 Instruction:"VPMOVSXWQ Vqq,Wq" Encoding:"vex m:2 p:1 l:1 w:i 0x24 /r"/"RM" { .Instruction = ND_INS_VPMOVSXWQ, .Category = ND_CAT_AVX2, .IsaSet = ND_SET_AVX2, - .Mnemonic = 1590, + .Mnemonic = 1625, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -103775,6 +108767,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -103788,12 +108781,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3706 Instruction:"VPMOVUSDB Wqv{K}{z},aKq,Vfv" Encoding:"evex m:2 p:2 l:x w:0 0x11 /r"/"MAR" + // Pos:3751 Instruction:"VPMOVUSDB Wqv{K}{z},aKq,Vfv" Encoding:"evex m:2 p:2 l:x w:0 0x11 /r"/"MAR" { .Instruction = ND_INS_VPMOVUSDB, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1591, + .Mnemonic = 1626, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -103802,6 +108795,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -103816,12 +108810,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3707 Instruction:"VPMOVUSDW Whv{K}{z},aKq,Vfv" Encoding:"evex m:2 p:2 l:x w:0 0x13 /r"/"MAR" + // Pos:3752 Instruction:"VPMOVUSDW Whv{K}{z},aKq,Vfv" Encoding:"evex m:2 p:2 l:x w:0 0x13 /r"/"MAR" { .Instruction = ND_INS_VPMOVUSDW, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1592, + .Mnemonic = 1627, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -103830,6 +108824,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -103844,12 +108839,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3708 Instruction:"VPMOVUSQB Wev{K}{z},aKq,Vfv" Encoding:"evex m:2 p:2 l:x w:0 0x12 /r"/"MAR" + // Pos:3753 Instruction:"VPMOVUSQB Wev{K}{z},aKq,Vfv" Encoding:"evex m:2 p:2 l:x w:0 0x12 /r"/"MAR" { .Instruction = ND_INS_VPMOVUSQB, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1593, + .Mnemonic = 1628, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -103858,6 +108853,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -103872,12 +108868,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3709 Instruction:"VPMOVUSQD Whv{K}{z},aKq,Vfv" Encoding:"evex m:2 p:2 l:x w:0 0x15 /r"/"MAR" + // Pos:3754 Instruction:"VPMOVUSQD Whv{K}{z},aKq,Vfv" Encoding:"evex m:2 p:2 l:x w:0 0x15 /r"/"MAR" { .Instruction = ND_INS_VPMOVUSQD, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1594, + .Mnemonic = 1629, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -103886,6 +108882,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -103900,12 +108897,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3710 Instruction:"VPMOVUSQW Wqv{K}{z},aKq,Vfv" Encoding:"evex m:2 p:2 l:x w:0 0x14 /r"/"MAR" + // Pos:3755 Instruction:"VPMOVUSQW Wqv{K}{z},aKq,Vfv" Encoding:"evex m:2 p:2 l:x w:0 0x14 /r"/"MAR" { .Instruction = ND_INS_VPMOVUSQW, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1595, + .Mnemonic = 1630, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -103914,6 +108911,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -103928,12 +108926,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3711 Instruction:"VPMOVUSWB Whv{K}{z},aKq,Vfv" Encoding:"evex m:2 p:2 l:x w:0 0x10 /r"/"MAR" + // Pos:3756 Instruction:"VPMOVUSWB Whv{K}{z},aKq,Vfv" Encoding:"evex m:2 p:2 l:x w:0 0x10 /r"/"MAR" { .Instruction = ND_INS_VPMOVUSWB, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1596, + .Mnemonic = 1631, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -103942,6 +108940,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -103956,12 +108955,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3712 Instruction:"VPMOVW2M rKq,Ufv" Encoding:"evex m:2 p:2 l:x w:1 0x29 /r:reg"/"RM" + // Pos:3757 Instruction:"VPMOVW2M rKq,Ufv" Encoding:"evex m:2 p:2 l:x w:1 0x29 /r:reg"/"RM" { .Instruction = ND_INS_VPMOVW2M, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1597, + .Mnemonic = 1632, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -103970,6 +108969,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E7NM, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -103983,12 +108983,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3713 Instruction:"VPMOVWB Whv{K}{z},aKq,Vfv" Encoding:"evex m:2 p:2 l:x w:0 0x30 /r"/"MAR" + // Pos:3758 Instruction:"VPMOVWB Whv{K}{z},aKq,Vfv" Encoding:"evex m:2 p:2 l:x w:0 0x30 /r"/"MAR" { .Instruction = ND_INS_VPMOVWB, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1598, + .Mnemonic = 1633, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -103997,6 +108997,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -104011,12 +109012,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3714 Instruction:"VPMOVZXBD Vfv{K}{z},aKq,Wqv" Encoding:"evex m:2 p:1 l:x w:i 0x31 /r"/"RAM" + // Pos:3759 Instruction:"VPMOVZXBD Vfv{K}{z},aKq,Wqv" Encoding:"evex m:2 p:1 l:x w:i 0x31 /r"/"RAM" { .Instruction = ND_INS_VPMOVZXBD, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1599, + .Mnemonic = 1634, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -104025,6 +109026,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -104039,12 +109041,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3715 Instruction:"VPMOVZXBD Vdq,Wd" Encoding:"vex m:2 p:1 l:0 w:i 0x31 /r"/"RM" + // Pos:3760 Instruction:"VPMOVZXBD Vdq,Wd" Encoding:"vex m:2 p:1 l:0 w:i 0x31 /r"/"RM" { .Instruction = ND_INS_VPMOVZXBD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1599, + .Mnemonic = 1634, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -104053,6 +109055,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -104066,12 +109069,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3716 Instruction:"VPMOVZXBD Vqq,Wq" Encoding:"vex m:2 p:1 l:1 w:i 0x31 /r"/"RM" + // Pos:3761 Instruction:"VPMOVZXBD Vqq,Wq" Encoding:"vex m:2 p:1 l:1 w:i 0x31 /r"/"RM" { .Instruction = ND_INS_VPMOVZXBD, .Category = ND_CAT_AVX2, .IsaSet = ND_SET_AVX2, - .Mnemonic = 1599, + .Mnemonic = 1634, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -104080,6 +109083,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -104093,12 +109097,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3717 Instruction:"VPMOVZXBQ Vfv{K}{z},aKq,Wev" Encoding:"evex m:2 p:1 l:x w:i 0x32 /r"/"RAM" + // Pos:3762 Instruction:"VPMOVZXBQ Vfv{K}{z},aKq,Wev" Encoding:"evex m:2 p:1 l:x w:i 0x32 /r"/"RAM" { .Instruction = ND_INS_VPMOVZXBQ, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1600, + .Mnemonic = 1635, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -104107,6 +109111,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -104121,12 +109126,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3718 Instruction:"VPMOVZXBQ Vdq,Ww" Encoding:"vex m:2 p:1 l:0 w:i 0x32 /r"/"RM" + // Pos:3763 Instruction:"VPMOVZXBQ Vdq,Ww" Encoding:"vex m:2 p:1 l:0 w:i 0x32 /r"/"RM" { .Instruction = ND_INS_VPMOVZXBQ, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1600, + .Mnemonic = 1635, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -104135,6 +109140,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -104148,12 +109154,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3719 Instruction:"VPMOVZXBQ Vqq,Wd" Encoding:"vex m:2 p:1 l:1 w:i 0x32 /r"/"RM" + // Pos:3764 Instruction:"VPMOVZXBQ Vqq,Wd" Encoding:"vex m:2 p:1 l:1 w:i 0x32 /r"/"RM" { .Instruction = ND_INS_VPMOVZXBQ, .Category = ND_CAT_AVX2, .IsaSet = ND_SET_AVX2, - .Mnemonic = 1600, + .Mnemonic = 1635, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -104162,6 +109168,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -104175,12 +109182,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3720 Instruction:"VPMOVZXBW Vfv{K}{z},aKq,Whv" Encoding:"evex m:2 p:1 l:x w:i 0x30 /r"/"RAM" + // Pos:3765 Instruction:"VPMOVZXBW Vfv{K}{z},aKq,Whv" Encoding:"evex m:2 p:1 l:x w:i 0x30 /r"/"RAM" { .Instruction = ND_INS_VPMOVZXBW, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1601, + .Mnemonic = 1636, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -104189,6 +109196,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -104203,12 +109211,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3721 Instruction:"VPMOVZXBW Vdq,Wq" Encoding:"vex m:2 p:1 l:0 w:i 0x30 /r"/"RM" + // Pos:3766 Instruction:"VPMOVZXBW Vdq,Wq" Encoding:"vex m:2 p:1 l:0 w:i 0x30 /r"/"RM" { .Instruction = ND_INS_VPMOVZXBW, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1601, + .Mnemonic = 1636, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -104217,6 +109225,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -104230,12 +109239,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3722 Instruction:"VPMOVZXBW Vqq,Wdq" Encoding:"vex m:2 p:1 l:1 w:i 0x30 /r"/"RM" + // Pos:3767 Instruction:"VPMOVZXBW Vqq,Wdq" Encoding:"vex m:2 p:1 l:1 w:i 0x30 /r"/"RM" { .Instruction = ND_INS_VPMOVZXBW, .Category = ND_CAT_AVX2, .IsaSet = ND_SET_AVX2, - .Mnemonic = 1601, + .Mnemonic = 1636, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -104244,6 +109253,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -104257,12 +109267,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3723 Instruction:"VPMOVZXDQ Vfv{K}{z},aKq,Whv" Encoding:"evex m:2 p:1 l:x w:0 0x35 /r"/"RAM" + // Pos:3768 Instruction:"VPMOVZXDQ Vfv{K}{z},aKq,Whv" Encoding:"evex m:2 p:1 l:x w:0 0x35 /r"/"RAM" { .Instruction = ND_INS_VPMOVZXDQ, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1602, + .Mnemonic = 1637, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -104271,6 +109281,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -104285,12 +109296,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3724 Instruction:"VPMOVZXDQ Vdq,Wq" Encoding:"vex m:2 p:1 l:0 w:i 0x35 /r"/"RM" + // Pos:3769 Instruction:"VPMOVZXDQ Vdq,Wq" Encoding:"vex m:2 p:1 l:0 w:i 0x35 /r"/"RM" { .Instruction = ND_INS_VPMOVZXDQ, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1602, + .Mnemonic = 1637, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -104299,6 +109310,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -104312,12 +109324,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3725 Instruction:"VPMOVZXDQ Vqq,Wdq" Encoding:"vex m:2 p:1 l:1 w:i 0x35 /r"/"RM" + // Pos:3770 Instruction:"VPMOVZXDQ Vqq,Wdq" Encoding:"vex m:2 p:1 l:1 w:i 0x35 /r"/"RM" { .Instruction = ND_INS_VPMOVZXDQ, .Category = ND_CAT_AVX2, .IsaSet = ND_SET_AVX2, - .Mnemonic = 1602, + .Mnemonic = 1637, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -104326,6 +109338,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -104339,12 +109352,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3726 Instruction:"VPMOVZXWD Vfv{K}{z},aKq,Whv" Encoding:"evex m:2 p:1 l:x w:i 0x33 /r"/"RAM" + // Pos:3771 Instruction:"VPMOVZXWD Vfv{K}{z},aKq,Whv" Encoding:"evex m:2 p:1 l:x w:i 0x33 /r"/"RAM" { .Instruction = ND_INS_VPMOVZXWD, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1603, + .Mnemonic = 1638, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -104353,6 +109366,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -104367,12 +109381,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3727 Instruction:"VPMOVZXWD Vdq,Wq" Encoding:"vex m:2 p:1 l:0 w:i 0x33 /r"/"RM" + // Pos:3772 Instruction:"VPMOVZXWD Vdq,Wq" Encoding:"vex m:2 p:1 l:0 w:i 0x33 /r"/"RM" { .Instruction = ND_INS_VPMOVZXWD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1603, + .Mnemonic = 1638, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -104381,6 +109395,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -104394,12 +109409,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3728 Instruction:"VPMOVZXWD Vqq,Wdq" Encoding:"vex m:2 p:1 l:1 w:i 0x33 /r"/"RM" + // Pos:3773 Instruction:"VPMOVZXWD Vqq,Wdq" Encoding:"vex m:2 p:1 l:1 w:i 0x33 /r"/"RM" { .Instruction = ND_INS_VPMOVZXWD, .Category = ND_CAT_AVX2, .IsaSet = ND_SET_AVX2, - .Mnemonic = 1603, + .Mnemonic = 1638, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -104408,6 +109423,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -104421,12 +109437,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3729 Instruction:"VPMOVZXWQ Vfv{K}{z},aKq,Wqv" Encoding:"evex m:2 p:1 l:x w:i 0x34 /r"/"RAM" + // Pos:3774 Instruction:"VPMOVZXWQ Vfv{K}{z},aKq,Wqv" Encoding:"evex m:2 p:1 l:x w:i 0x34 /r"/"RAM" { .Instruction = ND_INS_VPMOVZXWQ, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1604, + .Mnemonic = 1639, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -104435,6 +109451,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -104449,12 +109466,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3730 Instruction:"VPMOVZXWQ Vdq,Wd" Encoding:"vex m:2 p:1 l:0 w:i 0x34 /r"/"RM" + // Pos:3775 Instruction:"VPMOVZXWQ Vdq,Wd" Encoding:"vex m:2 p:1 l:0 w:i 0x34 /r"/"RM" { .Instruction = ND_INS_VPMOVZXWQ, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1604, + .Mnemonic = 1639, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -104463,6 +109480,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -104476,12 +109494,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3731 Instruction:"VPMOVZXWQ Vqq,Wq" Encoding:"vex m:2 p:1 l:1 w:i 0x34 /r"/"RM" + // Pos:3776 Instruction:"VPMOVZXWQ Vqq,Wq" Encoding:"vex m:2 p:1 l:1 w:i 0x34 /r"/"RM" { .Instruction = ND_INS_VPMOVZXWQ, .Category = ND_CAT_AVX2, .IsaSet = ND_SET_AVX2, - .Mnemonic = 1604, + .Mnemonic = 1639, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -104490,6 +109508,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -104503,12 +109522,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3732 Instruction:"VPMULDQ Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x28 /r"/"RAVM" + // Pos:3777 Instruction:"VPMULDQ Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x28 /r"/"RAVM" { .Instruction = ND_INS_VPMULDQ, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1605, + .Mnemonic = 1640, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -104517,6 +109536,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -104532,12 +109552,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3733 Instruction:"VPMULDQ Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x28 /r"/"RVM" + // Pos:3778 Instruction:"VPMULDQ Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x28 /r"/"RVM" { .Instruction = ND_INS_VPMULDQ, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1605, + .Mnemonic = 1640, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -104546,6 +109566,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -104560,12 +109581,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3734 Instruction:"VPMULHRSW Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:2 p:1 l:x w:i 0x0B /r"/"RAVM" + // Pos:3779 Instruction:"VPMULHRSW Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:2 p:1 l:x w:i 0x0B /r"/"RAVM" { .Instruction = ND_INS_VPMULHRSW, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1606, + .Mnemonic = 1641, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -104574,6 +109595,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -104589,12 +109611,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3735 Instruction:"VPMULHRSW Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x0B /r"/"RVM" + // Pos:3780 Instruction:"VPMULHRSW Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x0B /r"/"RVM" { .Instruction = ND_INS_VPMULHRSW, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1606, + .Mnemonic = 1641, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -104603,6 +109625,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -104617,12 +109640,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3736 Instruction:"VPMULHUW Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0xE4 /r"/"RAVM" + // Pos:3781 Instruction:"VPMULHUW Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0xE4 /r"/"RAVM" { .Instruction = ND_INS_VPMULHUW, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1607, + .Mnemonic = 1642, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -104631,6 +109654,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -104646,12 +109670,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3737 Instruction:"VPMULHUW Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xE4 /r"/"RVM" + // Pos:3782 Instruction:"VPMULHUW Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xE4 /r"/"RVM" { .Instruction = ND_INS_VPMULHUW, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1607, + .Mnemonic = 1642, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -104660,6 +109684,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -104674,12 +109699,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3738 Instruction:"VPMULHW Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0xE5 /r"/"RAVM" + // Pos:3783 Instruction:"VPMULHW Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0xE5 /r"/"RAVM" { .Instruction = ND_INS_VPMULHW, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1608, + .Mnemonic = 1643, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -104688,6 +109713,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -104703,12 +109729,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3739 Instruction:"VPMULHW Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xE5 /r"/"RVM" + // Pos:3784 Instruction:"VPMULHW Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xE5 /r"/"RVM" { .Instruction = ND_INS_VPMULHW, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1608, + .Mnemonic = 1643, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -104717,6 +109743,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -104731,12 +109758,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3740 Instruction:"VPMULLD Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x40 /r"/"RAVM" + // Pos:3785 Instruction:"VPMULLD Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x40 /r"/"RAVM" { .Instruction = ND_INS_VPMULLD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1609, + .Mnemonic = 1644, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -104745,6 +109772,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -104760,12 +109788,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3741 Instruction:"VPMULLD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x40 /r"/"RVM" + // Pos:3786 Instruction:"VPMULLD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x40 /r"/"RVM" { .Instruction = ND_INS_VPMULLD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1609, + .Mnemonic = 1644, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -104774,6 +109802,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -104788,12 +109817,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3742 Instruction:"VPMULLQ Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x40 /r"/"RAVM" + // Pos:3787 Instruction:"VPMULLQ Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x40 /r"/"RAVM" { .Instruction = ND_INS_VPMULLQ, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512DQ, - .Mnemonic = 1610, + .Mnemonic = 1645, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -104802,6 +109831,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -104817,12 +109847,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3743 Instruction:"VPMULLW Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0xD5 /r"/"RAVM" + // Pos:3788 Instruction:"VPMULLW Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0xD5 /r"/"RAVM" { .Instruction = ND_INS_VPMULLW, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1611, + .Mnemonic = 1646, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -104831,6 +109861,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -104846,12 +109877,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3744 Instruction:"VPMULLW Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xD5 /r"/"RVM" + // Pos:3789 Instruction:"VPMULLW Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xD5 /r"/"RVM" { .Instruction = ND_INS_VPMULLW, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1611, + .Mnemonic = 1646, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -104860,6 +109891,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -104874,12 +109906,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3745 Instruction:"VPMULTISHIFTQB Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x83 /r"/"RAVM" + // Pos:3790 Instruction:"VPMULTISHIFTQB Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x83 /r"/"RAVM" { .Instruction = ND_INS_VPMULTISHIFTQB, .Category = ND_CAT_AVX512VBMI, .IsaSet = ND_SET_AVX512VBMI, - .Mnemonic = 1612, + .Mnemonic = 1647, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -104888,6 +109920,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -104903,12 +109936,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3746 Instruction:"VPMULUDQ Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:1 p:1 l:x w:1 0xF4 /r"/"RAVM" + // Pos:3791 Instruction:"VPMULUDQ Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:1 p:1 l:x w:1 0xF4 /r"/"RAVM" { .Instruction = ND_INS_VPMULUDQ, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1613, + .Mnemonic = 1648, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -104917,6 +109950,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -104932,12 +109966,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3747 Instruction:"VPMULUDQ Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xF4 /r"/"RVM" + // Pos:3792 Instruction:"VPMULUDQ Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xF4 /r"/"RVM" { .Instruction = ND_INS_VPMULUDQ, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1613, + .Mnemonic = 1648, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -104946,6 +109980,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -104960,12 +109995,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3748 Instruction:"VPOPCNTB Vfv{K}{z},aKq,Wfv" Encoding:"evex m:2 p:1 l:x w:0 0x54 /r"/"RAM" + // Pos:3793 Instruction:"VPOPCNTB Vfv{K}{z},aKq,Wfv" Encoding:"evex m:2 p:1 l:x w:0 0x54 /r"/"RAM" { .Instruction = ND_INS_VPOPCNTB, .Category = ND_CAT_VPOPCNT, .IsaSet = ND_SET_AVX512BITALG, - .Mnemonic = 1614, + .Mnemonic = 1649, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -104974,6 +110009,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -104988,12 +110024,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3749 Instruction:"VPOPCNTD Vfv{K}{z},aKq,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x55 /r"/"RAM" + // Pos:3794 Instruction:"VPOPCNTD Vfv{K}{z},aKq,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x55 /r"/"RAM" { .Instruction = ND_INS_VPOPCNTD, .Category = ND_CAT_VPOPCNT, .IsaSet = ND_SET_AVX512VPOPCNTDQ, - .Mnemonic = 1615, + .Mnemonic = 1650, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -105002,6 +110038,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -105016,12 +110053,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3750 Instruction:"VPOPCNTQ Vfv{K}{z},aKq,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x55 /r"/"RAM" + // Pos:3795 Instruction:"VPOPCNTQ Vfv{K}{z},aKq,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x55 /r"/"RAM" { .Instruction = ND_INS_VPOPCNTQ, .Category = ND_CAT_VPOPCNT, .IsaSet = ND_SET_AVX512VPOPCNTDQ, - .Mnemonic = 1616, + .Mnemonic = 1651, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -105030,6 +110067,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -105044,12 +110082,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3751 Instruction:"VPOPCNTW Vfv{K}{z},aKq,Wfv" Encoding:"evex m:2 p:1 l:x w:1 0x54 /r"/"RAM" + // Pos:3796 Instruction:"VPOPCNTW Vfv{K}{z},aKq,Wfv" Encoding:"evex m:2 p:1 l:x w:1 0x54 /r"/"RAM" { .Instruction = ND_INS_VPOPCNTW, .Category = ND_CAT_VPOPCNT, .IsaSet = ND_SET_AVX512BITALG, - .Mnemonic = 1617, + .Mnemonic = 1652, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -105058,6 +110096,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -105072,12 +110111,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3752 Instruction:"VPOR Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xEB /r"/"RVM" + // Pos:3797 Instruction:"VPOR Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xEB /r"/"RVM" { .Instruction = ND_INS_VPOR, .Category = ND_CAT_LOGICAL, .IsaSet = ND_SET_AVX, - .Mnemonic = 1618, + .Mnemonic = 1653, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -105086,6 +110125,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -105100,12 +110140,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3753 Instruction:"VPORD Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:1 p:1 l:x w:0 0xEB /r"/"RAVM" + // Pos:3798 Instruction:"VPORD Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:1 p:1 l:x w:0 0xEB /r"/"RAVM" { .Instruction = ND_INS_VPORD, .Category = ND_CAT_LOGICAL, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1619, + .Mnemonic = 1654, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -105114,6 +110154,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -105129,12 +110170,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3754 Instruction:"VPORQ Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:1 p:1 l:x w:1 0xEB /r"/"RAVM" + // Pos:3799 Instruction:"VPORQ Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:1 p:1 l:x w:1 0xEB /r"/"RAVM" { .Instruction = ND_INS_VPORQ, .Category = ND_CAT_LOGICAL, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1620, + .Mnemonic = 1655, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -105143,6 +110184,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -105158,12 +110200,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3755 Instruction:"VPPERM Vx,Hx,Wx,Lx" Encoding:"xop m:8 w:0 0xA3 /r is4"/"RVML" + // Pos:3800 Instruction:"VPPERM Vx,Hx,Wx,Lx" Encoding:"xop m:8 w:0 0xA3 /r is4"/"RVML" { .Instruction = ND_INS_VPPERM, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1621, + .Mnemonic = 1656, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -105172,6 +110214,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -105187,12 +110230,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3756 Instruction:"VPPERM Vx,Hx,Lx,Wx" Encoding:"xop m:8 w:1 0xA3 /r is4"/"RVLM" + // Pos:3801 Instruction:"VPPERM Vx,Hx,Lx,Wx" Encoding:"xop m:8 w:1 0xA3 /r is4"/"RVLM" { .Instruction = ND_INS_VPPERM, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1621, + .Mnemonic = 1656, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -105201,6 +110244,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -105216,12 +110260,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3757 Instruction:"VPROLD Hfv{K}{z},aKq,Wfv|B32,Ib" Encoding:"evex m:1 p:1 l:x w:0 0x72 /1 ib"/"VAMI" + // Pos:3802 Instruction:"VPROLD Hfv{K}{z},aKq,Wfv|B32,Ib" Encoding:"evex m:1 p:1 l:x w:0 0x72 /1 ib"/"VAMI" { .Instruction = ND_INS_VPROLD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1622, + .Mnemonic = 1657, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -105230,6 +110274,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -105245,12 +110290,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3758 Instruction:"VPROLQ Hfv{K}{z},aKq,Wfv|B64,Ib" Encoding:"evex m:1 p:1 l:x w:1 0x72 /1 ib"/"VAMI" + // Pos:3803 Instruction:"VPROLQ Hfv{K}{z},aKq,Wfv|B64,Ib" Encoding:"evex m:1 p:1 l:x w:1 0x72 /1 ib"/"VAMI" { .Instruction = ND_INS_VPROLQ, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1623, + .Mnemonic = 1658, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -105259,6 +110304,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -105274,12 +110320,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3759 Instruction:"VPROLVD Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x15 /r"/"RAVM" + // Pos:3804 Instruction:"VPROLVD Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x15 /r"/"RAVM" { .Instruction = ND_INS_VPROLVD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1624, + .Mnemonic = 1659, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -105288,6 +110334,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -105303,12 +110350,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3760 Instruction:"VPROLVQ Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x15 /r"/"RAVM" + // Pos:3805 Instruction:"VPROLVQ Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x15 /r"/"RAVM" { .Instruction = ND_INS_VPROLVQ, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1625, + .Mnemonic = 1660, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -105317,6 +110364,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -105332,12 +110380,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3761 Instruction:"VPRORD Hfv{K}{z},aKq,Wfv|B32,Ib" Encoding:"evex m:1 p:1 l:x w:0 0x72 /0 ib"/"VAMI" + // Pos:3806 Instruction:"VPRORD Hfv{K}{z},aKq,Wfv|B32,Ib" Encoding:"evex m:1 p:1 l:x w:0 0x72 /0 ib"/"VAMI" { .Instruction = ND_INS_VPRORD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1626, + .Mnemonic = 1661, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -105346,6 +110394,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -105361,12 +110410,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3762 Instruction:"VPRORQ Hfv{K}{z},aKq,Wfv|B64,Ib" Encoding:"evex m:1 p:1 l:x w:1 0x72 /0 ib"/"VAMI" + // Pos:3807 Instruction:"VPRORQ Hfv{K}{z},aKq,Wfv|B64,Ib" Encoding:"evex m:1 p:1 l:x w:1 0x72 /0 ib"/"VAMI" { .Instruction = ND_INS_VPRORQ, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1627, + .Mnemonic = 1662, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -105375,6 +110424,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -105390,12 +110440,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3763 Instruction:"VPRORVD Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x14 /r"/"RAVM" + // Pos:3808 Instruction:"VPRORVD Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x14 /r"/"RAVM" { .Instruction = ND_INS_VPRORVD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1628, + .Mnemonic = 1663, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -105404,6 +110454,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -105419,12 +110470,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3764 Instruction:"VPRORVQ Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x14 /r"/"RAVM" + // Pos:3809 Instruction:"VPRORVQ Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x14 /r"/"RAVM" { .Instruction = ND_INS_VPRORVQ, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1629, + .Mnemonic = 1664, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -105433,6 +110484,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -105448,12 +110500,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3765 Instruction:"VPROTB Vdq,Wdq,Ib" Encoding:"xop m:8 0xC0 /r ib"/"RMI" + // Pos:3810 Instruction:"VPROTB Vdq,Wdq,Ib" Encoding:"xop m:8 0xC0 /r ib"/"RMI" { .Instruction = ND_INS_VPROTB, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1630, + .Mnemonic = 1665, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -105462,6 +110514,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -105476,12 +110529,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3766 Instruction:"VPROTB Vdq,Wdq,Hdq" Encoding:"xop m:9 w:0 0x90 /r"/"RMV" + // Pos:3811 Instruction:"VPROTB Vdq,Wdq,Hdq" Encoding:"xop m:9 w:0 0x90 /r"/"RMV" { .Instruction = ND_INS_VPROTB, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1630, + .Mnemonic = 1665, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -105490,6 +110543,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -105504,12 +110558,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3767 Instruction:"VPROTB Vdq,Hdq,Wdq" Encoding:"xop m:9 w:1 0x90 /r"/"RVM" + // Pos:3812 Instruction:"VPROTB Vdq,Hdq,Wdq" Encoding:"xop m:9 w:1 0x90 /r"/"RVM" { .Instruction = ND_INS_VPROTB, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1630, + .Mnemonic = 1665, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -105518,6 +110572,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -105532,12 +110587,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3768 Instruction:"VPROTD Vdq,Wdq,Ib" Encoding:"xop m:8 0xC2 /r ib"/"RMI" + // Pos:3813 Instruction:"VPROTD Vdq,Wdq,Ib" Encoding:"xop m:8 0xC2 /r ib"/"RMI" { .Instruction = ND_INS_VPROTD, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1631, + .Mnemonic = 1666, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -105546,6 +110601,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -105560,12 +110616,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3769 Instruction:"VPROTD Vdq,Wdq,Hdq" Encoding:"xop m:9 w:0 0x92 /r"/"RMV" + // Pos:3814 Instruction:"VPROTD Vdq,Wdq,Hdq" Encoding:"xop m:9 w:0 0x92 /r"/"RMV" { .Instruction = ND_INS_VPROTD, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1631, + .Mnemonic = 1666, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -105574,6 +110630,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -105588,12 +110645,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3770 Instruction:"VPROTD Vdq,Hdq,Wdq" Encoding:"xop m:9 w:1 0x92 /r"/"RVM" + // Pos:3815 Instruction:"VPROTD Vdq,Hdq,Wdq" Encoding:"xop m:9 w:1 0x92 /r"/"RVM" { .Instruction = ND_INS_VPROTD, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1631, + .Mnemonic = 1666, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -105602,6 +110659,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -105616,12 +110674,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3771 Instruction:"VPROTQ Vdq,Wdq,Ib" Encoding:"xop m:8 0xC3 /r ib"/"RMI" + // Pos:3816 Instruction:"VPROTQ Vdq,Wdq,Ib" Encoding:"xop m:8 0xC3 /r ib"/"RMI" { .Instruction = ND_INS_VPROTQ, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1632, + .Mnemonic = 1667, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -105630,6 +110688,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -105644,12 +110703,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3772 Instruction:"VPROTQ Vdq,Wdq,Hdq" Encoding:"xop m:9 w:0 0x93 /r"/"RMV" + // Pos:3817 Instruction:"VPROTQ Vdq,Wdq,Hdq" Encoding:"xop m:9 w:0 0x93 /r"/"RMV" { .Instruction = ND_INS_VPROTQ, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1632, + .Mnemonic = 1667, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -105658,6 +110717,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -105672,12 +110732,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3773 Instruction:"VPROTQ Vdq,Hdq,Wdq" Encoding:"xop m:9 w:1 0x93 /r"/"RVM" + // Pos:3818 Instruction:"VPROTQ Vdq,Hdq,Wdq" Encoding:"xop m:9 w:1 0x93 /r"/"RVM" { .Instruction = ND_INS_VPROTQ, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1632, + .Mnemonic = 1667, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -105686,6 +110746,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -105700,12 +110761,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3774 Instruction:"VPROTW Vdq,Wdq,Ib" Encoding:"xop m:8 0xC1 /r ib"/"RMI" + // Pos:3819 Instruction:"VPROTW Vdq,Wdq,Ib" Encoding:"xop m:8 0xC1 /r ib"/"RMI" { .Instruction = ND_INS_VPROTW, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1633, + .Mnemonic = 1668, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -105714,6 +110775,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -105728,12 +110790,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3775 Instruction:"VPROTW Vdq,Wdq,Hdq" Encoding:"xop m:9 w:0 0x91 /r"/"RMV" + // Pos:3820 Instruction:"VPROTW Vdq,Wdq,Hdq" Encoding:"xop m:9 w:0 0x91 /r"/"RMV" { .Instruction = ND_INS_VPROTW, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1633, + .Mnemonic = 1668, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -105742,6 +110804,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -105756,12 +110819,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3776 Instruction:"VPROTW Vdq,Hdq,Wdq" Encoding:"xop m:9 w:1 0x91 /r"/"RVM" + // Pos:3821 Instruction:"VPROTW Vdq,Hdq,Wdq" Encoding:"xop m:9 w:1 0x91 /r"/"RVM" { .Instruction = ND_INS_VPROTW, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1633, + .Mnemonic = 1668, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -105770,6 +110833,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -105784,12 +110848,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3777 Instruction:"VPSADBW Vfv,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0xF6 /r"/"RVM" + // Pos:3822 Instruction:"VPSADBW Vfv,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0xF6 /r"/"RVM" { .Instruction = ND_INS_VPSADBW, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1634, + .Mnemonic = 1669, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -105798,6 +110862,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NFnb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -105812,12 +110877,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3778 Instruction:"VPSADBW Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xF6 /r"/"RVM" + // Pos:3823 Instruction:"VPSADBW Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xF6 /r"/"RVM" { .Instruction = ND_INS_VPSADBW, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1634, + .Mnemonic = 1669, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -105826,6 +110891,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -105840,12 +110906,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3779 Instruction:"VPSCATTERDD Mvm32n{K},aKq,Vfv" Encoding:"evex m:2 p:1 l:x w:0 0xA0 /r:mem vsib"/"MAR" + // Pos:3824 Instruction:"VPSCATTERDD Mvm32n{K},aKq,Vfv" Encoding:"evex m:2 p:1 l:x w:0 0xA0 /r:mem vsib"/"MAR" { .Instruction = ND_INS_VPSCATTERDD, .Category = ND_CAT_SCATTER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1635, + .Mnemonic = 1670, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK, @@ -105854,6 +110920,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E12, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -105868,12 +110935,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3780 Instruction:"VPSCATTERDQ Mvm32h{K},aKq,Vfv" Encoding:"evex m:2 p:1 l:x w:1 0xA0 /r:mem vsib"/"MAR" + // Pos:3825 Instruction:"VPSCATTERDQ Mvm32h{K},aKq,Vfv" Encoding:"evex m:2 p:1 l:x w:1 0xA0 /r:mem vsib"/"MAR" { .Instruction = ND_INS_VPSCATTERDQ, .Category = ND_CAT_SCATTER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1636, + .Mnemonic = 1671, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK, @@ -105882,6 +110949,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E12, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -105896,12 +110964,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3781 Instruction:"VPSCATTERQD Mvm64n{K},aKq,Vhv" Encoding:"evex m:2 p:1 l:x w:0 0xA1 /r:mem vsib"/"MAR" + // Pos:3826 Instruction:"VPSCATTERQD Mvm64n{K},aKq,Vhv" Encoding:"evex m:2 p:1 l:x w:0 0xA1 /r:mem vsib"/"MAR" { .Instruction = ND_INS_VPSCATTERQD, .Category = ND_CAT_SCATTER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1637, + .Mnemonic = 1672, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK, @@ -105910,6 +110978,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E12, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -105924,12 +110993,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3782 Instruction:"VPSCATTERQQ Mvm64n{K},aKq,Vfv" Encoding:"evex m:2 p:1 l:x w:1 0xA1 /r:mem vsib"/"MAR" + // Pos:3827 Instruction:"VPSCATTERQQ Mvm64n{K},aKq,Vfv" Encoding:"evex m:2 p:1 l:x w:1 0xA1 /r:mem vsib"/"MAR" { .Instruction = ND_INS_VPSCATTERQQ, .Category = ND_CAT_SCATTER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1638, + .Mnemonic = 1673, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK, @@ -105938,6 +111007,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E12, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -105952,12 +111022,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3783 Instruction:"VPSHAB Vdq,Wdq,Hdq" Encoding:"xop m:9 w:0 0x98 /r"/"RMV" + // Pos:3828 Instruction:"VPSHAB Vdq,Wdq,Hdq" Encoding:"xop m:9 w:0 0x98 /r"/"RMV" { .Instruction = ND_INS_VPSHAB, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1639, + .Mnemonic = 1674, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -105966,6 +111036,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -105980,12 +111051,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3784 Instruction:"VPSHAB Vdq,Hdq,Wdq" Encoding:"xop m:9 w:1 0x98 /r"/"RVM" + // Pos:3829 Instruction:"VPSHAB Vdq,Hdq,Wdq" Encoding:"xop m:9 w:1 0x98 /r"/"RVM" { .Instruction = ND_INS_VPSHAB, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1639, + .Mnemonic = 1674, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -105994,6 +111065,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -106008,12 +111080,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3785 Instruction:"VPSHAD Vdq,Wdq,Hdq" Encoding:"xop m:9 w:0 0x9A /r"/"RMV" + // Pos:3830 Instruction:"VPSHAD Vdq,Wdq,Hdq" Encoding:"xop m:9 w:0 0x9A /r"/"RMV" { .Instruction = ND_INS_VPSHAD, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1640, + .Mnemonic = 1675, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -106022,6 +111094,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -106036,12 +111109,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3786 Instruction:"VPSHAD Vdq,Hdq,Wdq" Encoding:"xop m:9 w:1 0x9A /r"/"RVM" + // Pos:3831 Instruction:"VPSHAD Vdq,Hdq,Wdq" Encoding:"xop m:9 w:1 0x9A /r"/"RVM" { .Instruction = ND_INS_VPSHAD, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1640, + .Mnemonic = 1675, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -106050,6 +111123,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -106064,12 +111138,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3787 Instruction:"VPSHAQ Vdq,Wdq,Hdq" Encoding:"xop m:9 w:0 0x9B /r"/"RMV" + // Pos:3832 Instruction:"VPSHAQ Vdq,Wdq,Hdq" Encoding:"xop m:9 w:0 0x9B /r"/"RMV" { .Instruction = ND_INS_VPSHAQ, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1641, + .Mnemonic = 1676, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -106078,6 +111152,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -106092,12 +111167,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3788 Instruction:"VPSHAQ Vdq,Hdq,Wdq" Encoding:"xop m:9 w:1 0x9B /r"/"RVM" + // Pos:3833 Instruction:"VPSHAQ Vdq,Hdq,Wdq" Encoding:"xop m:9 w:1 0x9B /r"/"RVM" { .Instruction = ND_INS_VPSHAQ, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1641, + .Mnemonic = 1676, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -106106,6 +111181,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -106120,12 +111196,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3789 Instruction:"VPSHAW Vdq,Wdq,Hdq" Encoding:"xop m:9 w:0 0x99 /r"/"RMV" + // Pos:3834 Instruction:"VPSHAW Vdq,Wdq,Hdq" Encoding:"xop m:9 w:0 0x99 /r"/"RMV" { .Instruction = ND_INS_VPSHAW, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1642, + .Mnemonic = 1677, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -106134,6 +111210,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -106148,12 +111225,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3790 Instruction:"VPSHAW Vdq,Hdq,Wdq" Encoding:"xop m:9 w:1 0x99 /r"/"RVM" + // Pos:3835 Instruction:"VPSHAW Vdq,Hdq,Wdq" Encoding:"xop m:9 w:1 0x99 /r"/"RVM" { .Instruction = ND_INS_VPSHAW, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1642, + .Mnemonic = 1677, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -106162,6 +111239,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -106176,12 +111254,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3791 Instruction:"VPSHLB Vdq,Wdq,Hdq" Encoding:"xop m:9 w:0 0x94 /r"/"RMV" + // Pos:3836 Instruction:"VPSHLB Vdq,Wdq,Hdq" Encoding:"xop m:9 w:0 0x94 /r"/"RMV" { .Instruction = ND_INS_VPSHLB, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1643, + .Mnemonic = 1678, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -106190,6 +111268,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -106204,12 +111283,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3792 Instruction:"VPSHLB Vdq,Hdq,Wdq" Encoding:"xop m:9 w:1 0x94 /r"/"RVM" + // Pos:3837 Instruction:"VPSHLB Vdq,Hdq,Wdq" Encoding:"xop m:9 w:1 0x94 /r"/"RVM" { .Instruction = ND_INS_VPSHLB, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1643, + .Mnemonic = 1678, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -106218,6 +111297,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -106232,12 +111312,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3793 Instruction:"VPSHLB Vdq,Hdq,Wdq" Encoding:"xop m:9 w:1 0x95 /r"/"RVM" + // Pos:3838 Instruction:"VPSHLB Vdq,Hdq,Wdq" Encoding:"xop m:9 w:1 0x95 /r"/"RVM" { .Instruction = ND_INS_VPSHLB, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1643, + .Mnemonic = 1678, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -106246,6 +111326,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -106260,12 +111341,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3794 Instruction:"VPSHLB Vdq,Hdq,Wdq" Encoding:"xop m:9 w:1 0x96 /r"/"RVM" + // Pos:3839 Instruction:"VPSHLB Vdq,Hdq,Wdq" Encoding:"xop m:9 w:1 0x96 /r"/"RVM" { .Instruction = ND_INS_VPSHLB, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1643, + .Mnemonic = 1678, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -106274,6 +111355,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -106288,12 +111370,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3795 Instruction:"VPSHLD Vdq,Wdq,Hdq" Encoding:"xop m:9 w:0 0x96 /r"/"RMV" + // Pos:3840 Instruction:"VPSHLD Vdq,Wdq,Hdq" Encoding:"xop m:9 w:0 0x96 /r"/"RMV" { .Instruction = ND_INS_VPSHLD, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1644, + .Mnemonic = 1679, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -106302,6 +111384,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -106316,12 +111399,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3796 Instruction:"VPSHLDD Vfv{K}{z},aKq,Hfv,Wfv|B32,Ib" Encoding:"evex m:3 p:1 l:x w:0 0x71 /r ib"/"RAVMI" + // Pos:3841 Instruction:"VPSHLDD Vfv{K}{z},aKq,Hfv,Wfv|B32,Ib" Encoding:"evex m:3 p:1 l:x w:0 0x71 /r ib"/"RAVMI" { .Instruction = ND_INS_VPSHLDD, .Category = ND_CAT_AVX512VBMI, .IsaSet = ND_SET_AVX512VBMI2, - .Mnemonic = 1645, + .Mnemonic = 1680, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -106330,6 +111413,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -106346,12 +111430,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3797 Instruction:"VPSHLDQ Vfv{K}{z},aKq,Hfv,Wfv|B64,Ib" Encoding:"evex m:3 p:1 l:x w:1 0x71 /r ib"/"RAVMI" + // Pos:3842 Instruction:"VPSHLDQ Vfv{K}{z},aKq,Hfv,Wfv|B64,Ib" Encoding:"evex m:3 p:1 l:x w:1 0x71 /r ib"/"RAVMI" { .Instruction = ND_INS_VPSHLDQ, .Category = ND_CAT_AVX512VBMI, .IsaSet = ND_SET_AVX512VBMI2, - .Mnemonic = 1646, + .Mnemonic = 1681, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -106360,6 +111444,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -106376,12 +111461,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3798 Instruction:"VPSHLDVD Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x71 /r"/"RAVM" + // Pos:3843 Instruction:"VPSHLDVD Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x71 /r"/"RAVM" { .Instruction = ND_INS_VPSHLDVD, .Category = ND_CAT_AVX512VBMI, .IsaSet = ND_SET_AVX512VBMI2, - .Mnemonic = 1647, + .Mnemonic = 1682, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -106390,6 +111475,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -106405,12 +111491,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3799 Instruction:"VPSHLDVQ Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x71 /r"/"RAVM" + // Pos:3844 Instruction:"VPSHLDVQ Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x71 /r"/"RAVM" { .Instruction = ND_INS_VPSHLDVQ, .Category = ND_CAT_AVX512VBMI, .IsaSet = ND_SET_AVX512VBMI2, - .Mnemonic = 1648, + .Mnemonic = 1683, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -106419,6 +111505,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -106434,12 +111521,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3800 Instruction:"VPSHLDVW Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:2 p:1 l:x w:1 0x70 /r"/"RAVM" + // Pos:3845 Instruction:"VPSHLDVW Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:2 p:1 l:x w:1 0x70 /r"/"RAVM" { .Instruction = ND_INS_VPSHLDVW, .Category = ND_CAT_AVX512VBMI, .IsaSet = ND_SET_AVX512VBMI2, - .Mnemonic = 1649, + .Mnemonic = 1684, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -106448,6 +111535,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -106463,12 +111551,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3801 Instruction:"VPSHLDW Vfv{K}{z},aKq,Hfv,Wfv,Ib" Encoding:"evex m:3 p:1 l:x w:1 0x70 /r ib"/"RAVMI" + // Pos:3846 Instruction:"VPSHLDW Vfv{K}{z},aKq,Hfv,Wfv,Ib" Encoding:"evex m:3 p:1 l:x w:1 0x70 /r ib"/"RAVMI" { .Instruction = ND_INS_VPSHLDW, .Category = ND_CAT_AVX512VBMI, .IsaSet = ND_SET_AVX512VBMI2, - .Mnemonic = 1650, + .Mnemonic = 1685, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -106477,6 +111565,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -106493,12 +111582,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3802 Instruction:"VPSHLQ Vdq,Wdq,Hdq" Encoding:"xop m:9 w:0 0x97 /r"/"RMV" + // Pos:3847 Instruction:"VPSHLQ Vdq,Wdq,Hdq" Encoding:"xop m:9 w:0 0x97 /r"/"RMV" { .Instruction = ND_INS_VPSHLQ, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1651, + .Mnemonic = 1686, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -106507,6 +111596,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -106521,12 +111611,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3803 Instruction:"VPSHLQ Vdq,Hdq,Wdq" Encoding:"xop m:9 w:1 0x97 /r"/"RVM" + // Pos:3848 Instruction:"VPSHLQ Vdq,Hdq,Wdq" Encoding:"xop m:9 w:1 0x97 /r"/"RVM" { .Instruction = ND_INS_VPSHLQ, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1651, + .Mnemonic = 1686, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -106535,6 +111625,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -106549,12 +111640,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3804 Instruction:"VPSHLW Vdq,Wdq,Hdq" Encoding:"xop m:9 w:0 0x95 /r"/"RMV" + // Pos:3849 Instruction:"VPSHLW Vdq,Wdq,Hdq" Encoding:"xop m:9 w:0 0x95 /r"/"RMV" { .Instruction = ND_INS_VPSHLW, .Category = ND_CAT_XOP, .IsaSet = ND_SET_XOP, - .Mnemonic = 1652, + .Mnemonic = 1687, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -106563,6 +111654,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -106577,12 +111669,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3805 Instruction:"VPSHRDD Vfv{K}{z},aKq,Hfv,Wfv|B32,Ib" Encoding:"evex m:3 p:1 l:x w:0 0x73 /r ib"/"RAVMI" + // Pos:3850 Instruction:"VPSHRDD Vfv{K}{z},aKq,Hfv,Wfv|B32,Ib" Encoding:"evex m:3 p:1 l:x w:0 0x73 /r ib"/"RAVMI" { .Instruction = ND_INS_VPSHRDD, .Category = ND_CAT_AVX512VBMI, .IsaSet = ND_SET_AVX512VBMI2, - .Mnemonic = 1653, + .Mnemonic = 1688, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -106591,6 +111683,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -106607,12 +111700,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3806 Instruction:"VPSHRDQ Vfv{K}{z},aKq,Hfv,Wfv|B64,Ib" Encoding:"evex m:3 p:1 l:x w:1 0x73 /r ib"/"RAVMI" + // Pos:3851 Instruction:"VPSHRDQ Vfv{K}{z},aKq,Hfv,Wfv|B64,Ib" Encoding:"evex m:3 p:1 l:x w:1 0x73 /r ib"/"RAVMI" { .Instruction = ND_INS_VPSHRDQ, .Category = ND_CAT_AVX512VBMI, .IsaSet = ND_SET_AVX512VBMI2, - .Mnemonic = 1654, + .Mnemonic = 1689, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -106621,6 +111714,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -106637,12 +111731,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3807 Instruction:"VPSHRDVD Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x73 /r"/"RAVM" + // Pos:3852 Instruction:"VPSHRDVD Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x73 /r"/"RAVM" { .Instruction = ND_INS_VPSHRDVD, .Category = ND_CAT_AVX512VBMI, .IsaSet = ND_SET_AVX512VBMI2, - .Mnemonic = 1655, + .Mnemonic = 1690, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -106651,6 +111745,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -106666,12 +111761,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3808 Instruction:"VPSHRDVQ Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x73 /r"/"RAVM" + // Pos:3853 Instruction:"VPSHRDVQ Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x73 /r"/"RAVM" { .Instruction = ND_INS_VPSHRDVQ, .Category = ND_CAT_AVX512VBMI, .IsaSet = ND_SET_AVX512VBMI2, - .Mnemonic = 1656, + .Mnemonic = 1691, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -106680,6 +111775,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -106695,12 +111791,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3809 Instruction:"VPSHRDVW Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:2 p:1 l:x w:1 0x72 /r"/"RAVM" + // Pos:3854 Instruction:"VPSHRDVW Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:2 p:1 l:x w:1 0x72 /r"/"RAVM" { .Instruction = ND_INS_VPSHRDVW, .Category = ND_CAT_AVX512VBMI, .IsaSet = ND_SET_AVX512VBMI2, - .Mnemonic = 1657, + .Mnemonic = 1692, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -106709,6 +111805,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -106724,12 +111821,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3810 Instruction:"VPSHRDW Vfv{K}{z},aKq,Hfv,Wfv,Ib" Encoding:"evex m:3 p:1 l:x w:1 0x72 /r ib"/"RAVMI" + // Pos:3855 Instruction:"VPSHRDW Vfv{K}{z},aKq,Hfv,Wfv,Ib" Encoding:"evex m:3 p:1 l:x w:1 0x72 /r ib"/"RAVMI" { .Instruction = ND_INS_VPSHRDW, .Category = ND_CAT_AVX512VBMI, .IsaSet = ND_SET_AVX512VBMI2, - .Mnemonic = 1658, + .Mnemonic = 1693, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -106738,6 +111835,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -106754,12 +111852,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3811 Instruction:"VPSHUFB Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:2 p:1 l:x w:i 0x00 /r"/"RAVM" + // Pos:3856 Instruction:"VPSHUFB Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:2 p:1 l:x w:i 0x00 /r"/"RAVM" { .Instruction = ND_INS_VPSHUFB, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1659, + .Mnemonic = 1694, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -106768,6 +111866,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NFnb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -106783,12 +111882,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3812 Instruction:"VPSHUFB Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x00 /r"/"RVM" + // Pos:3857 Instruction:"VPSHUFB Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x00 /r"/"RVM" { .Instruction = ND_INS_VPSHUFB, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1659, + .Mnemonic = 1694, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -106797,6 +111896,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -106811,12 +111911,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3813 Instruction:"VPSHUFBITQMB rK{K},aKq,Hfv,Wfv" Encoding:"evex m:2 p:1 l:x w:0 0x8F /r"/"RAVM" + // Pos:3858 Instruction:"VPSHUFBITQMB rK{K},aKq,Hfv,Wfv" Encoding:"evex m:2 p:1 l:x w:0 0x8F /r"/"RAVM" { .Instruction = ND_INS_VPSHUFBITQMB, .Category = ND_CAT_AVX512VBMI, .IsaSet = ND_SET_AVX512BITALG, - .Mnemonic = 1660, + .Mnemonic = 1695, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK, @@ -106825,6 +111925,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -106840,12 +111941,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3814 Instruction:"VPSHUFD Vfv{K}{z},aKq,Wfv|B32,Ib" Encoding:"evex m:1 p:1 l:x w:0 0x70 /r ib"/"RAMI" + // Pos:3859 Instruction:"VPSHUFD Vfv{K}{z},aKq,Wfv|B32,Ib" Encoding:"evex m:1 p:1 l:x w:0 0x70 /r ib"/"RAMI" { .Instruction = ND_INS_VPSHUFD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1661, + .Mnemonic = 1696, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -106854,6 +111955,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -106869,12 +111971,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3815 Instruction:"VPSHUFD Vx,Wx,Ib" Encoding:"vex m:1 p:1 l:x w:i 0x70 /r ib"/"RMI" + // Pos:3860 Instruction:"VPSHUFD Vx,Wx,Ib" Encoding:"vex m:1 p:1 l:x w:i 0x70 /r ib"/"RMI" { .Instruction = ND_INS_VPSHUFD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1661, + .Mnemonic = 1696, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -106883,6 +111985,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -106897,12 +112000,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3816 Instruction:"VPSHUFHW Vfv{K}{z},aKq,Wfv,Ib" Encoding:"evex m:1 p:2 l:x w:i 0x70 /r ib"/"RAMI" + // Pos:3861 Instruction:"VPSHUFHW Vfv{K}{z},aKq,Wfv,Ib" Encoding:"evex m:1 p:2 l:x w:i 0x70 /r ib"/"RAMI" { .Instruction = ND_INS_VPSHUFHW, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1662, + .Mnemonic = 1697, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -106911,6 +112014,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NFnb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -106926,12 +112030,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3817 Instruction:"VPSHUFHW Vx,Wx,Ib" Encoding:"vex m:1 p:2 l:x w:i 0x70 /r ib"/"RMI" + // Pos:3862 Instruction:"VPSHUFHW Vx,Wx,Ib" Encoding:"vex m:1 p:2 l:x w:i 0x70 /r ib"/"RMI" { .Instruction = ND_INS_VPSHUFHW, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1662, + .Mnemonic = 1697, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -106940,6 +112044,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -106954,12 +112059,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3818 Instruction:"VPSHUFLW Vfv{K}{z},aKq,Wfv,Ib" Encoding:"evex m:1 p:3 l:x w:i 0x70 /r ib"/"RAMI" + // Pos:3863 Instruction:"VPSHUFLW Vfv{K}{z},aKq,Wfv,Ib" Encoding:"evex m:1 p:3 l:x w:i 0x70 /r ib"/"RAMI" { .Instruction = ND_INS_VPSHUFLW, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1663, + .Mnemonic = 1698, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -106968,6 +112073,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NFnb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -106983,12 +112089,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3819 Instruction:"VPSHUFLW Vx,Wx,Ib" Encoding:"vex m:1 p:3 l:x w:i 0x70 /r ib"/"RMI" + // Pos:3864 Instruction:"VPSHUFLW Vx,Wx,Ib" Encoding:"vex m:1 p:3 l:x w:i 0x70 /r ib"/"RMI" { .Instruction = ND_INS_VPSHUFLW, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1663, + .Mnemonic = 1698, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -106997,6 +112103,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -107011,12 +112118,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3820 Instruction:"VPSIGNB Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x08 /r"/"RVM" + // Pos:3865 Instruction:"VPSIGNB Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x08 /r"/"RVM" { .Instruction = ND_INS_VPSIGNB, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1664, + .Mnemonic = 1699, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -107025,6 +112132,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -107039,12 +112147,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3821 Instruction:"VPSIGND Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x0A /r"/"RVM" + // Pos:3866 Instruction:"VPSIGND Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x0A /r"/"RVM" { .Instruction = ND_INS_VPSIGND, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1665, + .Mnemonic = 1700, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -107053,6 +112161,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -107067,12 +112176,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3822 Instruction:"VPSIGNW Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x09 /r"/"RVM" + // Pos:3867 Instruction:"VPSIGNW Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x09 /r"/"RVM" { .Instruction = ND_INS_VPSIGNW, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1666, + .Mnemonic = 1701, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -107081,6 +112190,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -107095,12 +112205,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3823 Instruction:"VPSLLD Hfv{K}{z},aKq,Wfv|B32,Ib" Encoding:"evex m:1 p:1 l:x w:0 0x72 /6 ib"/"VAMI" + // Pos:3868 Instruction:"VPSLLD Hfv{K}{z},aKq,Wfv|B32,Ib" Encoding:"evex m:1 p:1 l:x w:0 0x72 /6 ib"/"VAMI" { .Instruction = ND_INS_VPSLLD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1667, + .Mnemonic = 1702, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -107109,6 +112219,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -107124,12 +112235,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3824 Instruction:"VPSLLD Vfv{K}{z},aKq,Hfv,Wdq" Encoding:"evex m:1 p:1 l:x w:0 0xF2 /r"/"RAVM" + // Pos:3869 Instruction:"VPSLLD Vfv{K}{z},aKq,Hfv,Wdq" Encoding:"evex m:1 p:1 l:x w:0 0xF2 /r"/"RAVM" { .Instruction = ND_INS_VPSLLD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1667, + .Mnemonic = 1702, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -107138,6 +112249,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NFnb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -107153,12 +112265,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3825 Instruction:"VPSLLD Hx,Ux,Ib" Encoding:"vex m:1 p:1 l:x w:i 0x72 /6:reg ib"/"VMI" + // Pos:3870 Instruction:"VPSLLD Hx,Ux,Ib" Encoding:"vex m:1 p:1 l:x w:i 0x72 /6:reg ib"/"VMI" { .Instruction = ND_INS_VPSLLD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1667, + .Mnemonic = 1702, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -107167,6 +112279,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_7, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -107181,12 +112294,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3826 Instruction:"VPSLLD Vx,Hx,Wdq" Encoding:"vex m:1 p:1 l:x w:i 0xF2 /r"/"RVM" + // Pos:3871 Instruction:"VPSLLD Vx,Hx,Wdq" Encoding:"vex m:1 p:1 l:x w:i 0xF2 /r"/"RVM" { .Instruction = ND_INS_VPSLLD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1667, + .Mnemonic = 1702, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -107195,6 +112308,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -107209,12 +112323,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3827 Instruction:"VPSLLDQ Hfv,Wfv,Ib" Encoding:"evex m:1 p:1 l:x w:i 0x73 /7 ib"/"VMI" + // Pos:3872 Instruction:"VPSLLDQ Hfv,Wfv,Ib" Encoding:"evex m:1 p:1 l:x w:i 0x73 /7 ib"/"VMI" { .Instruction = ND_INS_VPSLLDQ, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1668, + .Mnemonic = 1703, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -107223,6 +112337,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NFnb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -107237,12 +112352,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3828 Instruction:"VPSLLDQ Hx,Ux,Ib" Encoding:"vex m:1 p:1 l:x w:i 0x73 /7:reg ib"/"VMI" + // Pos:3873 Instruction:"VPSLLDQ Hx,Ux,Ib" Encoding:"vex m:1 p:1 l:x w:i 0x73 /7:reg ib"/"VMI" { .Instruction = ND_INS_VPSLLDQ, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1668, + .Mnemonic = 1703, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -107251,6 +112366,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_7, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -107265,12 +112381,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3829 Instruction:"VPSLLQ Hfv{K}{z},aKq,Wfv|B64,Ib" Encoding:"evex m:1 p:1 l:x w:1 0x73 /6 ib"/"VAMI" + // Pos:3874 Instruction:"VPSLLQ Hfv{K}{z},aKq,Wfv|B64,Ib" Encoding:"evex m:1 p:1 l:x w:1 0x73 /6 ib"/"VAMI" { .Instruction = ND_INS_VPSLLQ, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1669, + .Mnemonic = 1704, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -107279,6 +112395,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -107294,12 +112411,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3830 Instruction:"VPSLLQ Vfv{K}{z},aKq,Hfv,Wdq" Encoding:"evex m:1 p:1 l:x w:1 0xF3 /r"/"RAVM" + // Pos:3875 Instruction:"VPSLLQ Vfv{K}{z},aKq,Hfv,Wdq" Encoding:"evex m:1 p:1 l:x w:1 0xF3 /r"/"RAVM" { .Instruction = ND_INS_VPSLLQ, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1669, + .Mnemonic = 1704, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -107308,6 +112425,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NFnb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -107323,12 +112441,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3831 Instruction:"VPSLLQ Hx,Ux,Ib" Encoding:"vex m:1 p:1 l:x w:i 0x73 /6:reg ib"/"VMI" + // Pos:3876 Instruction:"VPSLLQ Hx,Ux,Ib" Encoding:"vex m:1 p:1 l:x w:i 0x73 /6:reg ib"/"VMI" { .Instruction = ND_INS_VPSLLQ, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1669, + .Mnemonic = 1704, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -107337,6 +112455,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_7, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -107351,12 +112470,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3832 Instruction:"VPSLLQ Vx,Hx,Wdq" Encoding:"vex m:1 p:1 l:x w:i 0xF3 /r"/"RVM" + // Pos:3877 Instruction:"VPSLLQ Vx,Hx,Wdq" Encoding:"vex m:1 p:1 l:x w:i 0xF3 /r"/"RVM" { .Instruction = ND_INS_VPSLLQ, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1669, + .Mnemonic = 1704, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -107365,6 +112484,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -107379,12 +112499,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3833 Instruction:"VPSLLVD Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x47 /r"/"RAVM" + // Pos:3878 Instruction:"VPSLLVD Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x47 /r"/"RAVM" { .Instruction = ND_INS_VPSLLVD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1670, + .Mnemonic = 1705, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -107393,6 +112513,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -107408,12 +112529,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3834 Instruction:"VPSLLVD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0x47 /r"/"RVM" + // Pos:3879 Instruction:"VPSLLVD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0x47 /r"/"RVM" { .Instruction = ND_INS_VPSLLVD, .Category = ND_CAT_AVX2, .IsaSet = ND_SET_AVX2, - .Mnemonic = 1670, + .Mnemonic = 1705, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -107422,6 +112543,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -107436,12 +112558,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3835 Instruction:"VPSLLVQ Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x47 /r"/"RAVM" + // Pos:3880 Instruction:"VPSLLVQ Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x47 /r"/"RAVM" { .Instruction = ND_INS_VPSLLVQ, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1671, + .Mnemonic = 1706, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -107450,6 +112572,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -107465,12 +112588,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3836 Instruction:"VPSLLVQ Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:1 0x47 /r"/"RVM" + // Pos:3881 Instruction:"VPSLLVQ Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:1 0x47 /r"/"RVM" { .Instruction = ND_INS_VPSLLVQ, .Category = ND_CAT_AVX2, .IsaSet = ND_SET_AVX2, - .Mnemonic = 1671, + .Mnemonic = 1706, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -107479,6 +112602,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -107493,12 +112617,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3837 Instruction:"VPSLLVW Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:2 p:1 l:x w:1 0x12 /r"/"RAVM" + // Pos:3882 Instruction:"VPSLLVW Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:2 p:1 l:x w:1 0x12 /r"/"RAVM" { .Instruction = ND_INS_VPSLLVW, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1672, + .Mnemonic = 1707, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -107507,6 +112631,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -107522,12 +112647,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3838 Instruction:"VPSLLW Hfv{K}{z},aKq,Wfv,Ib" Encoding:"evex m:1 p:1 l:x w:i 0x71 /6 ib"/"VAMI" + // Pos:3883 Instruction:"VPSLLW Hfv{K}{z},aKq,Wfv,Ib" Encoding:"evex m:1 p:1 l:x w:i 0x71 /6 ib"/"VAMI" { .Instruction = ND_INS_VPSLLW, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1673, + .Mnemonic = 1708, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -107536,6 +112661,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -107551,12 +112677,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3839 Instruction:"VPSLLW Vfv{K}{z},aKq,Hfv,Wdq" Encoding:"evex m:1 p:1 l:x w:i 0xF1 /r"/"RAVM" + // Pos:3884 Instruction:"VPSLLW Vfv{K}{z},aKq,Hfv,Wdq" Encoding:"evex m:1 p:1 l:x w:i 0xF1 /r"/"RAVM" { .Instruction = ND_INS_VPSLLW, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1673, + .Mnemonic = 1708, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -107565,6 +112691,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -107580,12 +112707,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3840 Instruction:"VPSLLW Hx,Ux,Ib" Encoding:"vex m:1 p:1 l:x w:i 0x71 /6:reg ib"/"VMI" + // Pos:3885 Instruction:"VPSLLW Hx,Ux,Ib" Encoding:"vex m:1 p:1 l:x w:i 0x71 /6:reg ib"/"VMI" { .Instruction = ND_INS_VPSLLW, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1673, + .Mnemonic = 1708, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -107594,6 +112721,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_7, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -107608,12 +112736,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3841 Instruction:"VPSLLW Vx,Hx,Wdq" Encoding:"vex m:1 p:1 l:x w:i 0xF1 /r"/"RVM" + // Pos:3886 Instruction:"VPSLLW Vx,Hx,Wdq" Encoding:"vex m:1 p:1 l:x w:i 0xF1 /r"/"RVM" { .Instruction = ND_INS_VPSLLW, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1673, + .Mnemonic = 1708, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -107622,6 +112750,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -107636,12 +112765,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3842 Instruction:"VPSRAD Hfv{K}{z},aKq,Wfv|B32,Ib" Encoding:"evex m:1 p:1 l:x w:0 0x72 /4 ib"/"VAMI" + // Pos:3887 Instruction:"VPSRAD Hfv{K}{z},aKq,Wfv|B32,Ib" Encoding:"evex m:1 p:1 l:x w:0 0x72 /4 ib"/"VAMI" { .Instruction = ND_INS_VPSRAD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1674, + .Mnemonic = 1709, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -107650,6 +112779,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -107665,12 +112795,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3843 Instruction:"VPSRAD Vfv{K}{z},aKq,Hfv,Wdq" Encoding:"evex m:1 p:1 l:x w:0 0xE2 /r"/"RAVM" + // Pos:3888 Instruction:"VPSRAD Vfv{K}{z},aKq,Hfv,Wdq" Encoding:"evex m:1 p:1 l:x w:0 0xE2 /r"/"RAVM" { .Instruction = ND_INS_VPSRAD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1674, + .Mnemonic = 1709, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -107679,6 +112809,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NFnb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -107694,12 +112825,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3844 Instruction:"VPSRAD Hx,Ux,Ib" Encoding:"vex m:1 p:1 l:x w:i 0x72 /4:reg ib"/"VMI" + // Pos:3889 Instruction:"VPSRAD Hx,Ux,Ib" Encoding:"vex m:1 p:1 l:x w:i 0x72 /4:reg ib"/"VMI" { .Instruction = ND_INS_VPSRAD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1674, + .Mnemonic = 1709, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -107708,6 +112839,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_7, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -107722,12 +112854,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3845 Instruction:"VPSRAD Vx,Hx,Wdq" Encoding:"vex m:1 p:1 l:x w:i 0xE2 /r"/"RVM" + // Pos:3890 Instruction:"VPSRAD Vx,Hx,Wdq" Encoding:"vex m:1 p:1 l:x w:i 0xE2 /r"/"RVM" { .Instruction = ND_INS_VPSRAD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1674, + .Mnemonic = 1709, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -107736,6 +112868,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -107750,12 +112883,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3846 Instruction:"VPSRAQ Hfv{K}{z},aKq,Wfv|B64,Ib" Encoding:"evex m:1 p:1 l:x w:1 0x72 /4 ib"/"VAMI" + // Pos:3891 Instruction:"VPSRAQ Hfv{K}{z},aKq,Wfv|B64,Ib" Encoding:"evex m:1 p:1 l:x w:1 0x72 /4 ib"/"VAMI" { .Instruction = ND_INS_VPSRAQ, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1675, + .Mnemonic = 1710, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -107764,6 +112897,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -107779,12 +112913,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3847 Instruction:"VPSRAQ Vfv{K}{z},aKq,Hfv,Wdq" Encoding:"evex m:1 p:1 l:x w:1 0xE2 /r"/"RAVM" + // Pos:3892 Instruction:"VPSRAQ Vfv{K}{z},aKq,Hfv,Wdq" Encoding:"evex m:1 p:1 l:x w:1 0xE2 /r"/"RAVM" { .Instruction = ND_INS_VPSRAQ, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1675, + .Mnemonic = 1710, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -107793,6 +112927,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NFnb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -107808,12 +112943,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3848 Instruction:"VPSRAVD Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x46 /r"/"RAVM" + // Pos:3893 Instruction:"VPSRAVD Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x46 /r"/"RAVM" { .Instruction = ND_INS_VPSRAVD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1676, + .Mnemonic = 1711, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -107822,6 +112957,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -107837,12 +112973,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3849 Instruction:"VPSRAVD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0x46 /r"/"RVM" + // Pos:3894 Instruction:"VPSRAVD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0x46 /r"/"RVM" { .Instruction = ND_INS_VPSRAVD, .Category = ND_CAT_AVX2, .IsaSet = ND_SET_AVX2, - .Mnemonic = 1676, + .Mnemonic = 1711, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -107851,6 +112987,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -107865,12 +113002,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3850 Instruction:"VPSRAVQ Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x46 /r"/"RAVM" + // Pos:3895 Instruction:"VPSRAVQ Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x46 /r"/"RAVM" { .Instruction = ND_INS_VPSRAVQ, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1677, + .Mnemonic = 1712, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -107879,6 +113016,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -107894,12 +113032,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3851 Instruction:"VPSRAVW Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:2 p:1 l:x w:1 0x11 /r"/"RAVM" + // Pos:3896 Instruction:"VPSRAVW Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:2 p:1 l:x w:1 0x11 /r"/"RAVM" { .Instruction = ND_INS_VPSRAVW, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1678, + .Mnemonic = 1713, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -107908,6 +113046,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -107923,12 +113062,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3852 Instruction:"VPSRAW Hfv{K}{z},aKq,Wfv,Ib" Encoding:"evex m:1 p:1 l:x w:i 0x71 /4 ib"/"VAMI" + // Pos:3897 Instruction:"VPSRAW Hfv{K}{z},aKq,Wfv,Ib" Encoding:"evex m:1 p:1 l:x w:i 0x71 /4 ib"/"VAMI" { .Instruction = ND_INS_VPSRAW, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1679, + .Mnemonic = 1714, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -107937,6 +113076,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -107952,12 +113092,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3853 Instruction:"VPSRAW Vfv{K}{z},aKq,Hfv,Wdq" Encoding:"evex m:1 p:1 l:x w:i 0xE1 /r"/"RAVM" + // Pos:3898 Instruction:"VPSRAW Vfv{K}{z},aKq,Hfv,Wdq" Encoding:"evex m:1 p:1 l:x w:i 0xE1 /r"/"RAVM" { .Instruction = ND_INS_VPSRAW, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1679, + .Mnemonic = 1714, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -107966,6 +113106,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -107981,12 +113122,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3854 Instruction:"VPSRAW Hx,Ux,Ib" Encoding:"vex m:1 p:1 l:x w:i 0x71 /4:reg ib"/"VMI" + // Pos:3899 Instruction:"VPSRAW Hx,Ux,Ib" Encoding:"vex m:1 p:1 l:x w:i 0x71 /4:reg ib"/"VMI" { .Instruction = ND_INS_VPSRAW, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1679, + .Mnemonic = 1714, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -107995,6 +113136,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_7, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -108009,12 +113151,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3855 Instruction:"VPSRAW Vx,Hx,Wdq" Encoding:"vex m:1 p:1 l:x w:i 0xE1 /r"/"RVM" + // Pos:3900 Instruction:"VPSRAW Vx,Hx,Wdq" Encoding:"vex m:1 p:1 l:x w:i 0xE1 /r"/"RVM" { .Instruction = ND_INS_VPSRAW, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1679, + .Mnemonic = 1714, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -108023,6 +113165,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -108037,12 +113180,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3856 Instruction:"VPSRLD Hfv{K}{z},aKq,Wfv|B32,Ib" Encoding:"evex m:1 p:1 l:x w:0 0x72 /2 ib"/"VAMI" + // Pos:3901 Instruction:"VPSRLD Hfv{K}{z},aKq,Wfv|B32,Ib" Encoding:"evex m:1 p:1 l:x w:0 0x72 /2 ib"/"VAMI" { .Instruction = ND_INS_VPSRLD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1680, + .Mnemonic = 1715, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -108051,6 +113194,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -108066,12 +113210,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3857 Instruction:"VPSRLD Vfv{K}{z},aKq,Hfv,Wdq" Encoding:"evex m:1 p:1 l:x w:0 0xD2 /r"/"RAVM" + // Pos:3902 Instruction:"VPSRLD Vfv{K}{z},aKq,Hfv,Wdq" Encoding:"evex m:1 p:1 l:x w:0 0xD2 /r"/"RAVM" { .Instruction = ND_INS_VPSRLD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1680, + .Mnemonic = 1715, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -108080,6 +113224,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NFnb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -108095,12 +113240,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3858 Instruction:"VPSRLD Hx,Ux,Ib" Encoding:"vex m:1 p:1 l:x w:i 0x72 /2:reg ib"/"VMI" + // Pos:3903 Instruction:"VPSRLD Hx,Ux,Ib" Encoding:"vex m:1 p:1 l:x w:i 0x72 /2:reg ib"/"VMI" { .Instruction = ND_INS_VPSRLD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1680, + .Mnemonic = 1715, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -108109,6 +113254,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_7, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -108123,12 +113269,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3859 Instruction:"VPSRLD Vx,Hx,Wdq" Encoding:"vex m:1 p:1 l:x w:i 0xD2 /r"/"RVM" + // Pos:3904 Instruction:"VPSRLD Vx,Hx,Wdq" Encoding:"vex m:1 p:1 l:x w:i 0xD2 /r"/"RVM" { .Instruction = ND_INS_VPSRLD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1680, + .Mnemonic = 1715, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -108137,6 +113283,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -108151,12 +113298,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3860 Instruction:"VPSRLDQ Hfv,Wfv,Ib" Encoding:"evex m:1 p:1 l:x w:i 0x73 /3 ib"/"VMI" + // Pos:3905 Instruction:"VPSRLDQ Hfv,Wfv,Ib" Encoding:"evex m:1 p:1 l:x w:i 0x73 /3 ib"/"VMI" { .Instruction = ND_INS_VPSRLDQ, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1681, + .Mnemonic = 1716, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -108165,6 +113312,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NFnb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -108179,12 +113327,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3861 Instruction:"VPSRLDQ Hx,Ux,Ib" Encoding:"vex m:1 p:1 l:x w:i 0x73 /3:reg ib"/"VMI" + // Pos:3906 Instruction:"VPSRLDQ Hx,Ux,Ib" Encoding:"vex m:1 p:1 l:x w:i 0x73 /3:reg ib"/"VMI" { .Instruction = ND_INS_VPSRLDQ, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1681, + .Mnemonic = 1716, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -108193,6 +113341,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_7, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -108207,12 +113356,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3862 Instruction:"VPSRLQ Hfv{K}{z},aKq,Wfv|B64,Ib" Encoding:"evex m:1 p:1 l:x w:1 0x73 /2 ib"/"VAMI" + // Pos:3907 Instruction:"VPSRLQ Hfv{K}{z},aKq,Wfv|B64,Ib" Encoding:"evex m:1 p:1 l:x w:1 0x73 /2 ib"/"VAMI" { .Instruction = ND_INS_VPSRLQ, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1682, + .Mnemonic = 1717, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -108221,6 +113370,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -108236,12 +113386,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3863 Instruction:"VPSRLQ Vfv{K}{z},aKq,Hfv,Wdq" Encoding:"evex m:1 p:1 l:x w:1 0xD3 /r"/"RAVM" + // Pos:3908 Instruction:"VPSRLQ Vfv{K}{z},aKq,Hfv,Wdq" Encoding:"evex m:1 p:1 l:x w:1 0xD3 /r"/"RAVM" { .Instruction = ND_INS_VPSRLQ, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1682, + .Mnemonic = 1717, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -108250,6 +113400,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NFnb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -108265,12 +113416,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3864 Instruction:"VPSRLQ Hx,Ux,Ib" Encoding:"vex m:1 p:1 l:x w:i 0x73 /2:reg ib"/"VMI" + // Pos:3909 Instruction:"VPSRLQ Hx,Ux,Ib" Encoding:"vex m:1 p:1 l:x w:i 0x73 /2:reg ib"/"VMI" { .Instruction = ND_INS_VPSRLQ, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1682, + .Mnemonic = 1717, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -108279,6 +113430,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_7, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -108293,12 +113445,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3865 Instruction:"VPSRLQ Vx,Hx,Wdq" Encoding:"vex m:1 p:1 l:x w:i 0xD3 /r"/"RVM" + // Pos:3910 Instruction:"VPSRLQ Vx,Hx,Wdq" Encoding:"vex m:1 p:1 l:x w:i 0xD3 /r"/"RVM" { .Instruction = ND_INS_VPSRLQ, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1682, + .Mnemonic = 1717, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -108307,6 +113459,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -108321,12 +113474,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3866 Instruction:"VPSRLVD Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x45 /r"/"RAVM" + // Pos:3911 Instruction:"VPSRLVD Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x45 /r"/"RAVM" { .Instruction = ND_INS_VPSRLVD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1683, + .Mnemonic = 1718, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -108335,6 +113488,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -108350,12 +113504,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3867 Instruction:"VPSRLVD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0x45 /r"/"RVM" + // Pos:3912 Instruction:"VPSRLVD Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0x45 /r"/"RVM" { .Instruction = ND_INS_VPSRLVD, .Category = ND_CAT_AVX2, .IsaSet = ND_SET_AVX2, - .Mnemonic = 1683, + .Mnemonic = 1718, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -108364,6 +113518,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -108378,12 +113533,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3868 Instruction:"VPSRLVQ Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x45 /r"/"RAVM" + // Pos:3913 Instruction:"VPSRLVQ Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x45 /r"/"RAVM" { .Instruction = ND_INS_VPSRLVQ, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1684, + .Mnemonic = 1719, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -108392,6 +113547,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -108407,12 +113563,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3869 Instruction:"VPSRLVQ Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:1 0x45 /r"/"RVM" + // Pos:3914 Instruction:"VPSRLVQ Vx,Hx,Wx" Encoding:"vex m:2 p:1 l:x w:1 0x45 /r"/"RVM" { .Instruction = ND_INS_VPSRLVQ, .Category = ND_CAT_AVX2, .IsaSet = ND_SET_AVX2, - .Mnemonic = 1684, + .Mnemonic = 1719, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -108421,6 +113577,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -108435,12 +113592,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3870 Instruction:"VPSRLVW Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:2 p:1 l:x w:1 0x10 /r"/"RAVM" + // Pos:3915 Instruction:"VPSRLVW Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:2 p:1 l:x w:1 0x10 /r"/"RAVM" { .Instruction = ND_INS_VPSRLVW, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1685, + .Mnemonic = 1720, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -108449,6 +113606,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -108464,12 +113622,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3871 Instruction:"VPSRLW Hfv{K}{z},aKq,Wfv,Ib" Encoding:"evex m:1 p:1 l:x w:i 0x71 /2 ib"/"VAMI" + // Pos:3916 Instruction:"VPSRLW Hfv{K}{z},aKq,Wfv,Ib" Encoding:"evex m:1 p:1 l:x w:i 0x71 /2 ib"/"VAMI" { .Instruction = ND_INS_VPSRLW, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1686, + .Mnemonic = 1721, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -108478,6 +113636,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -108493,12 +113652,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3872 Instruction:"VPSRLW Vfv{K}{z},aKq,Hfv,Wdq" Encoding:"evex m:1 p:1 l:x w:i 0xD1 /r"/"RAVM" + // Pos:3917 Instruction:"VPSRLW Vfv{K}{z},aKq,Hfv,Wdq" Encoding:"evex m:1 p:1 l:x w:i 0xD1 /r"/"RAVM" { .Instruction = ND_INS_VPSRLW, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1686, + .Mnemonic = 1721, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -108507,6 +113666,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -108522,12 +113682,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3873 Instruction:"VPSRLW Hx,Ux,Ib" Encoding:"vex m:1 p:1 l:x w:i 0x71 /2:reg ib"/"VMI" + // Pos:3918 Instruction:"VPSRLW Hx,Ux,Ib" Encoding:"vex m:1 p:1 l:x w:i 0x71 /2:reg ib"/"VMI" { .Instruction = ND_INS_VPSRLW, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1686, + .Mnemonic = 1721, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -108536,6 +113696,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_7, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -108550,12 +113711,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3874 Instruction:"VPSRLW Vx,Hx,Wdq" Encoding:"vex m:1 p:1 l:x w:i 0xD1 /r"/"RVM" + // Pos:3919 Instruction:"VPSRLW Vx,Hx,Wdq" Encoding:"vex m:1 p:1 l:x w:i 0xD1 /r"/"RVM" { .Instruction = ND_INS_VPSRLW, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1686, + .Mnemonic = 1721, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -108564,6 +113725,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -108578,12 +113740,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3875 Instruction:"VPSUBB Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0xF8 /r"/"RAVM" + // Pos:3920 Instruction:"VPSUBB Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0xF8 /r"/"RAVM" { .Instruction = ND_INS_VPSUBB, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1687, + .Mnemonic = 1722, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -108592,6 +113754,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -108607,12 +113770,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3876 Instruction:"VPSUBB Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xF8 /r"/"RVM" + // Pos:3921 Instruction:"VPSUBB Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xF8 /r"/"RVM" { .Instruction = ND_INS_VPSUBB, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1687, + .Mnemonic = 1722, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -108621,6 +113784,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -108635,12 +113799,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3877 Instruction:"VPSUBD Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:1 p:1 l:x w:0 0xFA /r"/"RAVM" + // Pos:3922 Instruction:"VPSUBD Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:1 p:1 l:x w:0 0xFA /r"/"RAVM" { .Instruction = ND_INS_VPSUBD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1688, + .Mnemonic = 1723, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -108649,6 +113813,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -108664,12 +113829,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3878 Instruction:"VPSUBD Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xFA /r"/"RVM" + // Pos:3923 Instruction:"VPSUBD Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xFA /r"/"RVM" { .Instruction = ND_INS_VPSUBD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1688, + .Mnemonic = 1723, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -108678,6 +113843,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -108692,12 +113858,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3879 Instruction:"VPSUBQ Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:1 p:1 l:x w:1 0xFB /r"/"RAVM" + // Pos:3924 Instruction:"VPSUBQ Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:1 p:1 l:x w:1 0xFB /r"/"RAVM" { .Instruction = ND_INS_VPSUBQ, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1689, + .Mnemonic = 1724, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -108706,6 +113872,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -108721,12 +113888,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3880 Instruction:"VPSUBQ Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xFB /r"/"RVM" + // Pos:3925 Instruction:"VPSUBQ Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xFB /r"/"RVM" { .Instruction = ND_INS_VPSUBQ, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1689, + .Mnemonic = 1724, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -108735,6 +113902,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -108749,12 +113917,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3881 Instruction:"VPSUBSB Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0xE8 /r"/"RAVM" + // Pos:3926 Instruction:"VPSUBSB Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0xE8 /r"/"RAVM" { .Instruction = ND_INS_VPSUBSB, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1690, + .Mnemonic = 1725, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -108763,6 +113931,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -108778,12 +113947,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3882 Instruction:"VPSUBSB Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xE8 /r"/"RVM" + // Pos:3927 Instruction:"VPSUBSB Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xE8 /r"/"RVM" { .Instruction = ND_INS_VPSUBSB, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1690, + .Mnemonic = 1725, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -108792,6 +113961,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -108806,12 +113976,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3883 Instruction:"VPSUBSW Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0xE9 /r"/"RAVM" + // Pos:3928 Instruction:"VPSUBSW Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0xE9 /r"/"RAVM" { .Instruction = ND_INS_VPSUBSW, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1691, + .Mnemonic = 1726, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -108820,6 +113990,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -108835,12 +114006,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3884 Instruction:"VPSUBSW Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xE9 /r"/"RVM" + // Pos:3929 Instruction:"VPSUBSW Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xE9 /r"/"RVM" { .Instruction = ND_INS_VPSUBSW, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1691, + .Mnemonic = 1726, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -108849,6 +114020,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -108863,12 +114035,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3885 Instruction:"VPSUBUSB Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0xD8 /r"/"RAVM" + // Pos:3930 Instruction:"VPSUBUSB Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0xD8 /r"/"RAVM" { .Instruction = ND_INS_VPSUBUSB, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1692, + .Mnemonic = 1727, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -108877,6 +114049,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -108892,12 +114065,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3886 Instruction:"VPSUBUSB Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xD8 /r"/"RVM" + // Pos:3931 Instruction:"VPSUBUSB Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xD8 /r"/"RVM" { .Instruction = ND_INS_VPSUBUSB, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1692, + .Mnemonic = 1727, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -108906,6 +114079,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -108920,12 +114094,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3887 Instruction:"VPSUBUSW Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0xD9 /r"/"RAVM" + // Pos:3932 Instruction:"VPSUBUSW Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0xD9 /r"/"RAVM" { .Instruction = ND_INS_VPSUBUSW, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1693, + .Mnemonic = 1728, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -108934,6 +114108,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -108949,12 +114124,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3888 Instruction:"VPSUBUSW Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xD9 /r"/"RVM" + // Pos:3933 Instruction:"VPSUBUSW Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xD9 /r"/"RVM" { .Instruction = ND_INS_VPSUBUSW, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1693, + .Mnemonic = 1728, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -108963,6 +114138,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -108977,12 +114153,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3889 Instruction:"VPSUBW Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0xF9 /r"/"RAVM" + // Pos:3934 Instruction:"VPSUBW Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0xF9 /r"/"RAVM" { .Instruction = ND_INS_VPSUBW, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1694, + .Mnemonic = 1729, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -108991,6 +114167,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -109006,12 +114183,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3890 Instruction:"VPSUBW Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xF9 /r"/"RVM" + // Pos:3935 Instruction:"VPSUBW Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xF9 /r"/"RVM" { .Instruction = ND_INS_VPSUBW, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1694, + .Mnemonic = 1729, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -109020,6 +114197,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -109034,12 +114212,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3891 Instruction:"VPTERNLOGD Vfv{K}{z},aKq,Hfv,Wfv|B32,Ib" Encoding:"evex m:3 p:1 l:x w:0 0x25 /r ib"/"RAVMI" + // Pos:3936 Instruction:"VPTERNLOGD Vfv{K}{z},aKq,Hfv,Wfv|B32,Ib" Encoding:"evex m:3 p:1 l:x w:0 0x25 /r ib"/"RAVMI" { .Instruction = ND_INS_VPTERNLOGD, .Category = ND_CAT_LOGICAL, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1695, + .Mnemonic = 1730, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -109048,6 +114226,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -109064,12 +114243,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3892 Instruction:"VPTERNLOGQ Vfv{K}{z},aKq,Hfv,Wfv|B64,Ib" Encoding:"evex m:3 p:1 l:x w:1 0x25 /r ib"/"RAVMI" + // Pos:3937 Instruction:"VPTERNLOGQ Vfv{K}{z},aKq,Hfv,Wfv|B64,Ib" Encoding:"evex m:3 p:1 l:x w:1 0x25 /r ib"/"RAVMI" { .Instruction = ND_INS_VPTERNLOGQ, .Category = ND_CAT_LOGICAL, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1696, + .Mnemonic = 1731, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -109078,6 +114257,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -109094,12 +114274,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3893 Instruction:"VPTEST Vx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x17 /r"/"RM" + // Pos:3938 Instruction:"VPTEST Vx,Wx" Encoding:"vex m:2 p:1 l:x w:i 0x17 /r"/"RM" { .Instruction = ND_INS_VPTEST, .Category = ND_CAT_LOGICAL, .IsaSet = ND_SET_AVX, - .Mnemonic = 1697, + .Mnemonic = 1732, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -109108,6 +114288,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .SetFlags = 0, @@ -109122,12 +114303,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3894 Instruction:"VPTESTMB rKq{K},aKq,Hfv,Wfv" Encoding:"evex m:2 p:1 l:x w:0 0x26 /r"/"RAVM" + // Pos:3939 Instruction:"VPTESTMB rKq{K},aKq,Hfv,Wfv" Encoding:"evex m:2 p:1 l:x w:0 0x26 /r"/"RAVM" { .Instruction = ND_INS_VPTESTMB, .Category = ND_CAT_LOGICAL, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1698, + .Mnemonic = 1733, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK, @@ -109136,6 +114317,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -109151,12 +114333,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3895 Instruction:"VPTESTMD rKq{K},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x27 /r"/"RAVM" + // Pos:3940 Instruction:"VPTESTMD rKq{K},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x27 /r"/"RAVM" { .Instruction = ND_INS_VPTESTMD, .Category = ND_CAT_LOGICAL, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1699, + .Mnemonic = 1734, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_BROADCAST, @@ -109165,6 +114347,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -109180,12 +114363,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3896 Instruction:"VPTESTMQ rKq{K},aKq,Hfv,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x27 /r"/"RAVM" + // Pos:3941 Instruction:"VPTESTMQ rKq{K},aKq,Hfv,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x27 /r"/"RAVM" { .Instruction = ND_INS_VPTESTMQ, .Category = ND_CAT_LOGICAL, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1700, + .Mnemonic = 1735, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_BROADCAST, @@ -109194,6 +114377,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -109209,12 +114393,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3897 Instruction:"VPTESTMW rKq{K},aKq,Hfv,Wfv" Encoding:"evex m:2 p:1 l:x w:1 0x26 /r"/"RAVM" + // Pos:3942 Instruction:"VPTESTMW rKq{K},aKq,Hfv,Wfv" Encoding:"evex m:2 p:1 l:x w:1 0x26 /r"/"RAVM" { .Instruction = ND_INS_VPTESTMW, .Category = ND_CAT_LOGICAL, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1701, + .Mnemonic = 1736, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK, @@ -109223,6 +114407,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -109238,12 +114423,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3898 Instruction:"VPTESTNMB rKq{K},aKq,Hfv,Wfv" Encoding:"evex m:2 p:2 l:x w:0 0x26 /r"/"RAVM" + // Pos:3943 Instruction:"VPTESTNMB rKq{K},aKq,Hfv,Wfv" Encoding:"evex m:2 p:2 l:x w:0 0x26 /r"/"RAVM" { .Instruction = ND_INS_VPTESTNMB, .Category = ND_CAT_LOGICAL, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1702, + .Mnemonic = 1737, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK, @@ -109252,6 +114437,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -109267,12 +114453,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3899 Instruction:"VPTESTNMD rKq{K},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:2 l:x w:0 0x27 /r"/"RAVM" + // Pos:3944 Instruction:"VPTESTNMD rKq{K},aKq,Hfv,Wfv|B32" Encoding:"evex m:2 p:2 l:x w:0 0x27 /r"/"RAVM" { .Instruction = ND_INS_VPTESTNMD, .Category = ND_CAT_LOGICAL, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1703, + .Mnemonic = 1738, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_BROADCAST, @@ -109281,6 +114467,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -109296,12 +114483,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3900 Instruction:"VPTESTNMQ rKq{K},aKq,Hfv,Wfv|B64" Encoding:"evex m:2 p:2 l:x w:1 0x27 /r"/"RAVM" + // Pos:3945 Instruction:"VPTESTNMQ rKq{K},aKq,Hfv,Wfv|B64" Encoding:"evex m:2 p:2 l:x w:1 0x27 /r"/"RAVM" { .Instruction = ND_INS_VPTESTNMQ, .Category = ND_CAT_LOGICAL, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1704, + .Mnemonic = 1739, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_BROADCAST, @@ -109310,6 +114497,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -109325,12 +114513,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3901 Instruction:"VPTESTNMW rKq{K},aKq,Hfv,Wfv" Encoding:"evex m:2 p:2 l:x w:1 0x26 /r"/"RAVM" + // Pos:3946 Instruction:"VPTESTNMW rKq{K},aKq,Hfv,Wfv" Encoding:"evex m:2 p:2 l:x w:1 0x26 /r"/"RAVM" { .Instruction = ND_INS_VPTESTNMW, .Category = ND_CAT_LOGICAL, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1705, + .Mnemonic = 1740, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK, @@ -109339,6 +114527,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4nb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -109354,12 +114543,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3902 Instruction:"VPUNPCKHBW Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0x68 /r"/"RAVM" + // Pos:3947 Instruction:"VPUNPCKHBW Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0x68 /r"/"RAVM" { .Instruction = ND_INS_VPUNPCKHBW, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1706, + .Mnemonic = 1741, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -109368,6 +114557,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NFnb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -109383,12 +114573,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3903 Instruction:"VPUNPCKHBW Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0x68 /r"/"RVM" + // Pos:3948 Instruction:"VPUNPCKHBW Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0x68 /r"/"RVM" { .Instruction = ND_INS_VPUNPCKHBW, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1706, + .Mnemonic = 1741, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -109397,6 +114587,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -109411,12 +114602,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3904 Instruction:"VPUNPCKHDQ Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:1 p:1 l:x w:0 0x6A /r"/"RAVM" + // Pos:3949 Instruction:"VPUNPCKHDQ Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:1 p:1 l:x w:0 0x6A /r"/"RAVM" { .Instruction = ND_INS_VPUNPCKHDQ, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1707, + .Mnemonic = 1742, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -109425,6 +114616,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -109440,12 +114632,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3905 Instruction:"VPUNPCKHDQ Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0x6A /r"/"RVM" + // Pos:3950 Instruction:"VPUNPCKHDQ Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0x6A /r"/"RVM" { .Instruction = ND_INS_VPUNPCKHDQ, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1707, + .Mnemonic = 1742, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -109454,6 +114646,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -109468,12 +114661,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3906 Instruction:"VPUNPCKHQDQ Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:1 p:1 l:x w:1 0x6D /r"/"RAVM" + // Pos:3951 Instruction:"VPUNPCKHQDQ Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:1 p:1 l:x w:1 0x6D /r"/"RAVM" { .Instruction = ND_INS_VPUNPCKHQDQ, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1708, + .Mnemonic = 1743, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -109482,6 +114675,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -109497,12 +114691,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3907 Instruction:"VPUNPCKHQDQ Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0x6D /r"/"RVM" + // Pos:3952 Instruction:"VPUNPCKHQDQ Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0x6D /r"/"RVM" { .Instruction = ND_INS_VPUNPCKHQDQ, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1708, + .Mnemonic = 1743, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -109511,6 +114705,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -109525,12 +114720,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3908 Instruction:"VPUNPCKHWD Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0x69 /r"/"RAVM" + // Pos:3953 Instruction:"VPUNPCKHWD Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:i 0x69 /r"/"RAVM" { .Instruction = ND_INS_VPUNPCKHWD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1709, + .Mnemonic = 1744, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -109539,6 +114734,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NFnb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -109554,12 +114750,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3909 Instruction:"VPUNPCKHWD Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0x69 /r"/"RVM" + // Pos:3954 Instruction:"VPUNPCKHWD Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0x69 /r"/"RVM" { .Instruction = ND_INS_VPUNPCKHWD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1709, + .Mnemonic = 1744, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -109568,6 +114764,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -109582,12 +114779,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3910 Instruction:"VPUNPCKLBW Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:x 0x60 /r"/"RAVM" + // Pos:3955 Instruction:"VPUNPCKLBW Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:x 0x60 /r"/"RAVM" { .Instruction = ND_INS_VPUNPCKLBW, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1710, + .Mnemonic = 1745, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -109596,6 +114793,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NFnb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -109611,12 +114809,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3911 Instruction:"VPUNPCKLBW Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0x60 /r"/"RVM" + // Pos:3956 Instruction:"VPUNPCKLBW Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0x60 /r"/"RVM" { .Instruction = ND_INS_VPUNPCKLBW, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1710, + .Mnemonic = 1745, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -109625,6 +114823,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -109639,12 +114838,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3912 Instruction:"VPUNPCKLDQ Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:1 p:1 l:x w:0 0x62 /r"/"RAVM" + // Pos:3957 Instruction:"VPUNPCKLDQ Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:1 p:1 l:x w:0 0x62 /r"/"RAVM" { .Instruction = ND_INS_VPUNPCKLDQ, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1711, + .Mnemonic = 1746, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -109653,6 +114852,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -109668,12 +114868,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3913 Instruction:"VPUNPCKLDQ Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0x62 /r"/"RVM" + // Pos:3958 Instruction:"VPUNPCKLDQ Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0x62 /r"/"RVM" { .Instruction = ND_INS_VPUNPCKLDQ, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1711, + .Mnemonic = 1746, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -109682,6 +114882,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -109696,12 +114897,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3914 Instruction:"VPUNPCKLQDQ Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:1 p:1 l:x w:1 0x6C /r"/"RAVM" + // Pos:3959 Instruction:"VPUNPCKLQDQ Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:1 p:1 l:x w:1 0x6C /r"/"RAVM" { .Instruction = ND_INS_VPUNPCKLQDQ, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1712, + .Mnemonic = 1747, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -109710,6 +114911,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -109725,12 +114927,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3915 Instruction:"VPUNPCKLQDQ Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0x6C /r"/"RVM" + // Pos:3960 Instruction:"VPUNPCKLQDQ Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0x6C /r"/"RVM" { .Instruction = ND_INS_VPUNPCKLQDQ, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1712, + .Mnemonic = 1747, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -109739,6 +114941,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -109753,12 +114956,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3916 Instruction:"VPUNPCKLWD Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:x 0x61 /r"/"RAVM" + // Pos:3961 Instruction:"VPUNPCKLWD Vfv{K}{z},aKq,Hfv,Wfv" Encoding:"evex m:1 p:1 l:x w:x 0x61 /r"/"RAVM" { .Instruction = ND_INS_VPUNPCKLWD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512BW, - .Mnemonic = 1713, + .Mnemonic = 1748, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -109767,6 +114970,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NFnb, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -109782,12 +114986,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3917 Instruction:"VPUNPCKLWD Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0x61 /r"/"RVM" + // Pos:3962 Instruction:"VPUNPCKLWD Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0x61 /r"/"RVM" { .Instruction = ND_INS_VPUNPCKLWD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1713, + .Mnemonic = 1748, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -109796,6 +115000,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -109810,12 +115015,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3918 Instruction:"VPXOR Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xEF /r"/"RVM" + // Pos:3963 Instruction:"VPXOR Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0xEF /r"/"RVM" { .Instruction = ND_INS_VPXOR, .Category = ND_CAT_LOGICAL, .IsaSet = ND_SET_AVX, - .Mnemonic = 1714, + .Mnemonic = 1749, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -109824,6 +115029,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -109838,12 +115044,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3919 Instruction:"VPXORD Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:1 p:1 l:x w:0 0xEF /r"/"RAVM" + // Pos:3964 Instruction:"VPXORD Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:1 p:1 l:x w:0 0xEF /r"/"RAVM" { .Instruction = ND_INS_VPXORD, .Category = ND_CAT_LOGICAL, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1715, + .Mnemonic = 1750, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -109852,6 +115058,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -109867,12 +115074,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3920 Instruction:"VPXORQ Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:1 p:1 l:x w:1 0xEF /r"/"RAVM" + // Pos:3965 Instruction:"VPXORQ Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:1 p:1 l:x w:1 0xEF /r"/"RAVM" { .Instruction = ND_INS_VPXORQ, .Category = ND_CAT_LOGICAL, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1716, + .Mnemonic = 1751, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -109881,6 +115088,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -109896,12 +115104,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3921 Instruction:"VRANGEPD Vfv{K}{z},aKq,Hfv,Wfv|B64{sae},Ib" Encoding:"evex m:3 p:1 l:x w:1 0x50 /r ib"/"RAVMI" + // Pos:3966 Instruction:"VRANGEPD Vfv{K}{z},aKq,Hfv,Wfv|B64{sae},Ib" Encoding:"evex m:3 p:1 l:x w:1 0x50 /r ib"/"RAVMI" { .Instruction = ND_INS_VRANGEPD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512DQ, - .Mnemonic = 1717, + .Mnemonic = 1752, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -109910,6 +115118,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -109926,12 +115135,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3922 Instruction:"VRANGEPS Vfv{K}{z},aKq,Hfv,Wfv|B32{sae},Ib" Encoding:"evex m:3 p:1 l:x w:0 0x50 /r ib"/"RAVMI" + // Pos:3967 Instruction:"VRANGEPS Vfv{K}{z},aKq,Hfv,Wfv|B32{sae},Ib" Encoding:"evex m:3 p:1 l:x w:0 0x50 /r ib"/"RAVMI" { .Instruction = ND_INS_VRANGEPS, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512DQ, - .Mnemonic = 1718, + .Mnemonic = 1753, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -109940,6 +115149,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -109956,12 +115166,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3923 Instruction:"VRANGESD Vdq{K}{z},aKq,Hdq,Wsd{sae},Ib" Encoding:"evex m:3 p:1 l:i w:1 0x51 /r ib"/"RAVMI" + // Pos:3968 Instruction:"VRANGESD Vdq{K}{z},aKq,Hdq,Wsd{sae},Ib" Encoding:"evex m:3 p:1 l:i w:1 0x51 /r ib"/"RAVMI" { .Instruction = ND_INS_VRANGESD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512DQ, - .Mnemonic = 1719, + .Mnemonic = 1754, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE, @@ -109970,6 +115180,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -109986,12 +115197,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3924 Instruction:"VRANGESS Vdq{K}{z},aKq,Hdq,Wss{sae},Ib" Encoding:"evex m:3 p:1 l:i w:0 0x51 /r ib"/"RAVMI" + // Pos:3969 Instruction:"VRANGESS Vdq{K}{z},aKq,Hdq,Wss{sae},Ib" Encoding:"evex m:3 p:1 l:i w:0 0x51 /r ib"/"RAVMI" { .Instruction = ND_INS_VRANGESS, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512DQ, - .Mnemonic = 1720, + .Mnemonic = 1755, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE, @@ -110000,6 +115211,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -110016,12 +115228,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3925 Instruction:"VRCP14PD Vfv{K}{z},aKq,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x4C /r"/"RAM" + // Pos:3970 Instruction:"VRCP14PD Vfv{K}{z},aKq,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x4C /r"/"RAM" { .Instruction = ND_INS_VRCP14PD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1721, + .Mnemonic = 1756, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -110030,6 +115242,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -110044,12 +115257,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3926 Instruction:"VRCP14PS Vfv{K}{z},aKq,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x4C /r"/"RAM" + // Pos:3971 Instruction:"VRCP14PS Vfv{K}{z},aKq,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x4C /r"/"RAM" { .Instruction = ND_INS_VRCP14PS, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1722, + .Mnemonic = 1757, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -110058,6 +115271,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -110072,12 +115286,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3927 Instruction:"VRCP14SD Vdq{K}{z},aKq,Hdq,Wsd" Encoding:"evex m:2 p:1 l:x w:1 0x4D /r"/"RAVM" + // Pos:3972 Instruction:"VRCP14SD Vdq{K}{z},aKq,Hdq,Wsd" Encoding:"evex m:2 p:1 l:x w:1 0x4D /r"/"RAVM" { .Instruction = ND_INS_VRCP14SD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1723, + .Mnemonic = 1758, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -110086,6 +115300,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E10, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -110101,12 +115316,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3928 Instruction:"VRCP14SS Vdq{K}{z},aKq,Hdq,Wss" Encoding:"evex m:2 p:1 l:x w:0 0x4D /r"/"RAVM" + // Pos:3973 Instruction:"VRCP14SS Vdq{K}{z},aKq,Hdq,Wss" Encoding:"evex m:2 p:1 l:x w:0 0x4D /r"/"RAVM" { .Instruction = ND_INS_VRCP14SS, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1724, + .Mnemonic = 1759, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -110115,6 +115330,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E10, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -110130,12 +115346,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3929 Instruction:"VRCP28PD Voq{K}{z},aKq,Woq|B64{sae}" Encoding:"evex m:2 p:1 l:2 w:1 0xCA /r"/"RAM" + // Pos:3974 Instruction:"VRCP28PD Voq{K}{z},aKq,Woq|B64{sae}" Encoding:"evex m:2 p:1 l:2 w:1 0xCA /r"/"RAM" { .Instruction = ND_INS_VRCP28PD, .Category = ND_CAT_KNL, .IsaSet = ND_SET_AVX512ER, - .Mnemonic = 1725, + .Mnemonic = 1760, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -110144,6 +115360,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_ZE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -110158,12 +115375,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3930 Instruction:"VRCP28PS Voq{K}{z},aKq,Woq|B32{sae}" Encoding:"evex m:2 p:1 l:2 w:0 0xCA /r"/"RAM" + // Pos:3975 Instruction:"VRCP28PS Voq{K}{z},aKq,Woq|B32{sae}" Encoding:"evex m:2 p:1 l:2 w:0 0xCA /r"/"RAM" { .Instruction = ND_INS_VRCP28PS, .Category = ND_CAT_KNL, .IsaSet = ND_SET_AVX512ER, - .Mnemonic = 1726, + .Mnemonic = 1761, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -110172,6 +115389,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_ZE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -110186,12 +115404,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3931 Instruction:"VRCP28SD Vdq{K}{z},aKq,Hdq,Wsd{sae}" Encoding:"evex m:2 p:1 l:i w:1 0xCB /r"/"RAVM" + // Pos:3976 Instruction:"VRCP28SD Vdq{K}{z},aKq,Hdq,Wsd{sae}" Encoding:"evex m:2 p:1 l:i w:1 0xCB /r"/"RAVM" { .Instruction = ND_INS_VRCP28SD, .Category = ND_CAT_KNL, .IsaSet = ND_SET_AVX512ER, - .Mnemonic = 1727, + .Mnemonic = 1762, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE, @@ -110200,6 +115418,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_ZE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -110215,12 +115434,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3932 Instruction:"VRCP28SS Vdq{K}{z},aKq,Hdq,Wss{sae}" Encoding:"evex m:2 p:1 l:i w:0 0xCB /r"/"RAVM" + // Pos:3977 Instruction:"VRCP28SS Vdq{K}{z},aKq,Hdq,Wss{sae}" Encoding:"evex m:2 p:1 l:i w:0 0xCB /r"/"RAVM" { .Instruction = ND_INS_VRCP28SS, .Category = ND_CAT_KNL, .IsaSet = ND_SET_AVX512ER, - .Mnemonic = 1728, + .Mnemonic = 1763, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE, @@ -110229,6 +115448,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_ZE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -110244,12 +115464,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3933 Instruction:"VRCPPBF16 Vfv{K}{z},aKq,Wfv|B16" Encoding:"evex m:6 p:0 l:x w:0 0x4C /r"/"RAM" + // Pos:3978 Instruction:"VRCPPBF16 Vfv{K}{z},aKq,Wfv|B16" Encoding:"evex m:6 p:0 l:x w:0 0x4C /r"/"RAM" { .Instruction = ND_INS_VRCPPBF16, .Category = ND_CAT_AVX10BF16, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1729, + .Mnemonic = 1764, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -110258,6 +115478,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -110272,12 +115493,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3934 Instruction:"VRCPPH Vfv{K}{z},aKq,Wfv|B16" Encoding:"evex m:6 p:1 l:x w:0 0x4C /r"/"RAM" + // Pos:3979 Instruction:"VRCPPH Vfv{K}{z},aKq,Wfv|B16" Encoding:"evex m:6 p:1 l:x w:0 0x4C /r"/"RAM" { .Instruction = ND_INS_VRCPPH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1730, + .Mnemonic = 1765, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -110286,6 +115507,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -110300,12 +115522,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3935 Instruction:"VRCPPS Vps,Wps" Encoding:"vex m:1 p:0 l:x w:i 0x53 /r"/"RM" + // Pos:3980 Instruction:"VRCPPS Vps,Wps" Encoding:"vex m:1 p:0 l:x w:i 0x53 /r"/"RM" { .Instruction = ND_INS_VRCPPS, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1731, + .Mnemonic = 1766, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -110314,6 +115536,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -110327,12 +115550,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3936 Instruction:"VRCPSH Vdq{K}{z},aKq,Hdq,Wsh" Encoding:"evex m:6 p:1 l:i w:0 0x4D /r"/"RAVM" + // Pos:3981 Instruction:"VRCPSH Vdq{K}{z},aKq,Hdq,Wsh" Encoding:"evex m:6 p:1 l:i w:0 0x4D /r"/"RAVM" { .Instruction = ND_INS_VRCPSH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1732, + .Mnemonic = 1767, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -110341,6 +115564,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E10, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -110356,12 +115580,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3937 Instruction:"VRCPSS Vss,Hss,Wss" Encoding:"vex m:1 p:2 l:i w:i 0x53 /r"/"RVM" + // Pos:3982 Instruction:"VRCPSS Vss,Hss,Wss" Encoding:"vex m:1 p:2 l:i w:i 0x53 /r"/"RVM" { .Instruction = ND_INS_VRCPSS, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1733, + .Mnemonic = 1768, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -110370,6 +115594,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -110384,12 +115609,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3938 Instruction:"VREDUCENEPBF16 Vfv{K}{z},aKq,Wfv|B16,Ib" Encoding:"evex m:3 p:3 l:x w:0 0x56 /r ib"/"RAMI" + // Pos:3983 Instruction:"VREDUCENEPBF16 Vfv{K}{z},aKq,Wfv|B16,Ib" Encoding:"evex m:3 p:3 l:x w:0 0x56 /r ib"/"RAMI" { .Instruction = ND_INS_VREDUCENEPBF16, .Category = ND_CAT_AVX10BF16, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1734, + .Mnemonic = 1769, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -110398,6 +115623,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -110413,12 +115639,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3939 Instruction:"VREDUCEPD Vfv{K}{z},aKq,Wfv|B64{sae},Ib" Encoding:"evex m:3 p:1 l:x w:1 0x56 /r ib"/"RAMI" + // Pos:3984 Instruction:"VREDUCEPD Vfv{K}{z},aKq,Wfv|B64{sae},Ib" Encoding:"evex m:3 p:1 l:x w:1 0x56 /r ib"/"RAMI" { .Instruction = ND_INS_VREDUCEPD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512DQ, - .Mnemonic = 1735, + .Mnemonic = 1770, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -110427,6 +115653,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -110442,12 +115669,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3940 Instruction:"VREDUCEPH Vfv{K}{z},aKq,Wfv|B16{sae},Ib" Encoding:"evex m:3 p:0 l:x w:0 0x56 /r ib"/"RAMI" + // Pos:3985 Instruction:"VREDUCEPH Vfv{K}{z},aKq,Wfv|B16{sae},Ib" Encoding:"evex m:3 p:0 l:x w:0 0x56 /r ib"/"RAMI" { .Instruction = ND_INS_VREDUCEPH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1736, + .Mnemonic = 1771, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -110456,6 +115683,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -110471,12 +115699,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3941 Instruction:"VREDUCEPS Vfv{K}{z},aKq,Wfv|B32{sae},Ib" Encoding:"evex m:3 p:1 l:x w:0 0x56 /r ib"/"RAMI" + // Pos:3986 Instruction:"VREDUCEPS Vfv{K}{z},aKq,Wfv|B32{sae},Ib" Encoding:"evex m:3 p:1 l:x w:0 0x56 /r ib"/"RAMI" { .Instruction = ND_INS_VREDUCEPS, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512DQ, - .Mnemonic = 1737, + .Mnemonic = 1772, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -110485,6 +115713,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -110500,12 +115729,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3942 Instruction:"VREDUCESD Vdq{K}{z},aKq,Hdq,Wsd{sae},Ib" Encoding:"evex m:3 p:1 l:i w:1 0x57 /r ib"/"RAVMI" + // Pos:3987 Instruction:"VREDUCESD Vdq{K}{z},aKq,Hdq,Wsd{sae},Ib" Encoding:"evex m:3 p:1 l:i w:1 0x57 /r ib"/"RAVMI" { .Instruction = ND_INS_VREDUCESD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512DQ, - .Mnemonic = 1738, + .Mnemonic = 1773, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE, @@ -110514,6 +115743,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -110530,12 +115760,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3943 Instruction:"VREDUCESH Vdq{K}{z},aKq,Hdq,Wsh{sae},Ib" Encoding:"evex m:3 p:0 l:i w:0 0x57 /r ib"/"RAVMI" + // Pos:3988 Instruction:"VREDUCESH Vdq{K}{z},aKq,Hdq,Wsh{sae},Ib" Encoding:"evex m:3 p:0 l:i w:0 0x57 /r ib"/"RAVMI" { .Instruction = ND_INS_VREDUCESH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1739, + .Mnemonic = 1774, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE, @@ -110544,6 +115774,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -110560,12 +115791,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3944 Instruction:"VREDUCESS Vdq{K}{z},aKq,Hdq,Wss{sae},Ib" Encoding:"evex m:3 p:1 l:i w:0 0x57 /r ib"/"RAVMI" + // Pos:3989 Instruction:"VREDUCESS Vdq{K}{z},aKq,Hdq,Wss{sae},Ib" Encoding:"evex m:3 p:1 l:i w:0 0x57 /r ib"/"RAVMI" { .Instruction = ND_INS_VREDUCESS, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512DQ, - .Mnemonic = 1740, + .Mnemonic = 1775, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE, @@ -110574,6 +115805,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -110590,12 +115822,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3945 Instruction:"VRNDSCALENEPBF16 Vfv{K}{z},aKq,Wfv|B16,Ib" Encoding:"evex m:3 p:3 l:x w:0 0x08 /r ib"/"RAMI" + // Pos:3990 Instruction:"VRNDSCALENEPBF16 Vfv{K}{z},aKq,Wfv|B16,Ib" Encoding:"evex m:3 p:3 l:x w:0 0x08 /r ib"/"RAMI" { .Instruction = ND_INS_VRNDSCALENEPBF16, .Category = ND_CAT_AVX10BF16, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1741, + .Mnemonic = 1776, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -110604,6 +115836,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -110619,12 +115852,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3946 Instruction:"VRNDSCALEPD Vfv{K}{z},aKq,Wfv|B64{sae},Ib" Encoding:"evex m:3 p:1 l:x w:1 0x09 /r ib"/"RAMI" + // Pos:3991 Instruction:"VRNDSCALEPD Vfv{K}{z},aKq,Wfv|B64{sae},Ib" Encoding:"evex m:3 p:1 l:x w:1 0x09 /r ib"/"RAMI" { .Instruction = ND_INS_VRNDSCALEPD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1742, + .Mnemonic = 1777, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -110633,6 +115866,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -110648,12 +115882,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3947 Instruction:"VRNDSCALEPH Vfv{K}{z},aKq,Wfv|B16{sae},Ib" Encoding:"evex m:3 p:0 l:x w:0 0x08 /r ib"/"RAMI" + // Pos:3992 Instruction:"VRNDSCALEPH Vfv{K}{z},aKq,Wfv|B16{sae},Ib" Encoding:"evex m:3 p:0 l:x w:0 0x08 /r ib"/"RAMI" { .Instruction = ND_INS_VRNDSCALEPH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1743, + .Mnemonic = 1778, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -110662,6 +115896,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE|ND_SIMD_EXC_UE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -110677,12 +115912,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3948 Instruction:"VRNDSCALEPS Vfv{K}{z},aKq,Wfv|B32{sae},Ib" Encoding:"evex m:3 p:1 l:x w:0 0x08 /r ib"/"RAMI" + // Pos:3993 Instruction:"VRNDSCALEPS Vfv{K}{z},aKq,Wfv|B32{sae},Ib" Encoding:"evex m:3 p:1 l:x w:0 0x08 /r ib"/"RAMI" { .Instruction = ND_INS_VRNDSCALEPS, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1744, + .Mnemonic = 1779, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -110691,6 +115926,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -110706,12 +115942,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3949 Instruction:"VRNDSCALESD Vdq{K}{z},aKq,Hdq,Wsd{sae},Ib" Encoding:"evex m:3 p:1 l:i w:1 0x0B /r ib"/"RAVMI" + // Pos:3994 Instruction:"VRNDSCALESD Vdq{K}{z},aKq,Hdq,Wsd{sae},Ib" Encoding:"evex m:3 p:1 l:i w:1 0x0B /r ib"/"RAVMI" { .Instruction = ND_INS_VRNDSCALESD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1745, + .Mnemonic = 1780, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE, @@ -110720,6 +115956,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -110736,12 +115973,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3950 Instruction:"VRNDSCALESH Vdq{K}{z},aKq,Hdq,Wsh{sae},Ib" Encoding:"evex m:3 p:0 l:i w:0 0x0A /r ib"/"RAVMI" + // Pos:3995 Instruction:"VRNDSCALESH Vdq{K}{z},aKq,Hdq,Wsh{sae},Ib" Encoding:"evex m:3 p:0 l:i w:0 0x0A /r ib"/"RAVMI" { .Instruction = ND_INS_VRNDSCALESH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1746, + .Mnemonic = 1781, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE, @@ -110750,6 +115987,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -110766,12 +116004,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3951 Instruction:"VRNDSCALESS Vdq{K}{z},aKq,Hdq,Wss{sae},Ib" Encoding:"evex m:3 p:1 l:i w:0 0x0A /r ib"/"RAVMI" + // Pos:3996 Instruction:"VRNDSCALESS Vdq{K}{z},aKq,Hdq,Wss{sae},Ib" Encoding:"evex m:3 p:1 l:i w:0 0x0A /r ib"/"RAVMI" { .Instruction = ND_INS_VRNDSCALESS, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1747, + .Mnemonic = 1782, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE, @@ -110780,6 +116018,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -110796,12 +116035,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3952 Instruction:"VROUNDPD Vx,Wx,Ib" Encoding:"vex m:3 p:1 l:x w:i 0x09 /r ib"/"RMI" + // Pos:3997 Instruction:"VROUNDPD Vx,Wx,Ib" Encoding:"vex m:3 p:1 l:x w:i 0x09 /r ib"/"RMI" { .Instruction = ND_INS_VROUNDPD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1748, + .Mnemonic = 1783, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -110810,6 +116049,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -110824,12 +116064,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3953 Instruction:"VROUNDPS Vx,Wx,Ib" Encoding:"vex m:3 p:1 l:x w:i 0x08 /r ib"/"RMI" + // Pos:3998 Instruction:"VROUNDPS Vx,Wx,Ib" Encoding:"vex m:3 p:1 l:x w:i 0x08 /r ib"/"RMI" { .Instruction = ND_INS_VROUNDPS, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1749, + .Mnemonic = 1784, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -110838,6 +116078,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -110852,12 +116093,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3954 Instruction:"VROUNDSD Vsd,Hsd,Wsd,Ib" Encoding:"vex m:3 p:1 l:i w:i 0x0B /r ib"/"RVMI" + // Pos:3999 Instruction:"VROUNDSD Vsd,Hsd,Wsd,Ib" Encoding:"vex m:3 p:1 l:i w:i 0x0B /r ib"/"RVMI" { .Instruction = ND_INS_VROUNDSD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1750, + .Mnemonic = 1785, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -110866,6 +116107,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -110881,12 +116123,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3955 Instruction:"VROUNDSS Vss,Hss,Wss,Ib" Encoding:"vex m:3 p:1 l:i w:i 0x0A /r ib"/"RVMI" + // Pos:4000 Instruction:"VROUNDSS Vss,Hss,Wss,Ib" Encoding:"vex m:3 p:1 l:i w:i 0x0A /r ib"/"RVMI" { .Instruction = ND_INS_VROUNDSS, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1751, + .Mnemonic = 1786, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -110895,6 +116137,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -110910,12 +116153,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3956 Instruction:"VRSQRT14PD Vfv{K}{z},aKq,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x4E /r"/"RAM" + // Pos:4001 Instruction:"VRSQRT14PD Vfv{K}{z},aKq,Wfv|B64" Encoding:"evex m:2 p:1 l:x w:1 0x4E /r"/"RAM" { .Instruction = ND_INS_VRSQRT14PD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1752, + .Mnemonic = 1787, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -110924,6 +116167,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -110938,12 +116182,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3957 Instruction:"VRSQRT14PS Vfv{K}{z},aKq,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x4E /r"/"RAM" + // Pos:4002 Instruction:"VRSQRT14PS Vfv{K}{z},aKq,Wfv|B32" Encoding:"evex m:2 p:1 l:x w:0 0x4E /r"/"RAM" { .Instruction = ND_INS_VRSQRT14PS, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1753, + .Mnemonic = 1788, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -110952,6 +116196,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -110966,12 +116211,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3958 Instruction:"VRSQRT14SD Vdq{K}{z},aKq,Hdq,Wsd" Encoding:"evex m:2 p:1 l:x w:1 0x4F /r"/"RAVM" + // Pos:4003 Instruction:"VRSQRT14SD Vdq{K}{z},aKq,Hdq,Wsd" Encoding:"evex m:2 p:1 l:x w:1 0x4F /r"/"RAVM" { .Instruction = ND_INS_VRSQRT14SD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1754, + .Mnemonic = 1789, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -110980,6 +116225,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E10, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -110995,12 +116241,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3959 Instruction:"VRSQRT14SS Vdq{K}{z},aKq,Hdq,Wss" Encoding:"evex m:2 p:1 l:x w:0 0x4F /r"/"RAVM" + // Pos:4004 Instruction:"VRSQRT14SS Vdq{K}{z},aKq,Hdq,Wss" Encoding:"evex m:2 p:1 l:x w:0 0x4F /r"/"RAVM" { .Instruction = ND_INS_VRSQRT14SS, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1755, + .Mnemonic = 1790, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -111009,6 +116255,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E10, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -111024,12 +116271,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3960 Instruction:"VRSQRT28PD Voq{K}{z},aKq,Woq|B64{sae}" Encoding:"evex m:2 p:1 l:2 w:1 0xCC /r"/"RAM" + // Pos:4005 Instruction:"VRSQRT28PD Voq{K}{z},aKq,Woq|B64{sae}" Encoding:"evex m:2 p:1 l:2 w:1 0xCC /r"/"RAM" { .Instruction = ND_INS_VRSQRT28PD, .Category = ND_CAT_KNL, .IsaSet = ND_SET_AVX512ER, - .Mnemonic = 1756, + .Mnemonic = 1791, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -111038,6 +116285,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_ZE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -111052,12 +116300,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3961 Instruction:"VRSQRT28PS Voq{K}{z},aKq,Woq|B32{sae}" Encoding:"evex m:2 p:1 l:2 w:0 0xCC /r"/"RAM" + // Pos:4006 Instruction:"VRSQRT28PS Voq{K}{z},aKq,Woq|B32{sae}" Encoding:"evex m:2 p:1 l:2 w:0 0xCC /r"/"RAM" { .Instruction = ND_INS_VRSQRT28PS, .Category = ND_CAT_KNL, .IsaSet = ND_SET_AVX512ER, - .Mnemonic = 1757, + .Mnemonic = 1792, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -111066,6 +116314,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_ZE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -111080,12 +116329,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3962 Instruction:"VRSQRT28SD Vdq{K}{z},aKq,Hdq,Wsd{sae}" Encoding:"evex m:2 p:1 l:i w:1 0xCD /r"/"RAVM" + // Pos:4007 Instruction:"VRSQRT28SD Vdq{K}{z},aKq,Hdq,Wsd{sae}" Encoding:"evex m:2 p:1 l:i w:1 0xCD /r"/"RAVM" { .Instruction = ND_INS_VRSQRT28SD, .Category = ND_CAT_KNL, .IsaSet = ND_SET_AVX512ER, - .Mnemonic = 1758, + .Mnemonic = 1793, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE, @@ -111094,6 +116343,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_ZE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -111109,12 +116359,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3963 Instruction:"VRSQRT28SS Vdq{K}{z},aKq,Hdq,Wss{sae}" Encoding:"evex m:2 p:1 l:i w:0 0xCD /r"/"RAVM" + // Pos:4008 Instruction:"VRSQRT28SS Vdq{K}{z},aKq,Hdq,Wss{sae}" Encoding:"evex m:2 p:1 l:i w:0 0xCD /r"/"RAVM" { .Instruction = ND_INS_VRSQRT28SS, .Category = ND_CAT_KNL, .IsaSet = ND_SET_AVX512ER, - .Mnemonic = 1759, + .Mnemonic = 1794, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE, @@ -111123,6 +116373,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_ZE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -111138,12 +116389,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3964 Instruction:"VRSQRTPBF16 Vfv{K}{z},aKq,Wfv|B16" Encoding:"evex m:6 p:0 l:x w:0 0x4E /r"/"RAM" + // Pos:4009 Instruction:"VRSQRTPBF16 Vfv{K}{z},aKq,Wfv|B16" Encoding:"evex m:6 p:0 l:x w:0 0x4E /r"/"RAM" { .Instruction = ND_INS_VRSQRTPBF16, .Category = ND_CAT_AVX10BF16, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1760, + .Mnemonic = 1795, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -111152,6 +116403,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -111166,12 +116418,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3965 Instruction:"VRSQRTPH Vfv{K}{z},aKq,Wfv|B16" Encoding:"evex m:6 p:1 l:x w:0 0x4E /r"/"RAM" + // Pos:4010 Instruction:"VRSQRTPH Vfv{K}{z},aKq,Wfv|B16" Encoding:"evex m:6 p:1 l:x w:0 0x4E /r"/"RAM" { .Instruction = ND_INS_VRSQRTPH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1761, + .Mnemonic = 1796, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -111180,6 +116432,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -111194,12 +116447,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3966 Instruction:"VRSQRTPS Vx,Wx" Encoding:"vex m:1 p:0 l:x w:i 0x52 /r"/"RM" + // Pos:4011 Instruction:"VRSQRTPS Vx,Wx" Encoding:"vex m:1 p:0 l:x w:i 0x52 /r"/"RM" { .Instruction = ND_INS_VRSQRTPS, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1762, + .Mnemonic = 1797, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -111208,6 +116461,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -111221,12 +116475,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3967 Instruction:"VRSQRTSH Vdq{K}{z},aKq,Hdq,Wsh" Encoding:"evex m:6 p:1 l:i w:0 0x4F /r"/"RAVM" + // Pos:4012 Instruction:"VRSQRTSH Vdq{K}{z},aKq,Hdq,Wsh" Encoding:"evex m:6 p:1 l:i w:0 0x4F /r"/"RAVM" { .Instruction = ND_INS_VRSQRTSH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1763, + .Mnemonic = 1798, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO, @@ -111235,6 +116489,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E10, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -111250,12 +116505,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3968 Instruction:"VRSQRTSS Vss,Hss,Wss" Encoding:"vex m:1 p:2 l:i w:i 0x52 /r"/"RVM" + // Pos:4013 Instruction:"VRSQRTSS Vss,Hss,Wss" Encoding:"vex m:1 p:2 l:i w:i 0x52 /r"/"RVM" { .Instruction = ND_INS_VRSQRTSS, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1764, + .Mnemonic = 1799, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -111264,6 +116519,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -111278,12 +116534,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3969 Instruction:"VSCALEFPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16" Encoding:"evex m:6 p:0 l:x w:0 0x2C /r"/"RAVM" + // Pos:4014 Instruction:"VSCALEFPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16" Encoding:"evex m:6 p:0 l:x w:0 0x2C /r"/"RAVM" { .Instruction = ND_INS_VSCALEFPBF16, .Category = ND_CAT_AVX10BF16, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1765, + .Mnemonic = 1800, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -111292,6 +116548,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -111307,12 +116564,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3970 Instruction:"VSCALEFPD Vfv{K}{z},aKq,Hfv,Wfv|B64{er}" Encoding:"evex m:2 p:1 l:x w:1 0x2C /r"/"RAVM" + // Pos:4015 Instruction:"VSCALEFPD Vfv{K}{z},aKq,Hfv,Wfv|B64{er}" Encoding:"evex m:2 p:1 l:x w:1 0x2C /r"/"RAVM" { .Instruction = ND_INS_VSCALEFPD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1766, + .Mnemonic = 1801, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -111321,6 +116578,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -111336,12 +116594,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3971 Instruction:"VSCALEFPH Vfv{K}{z},aKq,Hfv,Wfv|B16{er}" Encoding:"evex m:6 p:1 l:x w:0 0x2C /r"/"RAVM" + // Pos:4016 Instruction:"VSCALEFPH Vfv{K}{z},aKq,Hfv,Wfv|B16{er}" Encoding:"evex m:6 p:1 l:x w:0 0x2C /r"/"RAVM" { .Instruction = ND_INS_VSCALEFPH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1767, + .Mnemonic = 1802, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -111350,6 +116608,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -111365,12 +116624,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3972 Instruction:"VSCALEFPS Vfv{K}{z},aKq,Hfv,Wfv|B32{er}" Encoding:"evex m:2 p:1 l:x w:0 0x2C /r"/"RAVM" + // Pos:4017 Instruction:"VSCALEFPS Vfv{K}{z},aKq,Hfv,Wfv|B32{er}" Encoding:"evex m:2 p:1 l:x w:0 0x2C /r"/"RAVM" { .Instruction = ND_INS_VSCALEFPS, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1768, + .Mnemonic = 1803, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -111379,6 +116638,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -111394,12 +116654,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3973 Instruction:"VSCALEFSD Vsd{K}{z},aKq,Hsd,Wsd{er}" Encoding:"evex m:2 p:1 l:i w:1 0x2D /r"/"RAVM" + // Pos:4018 Instruction:"VSCALEFSD Vsd{K}{z},aKq,Hsd,Wsd{er}" Encoding:"evex m:2 p:1 l:i w:1 0x2D /r"/"RAVM" { .Instruction = ND_INS_VSCALEFSD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1769, + .Mnemonic = 1804, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -111408,6 +116668,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -111423,12 +116684,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3974 Instruction:"VSCALEFSH Vdq{K}{z},aKq,Hdq,Wsh{er}" Encoding:"evex m:6 p:1 l:i w:0 0x2D /r"/"RAVM" + // Pos:4019 Instruction:"VSCALEFSH Vdq{K}{z},aKq,Hdq,Wsh{er}" Encoding:"evex m:6 p:1 l:i w:0 0x2D /r"/"RAVM" { .Instruction = ND_INS_VSCALEFSH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1770, + .Mnemonic = 1805, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -111437,6 +116698,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -111452,12 +116714,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3975 Instruction:"VSCALEFSS Vss{K}{z},aKq,Hss,Wss{er}" Encoding:"evex m:2 p:1 l:i w:0 0x2D /r"/"RAVM" + // Pos:4020 Instruction:"VSCALEFSS Vss{K}{z},aKq,Hss,Wss{er}" Encoding:"evex m:2 p:1 l:i w:0 0x2D /r"/"RAVM" { .Instruction = ND_INS_VSCALEFSS, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1771, + .Mnemonic = 1806, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -111466,6 +116728,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -111481,12 +116744,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3976 Instruction:"VSCATTERDPD Mvm32h{K},aKq,Vfv" Encoding:"evex m:2 p:1 l:x w:1 0xA2 /r:mem vsib"/"MAR" + // Pos:4021 Instruction:"VSCATTERDPD Mvm32h{K},aKq,Vfv" Encoding:"evex m:2 p:1 l:x w:1 0xA2 /r:mem vsib"/"MAR" { .Instruction = ND_INS_VSCATTERDPD, .Category = ND_CAT_SCATTER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1772, + .Mnemonic = 1807, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK, @@ -111495,6 +116758,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E12, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -111509,12 +116773,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3977 Instruction:"VSCATTERDPS Mvm32n{K},aKq,Vfv" Encoding:"evex m:2 p:1 l:x w:0 0xA2 /r:mem vsib"/"MAR" + // Pos:4022 Instruction:"VSCATTERDPS Mvm32n{K},aKq,Vfv" Encoding:"evex m:2 p:1 l:x w:0 0xA2 /r:mem vsib"/"MAR" { .Instruction = ND_INS_VSCATTERDPS, .Category = ND_CAT_SCATTER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1773, + .Mnemonic = 1808, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK, @@ -111523,6 +116787,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E12, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -111537,12 +116802,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3978 Instruction:"VSCATTERPF0DPD Mvm32h{K},aKq" Encoding:"evex m:2 p:1 l:2 w:1 0xC6 /5:mem vsib"/"MA" + // Pos:4023 Instruction:"VSCATTERPF0DPD Mvm32h{K},aKq" Encoding:"evex m:2 p:1 l:2 w:1 0xC6 /5:mem vsib"/"MA" { .Instruction = ND_INS_VSCATTERPF0DPD, .Category = ND_CAT_SCATTER, .IsaSet = ND_SET_AVX512PF, - .Mnemonic = 1774, + .Mnemonic = 1809, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK, @@ -111551,6 +116816,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E12NP, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -111564,12 +116830,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3979 Instruction:"VSCATTERPF0DPS Mvm32n{K},aKq" Encoding:"evex m:2 p:1 l:2 w:0 0xC6 /5:mem vsib"/"MA" + // Pos:4024 Instruction:"VSCATTERPF0DPS Mvm32n{K},aKq" Encoding:"evex m:2 p:1 l:2 w:0 0xC6 /5:mem vsib"/"MA" { .Instruction = ND_INS_VSCATTERPF0DPS, .Category = ND_CAT_SCATTER, .IsaSet = ND_SET_AVX512PF, - .Mnemonic = 1775, + .Mnemonic = 1810, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK, @@ -111578,6 +116844,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E12NP, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -111591,12 +116858,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3980 Instruction:"VSCATTERPF0QPD Mvm64n{K},aKq" Encoding:"evex m:2 p:1 l:2 w:1 0xC7 /5:mem vsib"/"MA" + // Pos:4025 Instruction:"VSCATTERPF0QPD Mvm64n{K},aKq" Encoding:"evex m:2 p:1 l:2 w:1 0xC7 /5:mem vsib"/"MA" { .Instruction = ND_INS_VSCATTERPF0QPD, .Category = ND_CAT_SCATTER, .IsaSet = ND_SET_AVX512PF, - .Mnemonic = 1776, + .Mnemonic = 1811, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK, @@ -111605,6 +116872,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E12NP, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -111618,12 +116886,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3981 Instruction:"VSCATTERPF0QPS Mvm64n{K},aKq" Encoding:"evex m:2 p:1 l:2 w:0 0xC7 /5:mem vsib"/"MA" + // Pos:4026 Instruction:"VSCATTERPF0QPS Mvm64n{K},aKq" Encoding:"evex m:2 p:1 l:2 w:0 0xC7 /5:mem vsib"/"MA" { .Instruction = ND_INS_VSCATTERPF0QPS, .Category = ND_CAT_SCATTER, .IsaSet = ND_SET_AVX512PF, - .Mnemonic = 1777, + .Mnemonic = 1812, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK, @@ -111632,6 +116900,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E12NP, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -111645,12 +116914,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3982 Instruction:"VSCATTERPF1DPD Mvm32h{K},aKq" Encoding:"evex m:2 p:1 l:2 w:1 0xC6 /6:mem vsib"/"MA" + // Pos:4027 Instruction:"VSCATTERPF1DPD Mvm32h{K},aKq" Encoding:"evex m:2 p:1 l:2 w:1 0xC6 /6:mem vsib"/"MA" { .Instruction = ND_INS_VSCATTERPF1DPD, .Category = ND_CAT_SCATTER, .IsaSet = ND_SET_AVX512PF, - .Mnemonic = 1778, + .Mnemonic = 1813, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK, @@ -111659,6 +116928,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E12NP, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -111672,12 +116942,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3983 Instruction:"VSCATTERPF1DPS Mvm32n{K},aKq" Encoding:"evex m:2 p:1 l:2 w:0 0xC6 /6:mem vsib"/"MA" + // Pos:4028 Instruction:"VSCATTERPF1DPS Mvm32n{K},aKq" Encoding:"evex m:2 p:1 l:2 w:0 0xC6 /6:mem vsib"/"MA" { .Instruction = ND_INS_VSCATTERPF1DPS, .Category = ND_CAT_SCATTER, .IsaSet = ND_SET_AVX512PF, - .Mnemonic = 1779, + .Mnemonic = 1814, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK, @@ -111686,6 +116956,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E12NP, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -111699,12 +116970,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3984 Instruction:"VSCATTERPF1QPD Mvm64n{K},aKq" Encoding:"evex m:2 p:1 l:2 w:1 0xC7 /6:mem vsib"/"MA" + // Pos:4029 Instruction:"VSCATTERPF1QPD Mvm64n{K},aKq" Encoding:"evex m:2 p:1 l:2 w:1 0xC7 /6:mem vsib"/"MA" { .Instruction = ND_INS_VSCATTERPF1QPD, .Category = ND_CAT_SCATTER, .IsaSet = ND_SET_AVX512PF, - .Mnemonic = 1780, + .Mnemonic = 1815, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK, @@ -111713,6 +116984,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E12NP, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -111726,12 +116998,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3985 Instruction:"VSCATTERPF1QPS Mvm64n{K},aKq" Encoding:"evex m:2 p:1 l:2 w:0 0xC7 /6:mem vsib"/"MA" + // Pos:4030 Instruction:"VSCATTERPF1QPS Mvm64n{K},aKq" Encoding:"evex m:2 p:1 l:2 w:0 0xC7 /6:mem vsib"/"MA" { .Instruction = ND_INS_VSCATTERPF1QPS, .Category = ND_CAT_SCATTER, .IsaSet = ND_SET_AVX512PF, - .Mnemonic = 1781, + .Mnemonic = 1816, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK, @@ -111740,6 +117012,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E12NP, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -111753,12 +117026,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3986 Instruction:"VSCATTERQPD Mvm64n{K},aKq,Vfv" Encoding:"evex m:2 p:1 l:x w:1 0xA3 /r:mem vsib"/"MAR" + // Pos:4031 Instruction:"VSCATTERQPD Mvm64n{K},aKq,Vfv" Encoding:"evex m:2 p:1 l:x w:1 0xA3 /r:mem vsib"/"MAR" { .Instruction = ND_INS_VSCATTERQPD, .Category = ND_CAT_SCATTER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1782, + .Mnemonic = 1817, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK, @@ -111767,6 +117040,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E12, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -111781,12 +117055,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3987 Instruction:"VSCATTERQPS Mvm64n{K},aKq,Vhv" Encoding:"evex m:2 p:1 l:x w:0 0xA3 /r:mem vsib"/"MAR" + // Pos:4032 Instruction:"VSCATTERQPS Mvm64n{K},aKq,Vhv" Encoding:"evex m:2 p:1 l:x w:0 0xA3 /r:mem vsib"/"MAR" { .Instruction = ND_INS_VSCATTERQPS, .Category = ND_CAT_SCATTER, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1783, + .Mnemonic = 1818, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK, @@ -111795,6 +117069,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E12, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -111809,12 +117084,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3988 Instruction:"VSHA512MSG1 Vqq,Udq" Encoding:"vex m:2 p:3 l:1 w:0 0xCC /r:reg"/"RM" + // Pos:4033 Instruction:"VSHA512MSG1 Vqq,Udq" Encoding:"vex m:2 p:3 l:1 w:0 0xCC /r:reg"/"RM" { .Instruction = ND_INS_VSHA512MSG1, .Category = ND_CAT_SHA512, .IsaSet = ND_SET_SHA512, - .Mnemonic = 1784, + .Mnemonic = 1819, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -111823,6 +117098,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -111836,12 +117112,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3989 Instruction:"VSHA512MSG2 Vqq,Uqq" Encoding:"vex m:2 p:3 l:1 w:0 0xCD /r:reg"/"RM" + // Pos:4034 Instruction:"VSHA512MSG2 Vqq,Uqq" Encoding:"vex m:2 p:3 l:1 w:0 0xCD /r:reg"/"RM" { .Instruction = ND_INS_VSHA512MSG2, .Category = ND_CAT_SHA512, .IsaSet = ND_SET_SHA512, - .Mnemonic = 1785, + .Mnemonic = 1820, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -111850,6 +117126,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -111863,12 +117140,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3990 Instruction:"VSHA512RNDS2 Vqq,Hqq,Udq" Encoding:"vex m:2 p:3 l:1 w:0 0xCB /r:reg"/"RVM" + // Pos:4035 Instruction:"VSHA512RNDS2 Vqq,Hqq,Udq" Encoding:"vex m:2 p:3 l:1 w:0 0xCB /r:reg"/"RVM" { .Instruction = ND_INS_VSHA512RNDS2, .Category = ND_CAT_SHA512, .IsaSet = ND_SET_SHA512, - .Mnemonic = 1786, + .Mnemonic = 1821, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -111877,6 +117154,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -111891,12 +117169,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3991 Instruction:"VSHUFF32X4 Vuv{K}{z},aKq,Huv,Wuv|B32,Ib" Encoding:"evex m:3 p:1 l:x w:0 0x23 /r ib"/"RAVMI" + // Pos:4036 Instruction:"VSHUFF32X4 Vuv{K}{z},aKq,Huv,Wuv|B32,Ib" Encoding:"evex m:3 p:1 l:x w:0 0x23 /r ib"/"RAVMI" { .Instruction = ND_INS_VSHUFF32X4, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1787, + .Mnemonic = 1822, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -111905,6 +117183,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -111921,12 +117200,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3992 Instruction:"VSHUFF64X2 Vuv{K}{z},aKq,Huv,Wuv|B64,Ib" Encoding:"evex m:3 p:1 l:x w:1 0x23 /r ib"/"RAVMI" + // Pos:4037 Instruction:"VSHUFF64X2 Vuv{K}{z},aKq,Huv,Wuv|B64,Ib" Encoding:"evex m:3 p:1 l:x w:1 0x23 /r ib"/"RAVMI" { .Instruction = ND_INS_VSHUFF64X2, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1788, + .Mnemonic = 1823, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -111935,6 +117214,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -111951,12 +117231,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3993 Instruction:"VSHUFI32X4 Vuv{K}{z},aKq,Huv,Wuv|B32,Ib" Encoding:"evex m:3 p:1 l:x w:0 0x43 /r ib"/"RAVMI" + // Pos:4038 Instruction:"VSHUFI32X4 Vuv{K}{z},aKq,Huv,Wuv|B32,Ib" Encoding:"evex m:3 p:1 l:x w:0 0x43 /r ib"/"RAVMI" { .Instruction = ND_INS_VSHUFI32X4, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1789, + .Mnemonic = 1824, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -111965,6 +117245,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -111981,12 +117262,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3994 Instruction:"VSHUFI64X2 Vuv{K}{z},aKq,Huv,Wuv|B64,Ib" Encoding:"evex m:3 p:1 l:x w:1 0x43 /r ib"/"RAVMI" + // Pos:4039 Instruction:"VSHUFI64X2 Vuv{K}{z},aKq,Huv,Wuv|B64,Ib" Encoding:"evex m:3 p:1 l:x w:1 0x43 /r ib"/"RAVMI" { .Instruction = ND_INS_VSHUFI64X2, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1790, + .Mnemonic = 1825, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -111995,6 +117276,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -112011,12 +117293,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3995 Instruction:"VSHUFPD Vfv{K}{z},aKq,Hfv,Wfv|B64,Ib" Encoding:"evex m:1 p:1 l:x w:1 0xC6 /r ib"/"RAVMI" + // Pos:4040 Instruction:"VSHUFPD Vfv{K}{z},aKq,Hfv,Wfv|B64,Ib" Encoding:"evex m:1 p:1 l:x w:1 0xC6 /r ib"/"RAVMI" { .Instruction = ND_INS_VSHUFPD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1791, + .Mnemonic = 1826, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -112025,6 +117307,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -112041,12 +117324,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3996 Instruction:"VSHUFPD Vpd,Hpd,Wpd,Ib" Encoding:"vex m:1 p:1 l:x w:i 0xC6 /r ib"/"RVMI" + // Pos:4041 Instruction:"VSHUFPD Vpd,Hpd,Wpd,Ib" Encoding:"vex m:1 p:1 l:x w:i 0xC6 /r ib"/"RVMI" { .Instruction = ND_INS_VSHUFPD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1791, + .Mnemonic = 1826, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -112055,6 +117338,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -112070,12 +117354,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3997 Instruction:"VSHUFPS Vfv{K}{z},aKq,Hfv,Wfv|B32,Ib" Encoding:"evex m:1 p:0 l:x w:0 0xC6 /r ib"/"RAVMI" + // Pos:4042 Instruction:"VSHUFPS Vfv{K}{z},aKq,Hfv,Wfv|B32,Ib" Encoding:"evex m:1 p:0 l:x w:0 0xC6 /r ib"/"RAVMI" { .Instruction = ND_INS_VSHUFPS, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1792, + .Mnemonic = 1827, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -112084,6 +117368,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -112100,12 +117385,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3998 Instruction:"VSHUFPS Vps,Hps,Wps,Ib" Encoding:"vex m:1 p:0 l:x w:i 0xC6 /r ib"/"RVMI" + // Pos:4043 Instruction:"VSHUFPS Vps,Hps,Wps,Ib" Encoding:"vex m:1 p:0 l:x w:i 0xC6 /r ib"/"RVMI" { .Instruction = ND_INS_VSHUFPS, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1792, + .Mnemonic = 1827, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -112114,6 +117399,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -112129,12 +117415,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:3999 Instruction:"VSM3MSG1 Vdq,Hdq,Wdq" Encoding:"vex m:2 p:0 l:0 w:0 0xDA /r"/"RVM" + // Pos:4044 Instruction:"VSM3MSG1 Vdq,Hdq,Wdq" Encoding:"vex m:2 p:0 l:0 w:0 0xDA /r"/"RVM" { .Instruction = ND_INS_VSM3MSG1, .Category = ND_CAT_SM3, .IsaSet = ND_SET_SM3, - .Mnemonic = 1793, + .Mnemonic = 1828, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -112143,6 +117429,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -112157,12 +117444,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4000 Instruction:"VSM3MSG2 Vdq,Hdq,Wdq" Encoding:"vex m:2 p:1 l:0 w:0 0xDA /r"/"RVM" + // Pos:4045 Instruction:"VSM3MSG2 Vdq,Hdq,Wdq" Encoding:"vex m:2 p:1 l:0 w:0 0xDA /r"/"RVM" { .Instruction = ND_INS_VSM3MSG2, .Category = ND_CAT_SM3, .IsaSet = ND_SET_SM3, - .Mnemonic = 1794, + .Mnemonic = 1829, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -112171,6 +117458,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -112185,12 +117473,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4001 Instruction:"VSM3RNDS2 Vdq,Hdq,Wdq,Ib" Encoding:"vex m:3 p:1 l:0 w:0 0xDE /r ib"/"RVMI" + // Pos:4046 Instruction:"VSM3RNDS2 Vdq,Hdq,Wdq,Ib" Encoding:"vex m:3 p:1 l:0 w:0 0xDE /r ib"/"RVMI" { .Instruction = ND_INS_VSM3RNDS2, .Category = ND_CAT_SM3, .IsaSet = ND_SET_SM3, - .Mnemonic = 1795, + .Mnemonic = 1830, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -112199,6 +117487,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -112214,12 +117503,41 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4002 Instruction:"VSM4KEY4 Vx,Hx,Wx" Encoding:"vex m:2 p:2 l:x w:0 0xDA /r"/"RVM" + // Pos:4047 Instruction:"VSM4KEY4 Vfv,Hfv,Wfv" Encoding:"evex m:2 p:2 l:x w:0 0xDA /r"/"RVM" { .Instruction = ND_INS_VSM4KEY4, .Category = ND_CAT_SM4, .IsaSet = ND_SET_SM4, - .Mnemonic = 1796, + .Mnemonic = 1831, + .ValidPrefixes = 0, + .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, + .ValidDecorators = 0, + .OpsCount = ND_OPS_CNT(3, 0), + .TupleType = ND_TUPLE_FVM, + .ExcType = ND_EXT_E6, + .FpuFlags = 0, + .EvexMode = 0, + .SimdExc = 0, + .TestedFlags = 0, + .ModifiedFlags = 0, + .SetFlags = 0, + .ClearedFlags = 0, + .Attributes = ND_FLAG_MODRM|ND_FLAG_VECTOR, + .CpuidFlag = ND_CFF_SM4, + .Operands = + { + OP(ND_OPT_V, ND_OPS_fv, 0, ND_OPA_W, 0, 0), + OP(ND_OPT_H, ND_OPS_fv, 0, ND_OPA_R, 0, 0), + OP(ND_OPT_W, ND_OPS_fv, 0, ND_OPA_R, 0, 0), + }, + }, + + // Pos:4048 Instruction:"VSM4KEY4 Vx,Hx,Wx" Encoding:"vex m:2 p:2 l:x w:0 0xDA /r"/"RVM" + { + .Instruction = ND_INS_VSM4KEY4, + .Category = ND_CAT_SM4, + .IsaSet = ND_SET_SM4, + .Mnemonic = 1831, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -112228,6 +117546,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -112242,12 +117561,41 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4003 Instruction:"VSM4RNDS4 Vx,Hx,Wx" Encoding:"vex m:2 p:3 l:x w:0 0xDA /r"/"RVM" + // Pos:4049 Instruction:"VSM4RNDS4 Vfv,Hfv,Wfv" Encoding:"evex m:2 p:3 l:x w:0 0xDA /r"/"RVM" { .Instruction = ND_INS_VSM4RNDS4, .Category = ND_CAT_SM4, .IsaSet = ND_SET_SM4, - .Mnemonic = 1797, + .Mnemonic = 1832, + .ValidPrefixes = 0, + .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, + .ValidDecorators = 0, + .OpsCount = ND_OPS_CNT(3, 0), + .TupleType = ND_TUPLE_FVM, + .ExcType = ND_EXT_E6, + .FpuFlags = 0, + .EvexMode = 0, + .SimdExc = 0, + .TestedFlags = 0, + .ModifiedFlags = 0, + .SetFlags = 0, + .ClearedFlags = 0, + .Attributes = ND_FLAG_MODRM|ND_FLAG_VECTOR, + .CpuidFlag = ND_CFF_SM4, + .Operands = + { + OP(ND_OPT_V, ND_OPS_fv, 0, ND_OPA_W, 0, 0), + OP(ND_OPT_H, ND_OPS_fv, 0, ND_OPA_R, 0, 0), + OP(ND_OPT_W, ND_OPS_fv, 0, ND_OPA_R, 0, 0), + }, + }, + + // Pos:4050 Instruction:"VSM4RNDS4 Vx,Hx,Wx" Encoding:"vex m:2 p:3 l:x w:0 0xDA /r"/"RVM" + { + .Instruction = ND_INS_VSM4RNDS4, + .Category = ND_CAT_SM4, + .IsaSet = ND_SET_SM4, + .Mnemonic = 1832, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -112256,6 +117604,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_6, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -112270,12 +117619,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4004 Instruction:"VSQRTNEPBF16 Vfv{K}{z},aKq,Wfv|B16" Encoding:"evex m:5 p:1 l:x w:0 0x51 /r"/"RAM" + // Pos:4051 Instruction:"VSQRTNEPBF16 Vfv{K}{z},aKq,Wfv|B16" Encoding:"evex m:5 p:1 l:x w:0 0x51 /r"/"RAM" { .Instruction = ND_INS_VSQRTNEPBF16, .Category = ND_CAT_AVX10BF16, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1798, + .Mnemonic = 1833, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -112284,6 +117633,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -112298,12 +117648,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4005 Instruction:"VSQRTPD Vfv{K}{z},aKq,Wfv|B64{er}" Encoding:"evex m:1 p:1 l:x w:1 0x51 /r"/"RAM" + // Pos:4052 Instruction:"VSQRTPD Vfv{K}{z},aKq,Wfv|B64{er}" Encoding:"evex m:1 p:1 l:x w:1 0x51 /r"/"RAM" { .Instruction = ND_INS_VSQRTPD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1799, + .Mnemonic = 1834, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -112312,6 +117662,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -112326,12 +117677,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4006 Instruction:"VSQRTPD Vx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0x51 /r"/"RM" + // Pos:4053 Instruction:"VSQRTPD Vx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0x51 /r"/"RM" { .Instruction = ND_INS_VSQRTPD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1799, + .Mnemonic = 1834, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -112340,6 +117691,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -112353,12 +117705,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4007 Instruction:"VSQRTPH Vfv{K}{z},aKq,Wfv|B16{er}" Encoding:"evex m:5 p:0 l:x w:0 0x51 /r"/"RAM" + // Pos:4054 Instruction:"VSQRTPH Vfv{K}{z},aKq,Wfv|B16{er}" Encoding:"evex m:5 p:0 l:x w:0 0x51 /r"/"RAM" { .Instruction = ND_INS_VSQRTPH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1800, + .Mnemonic = 1835, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -112367,6 +117719,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -112381,12 +117734,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4008 Instruction:"VSQRTPS Vfv{K}{z},aKq,Wfv|B32{er}" Encoding:"evex m:1 p:0 l:x w:0 0x51 /r"/"RAM" + // Pos:4055 Instruction:"VSQRTPS Vfv{K}{z},aKq,Wfv|B32{er}" Encoding:"evex m:1 p:0 l:x w:0 0x51 /r"/"RAM" { .Instruction = ND_INS_VSQRTPS, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1801, + .Mnemonic = 1836, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -112395,6 +117748,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -112409,12 +117763,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4009 Instruction:"VSQRTPS Vx,Wx" Encoding:"vex m:1 p:0 l:x w:i 0x51 /r"/"RM" + // Pos:4056 Instruction:"VSQRTPS Vx,Wx" Encoding:"vex m:1 p:0 l:x w:i 0x51 /r"/"RM" { .Instruction = ND_INS_VSQRTPS, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1801, + .Mnemonic = 1836, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -112423,6 +117777,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -112436,12 +117791,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4010 Instruction:"VSQRTSD Vdq{K}{z},aKq,Hdq,Wsd{er}" Encoding:"evex m:1 p:3 l:i w:1 0x51 /r"/"RAVM" + // Pos:4057 Instruction:"VSQRTSD Vdq{K}{z},aKq,Hdq,Wsd{er}" Encoding:"evex m:1 p:3 l:i w:1 0x51 /r"/"RAVM" { .Instruction = ND_INS_VSQRTSD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1802, + .Mnemonic = 1837, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -112450,6 +117805,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -112465,12 +117821,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4011 Instruction:"VSQRTSD Vsd,Hsd,Wsd" Encoding:"vex m:1 p:3 l:i w:i 0x51 /r"/"RVM" + // Pos:4058 Instruction:"VSQRTSD Vsd,Hsd,Wsd" Encoding:"vex m:1 p:3 l:i w:i 0x51 /r"/"RVM" { .Instruction = ND_INS_VSQRTSD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1802, + .Mnemonic = 1837, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -112479,6 +117835,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -112493,12 +117850,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4012 Instruction:"VSQRTSH Vdq{K}{z},aKq,Hdq,Wsh{er}" Encoding:"evex m:5 p:2 l:i w:0 0x51 /r"/"RAVM" + // Pos:4059 Instruction:"VSQRTSH Vdq{K}{z},aKq,Hdq,Wsh{er}" Encoding:"evex m:5 p:2 l:i w:0 0x51 /r"/"RAVM" { .Instruction = ND_INS_VSQRTSH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1803, + .Mnemonic = 1838, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -112507,6 +117864,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -112522,12 +117880,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4013 Instruction:"VSQRTSS Vdq{K}{z},aKq,Hdq,Wss{er}" Encoding:"evex m:1 p:2 l:i w:0 0x51 /r"/"RAVM" + // Pos:4060 Instruction:"VSQRTSS Vdq{K}{z},aKq,Hdq,Wss{er}" Encoding:"evex m:1 p:2 l:i w:0 0x51 /r"/"RAVM" { .Instruction = ND_INS_VSQRTSS, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1804, + .Mnemonic = 1839, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -112536,6 +117894,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -112551,12 +117910,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4014 Instruction:"VSQRTSS Vss,Hss,Wss" Encoding:"vex m:1 p:2 l:i w:i 0x51 /r"/"RVM" + // Pos:4061 Instruction:"VSQRTSS Vss,Hss,Wss" Encoding:"vex m:1 p:2 l:i w:i 0x51 /r"/"RVM" { .Instruction = ND_INS_VSQRTSS, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1804, + .Mnemonic = 1839, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -112565,6 +117924,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -112579,12 +117939,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4015 Instruction:"VSTMXCSR Md" Encoding:"vex m:1 p:0 0xAE /3:mem"/"M" + // Pos:4062 Instruction:"VSTMXCSR Md" Encoding:"vex m:1 p:0 0xAE /3:mem"/"M" { .Instruction = ND_INS_VSTMXCSR, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1805, + .Mnemonic = 1840, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -112593,6 +117953,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_5, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -112606,12 +117967,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4016 Instruction:"VSUBNEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16" Encoding:"evex m:5 p:1 l:x w:0 0x5C /r"/"RAVM" + // Pos:4063 Instruction:"VSUBNEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16" Encoding:"evex m:5 p:1 l:x w:0 0x5C /r"/"RAVM" { .Instruction = ND_INS_VSUBNEPBF16, .Category = ND_CAT_AVX10BF16, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1806, + .Mnemonic = 1841, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -112620,6 +117981,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -112635,12 +117997,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4017 Instruction:"VSUBPD Vfv{K}{z},aKq,Hfv,Wfv|B64{er}" Encoding:"evex m:1 p:1 l:x w:1 0x5C /r"/"RAVM" + // Pos:4064 Instruction:"VSUBPD Vfv{K}{z},aKq,Hfv,Wfv|B64{er}" Encoding:"evex m:1 p:1 l:x w:1 0x5C /r"/"RAVM" { .Instruction = ND_INS_VSUBPD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1807, + .Mnemonic = 1842, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -112649,6 +118011,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -112664,12 +118027,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4018 Instruction:"VSUBPD Vpd,Hpd,Wpd" Encoding:"vex m:1 p:1 l:x w:i 0x5C /r"/"RVM" + // Pos:4065 Instruction:"VSUBPD Vpd,Hpd,Wpd" Encoding:"vex m:1 p:1 l:x w:i 0x5C /r"/"RVM" { .Instruction = ND_INS_VSUBPD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1807, + .Mnemonic = 1842, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -112678,6 +118041,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -112692,12 +118056,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4019 Instruction:"VSUBPH Vfv{K}{z},aKq,Hfv,Wfv|B16{sae}" Encoding:"evex m:5 p:0 l:x w:0 0x5C /r"/"RAVM" + // Pos:4066 Instruction:"VSUBPH Vfv{K}{z},aKq,Hfv,Wfv|B16{sae}" Encoding:"evex m:5 p:0 l:x w:0 0x5C /r"/"RAVM" { .Instruction = ND_INS_VSUBPH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1808, + .Mnemonic = 1843, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE|ND_DECO_BROADCAST, @@ -112706,6 +118070,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -112721,12 +118086,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4020 Instruction:"VSUBPS Vfv{K}{z},aKq,Hfv,Wfv|B32{er}" Encoding:"evex m:1 p:0 l:x w:0 0x5C /r"/"RAVM" + // Pos:4067 Instruction:"VSUBPS Vfv{K}{z},aKq,Hfv,Wfv|B32{er}" Encoding:"evex m:1 p:0 l:x w:0 0x5C /r"/"RAVM" { .Instruction = ND_INS_VSUBPS, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1809, + .Mnemonic = 1844, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER|ND_DECO_BROADCAST, @@ -112735,6 +118100,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -112750,12 +118116,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4021 Instruction:"VSUBPS Vps,Hps,Wps" Encoding:"vex m:1 p:0 l:x w:i 0x5C /r"/"RVM" + // Pos:4068 Instruction:"VSUBPS Vps,Hps,Wps" Encoding:"vex m:1 p:0 l:x w:i 0x5C /r"/"RVM" { .Instruction = ND_INS_VSUBPS, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1809, + .Mnemonic = 1844, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -112764,6 +118130,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -112778,12 +118145,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4022 Instruction:"VSUBSD Vdq{K}{z},aKq,Hdq,Wsd{er}" Encoding:"evex m:1 p:3 l:i w:1 0x5C /r"/"RAVM" + // Pos:4069 Instruction:"VSUBSD Vdq{K}{z},aKq,Hdq,Wsd{er}" Encoding:"evex m:1 p:3 l:i w:1 0x5C /r"/"RAVM" { .Instruction = ND_INS_VSUBSD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1810, + .Mnemonic = 1845, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -112792,6 +118159,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -112807,12 +118175,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4023 Instruction:"VSUBSD Vsd,Hsd,Wsd" Encoding:"vex m:1 p:3 l:i w:i 0x5C /r"/"RVM" + // Pos:4070 Instruction:"VSUBSD Vsd,Hsd,Wsd" Encoding:"vex m:1 p:3 l:i w:i 0x5C /r"/"RVM" { .Instruction = ND_INS_VSUBSD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1810, + .Mnemonic = 1845, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -112821,6 +118189,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -112835,12 +118204,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4024 Instruction:"VSUBSH Vdq{K}{z},aKq,Hdq,Wsh{sae}" Encoding:"evex m:5 p:2 l:i w:0 0x5C /r"/"RAVM" + // Pos:4071 Instruction:"VSUBSH Vdq{K}{z},aKq,Hdq,Wsh{sae}" Encoding:"evex m:5 p:2 l:i w:0 0x5C /r"/"RAVM" { .Instruction = ND_INS_VSUBSH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1811, + .Mnemonic = 1846, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_SAE, @@ -112849,6 +118218,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -112864,12 +118234,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4025 Instruction:"VSUBSS Vdq{K}{z},aKq,Hdq,Wss{er}" Encoding:"evex m:1 p:2 l:i w:0 0x5C /r"/"RAVM" + // Pos:4072 Instruction:"VSUBSS Vdq{K}{z},aKq,Hdq,Wss{er}" Encoding:"evex m:1 p:2 l:i w:0 0x5C /r"/"RAVM" { .Instruction = ND_INS_VSUBSS, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1812, + .Mnemonic = 1847, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_ER, @@ -112878,6 +118248,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -112893,12 +118264,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4026 Instruction:"VSUBSS Vss,Hss,Wss" Encoding:"vex m:1 p:2 l:i w:i 0x5C /r"/"RVM" + // Pos:4073 Instruction:"VSUBSS Vss,Hss,Wss" Encoding:"vex m:1 p:2 l:i w:i 0x5C /r"/"RVM" { .Instruction = ND_INS_VSUBSS, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1812, + .Mnemonic = 1847, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -112907,6 +118278,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_2, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_OE|ND_SIMD_EXC_UE|ND_SIMD_EXC_PE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -112921,12 +118293,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4027 Instruction:"VTESTPD Vx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0x0F /r"/"RM" + // Pos:4074 Instruction:"VTESTPD Vx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0x0F /r"/"RM" { .Instruction = ND_INS_VTESTPD, .Category = ND_CAT_LOGICAL_FP, .IsaSet = ND_SET_AVX, - .Mnemonic = 1813, + .Mnemonic = 1848, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -112935,6 +118307,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .SetFlags = 0, @@ -112949,12 +118322,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4028 Instruction:"VTESTPS Vx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0x0E /r"/"RM" + // Pos:4075 Instruction:"VTESTPS Vx,Wx" Encoding:"vex m:2 p:1 l:x w:0 0x0E /r"/"RM" { .Instruction = ND_INS_VTESTPS, .Category = ND_CAT_LOGICAL_FP, .IsaSet = ND_SET_AVX, - .Mnemonic = 1814, + .Mnemonic = 1849, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -112963,6 +118336,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_ZF, .SetFlags = 0, @@ -112977,12 +118351,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4029 Instruction:"VUCOMISD Vdq,Wsd{sae}" Encoding:"evex m:1 p:1 l:i w:1 0x2E /r"/"RM" + // Pos:4076 Instruction:"VUCOMISD Vdq,Wsd{sae}" Encoding:"evex m:1 p:1 l:i w:1 0x2E /r"/"RM" { .Instruction = ND_INS_VUCOMISD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1815, + .Mnemonic = 1850, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_SAE, @@ -112991,6 +118365,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF, .SetFlags = 0, @@ -113005,12 +118380,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4030 Instruction:"VUCOMISD Vsd,Wsd" Encoding:"vex m:1 p:1 l:i w:i 0x2E /r"/"RM" + // Pos:4077 Instruction:"VUCOMISD Vsd,Wsd" Encoding:"vex m:1 p:1 l:i w:i 0x2E /r"/"RM" { .Instruction = ND_INS_VUCOMISD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1815, + .Mnemonic = 1850, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -113019,6 +118394,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF, .SetFlags = 0, @@ -113033,12 +118409,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4031 Instruction:"VUCOMISH Vdq,Wsh{sae}" Encoding:"evex m:5 p:0 l:i w:0 0x2E /r"/"RM" + // Pos:4078 Instruction:"VUCOMISH Vdq,Wsh{sae}" Encoding:"evex m:5 p:0 l:i w:0 0x2E /r"/"RM" { .Instruction = ND_INS_VUCOMISH, .Category = ND_CAT_AVX512FP16, .IsaSet = ND_SET_AVX512FP16, - .Mnemonic = 1816, + .Mnemonic = 1851, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_SAE, @@ -113047,6 +118423,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_ZF|NDR_RFLAG_PF|NDR_RFLAG_CF, .SetFlags = 0, @@ -113061,12 +118438,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4032 Instruction:"VUCOMISS Vdq,Wss{sae}" Encoding:"evex m:1 p:0 l:i w:0 0x2E /r"/"RM" + // Pos:4079 Instruction:"VUCOMISS Vdq,Wss{sae}" Encoding:"evex m:1 p:0 l:i w:0 0x2E /r"/"RM" { .Instruction = ND_INS_VUCOMISS, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1817, + .Mnemonic = 1852, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_SAE, @@ -113075,6 +118452,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF, .SetFlags = 0, @@ -113089,12 +118467,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4033 Instruction:"VUCOMISS Vss,Wss" Encoding:"vex m:1 p:0 l:i w:i 0x2E /r"/"RM" + // Pos:4080 Instruction:"VUCOMISS Vss,Wss" Encoding:"vex m:1 p:0 l:i w:i 0x2E /r"/"RM" { .Instruction = ND_INS_VUCOMISS, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1817, + .Mnemonic = 1852, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -113103,6 +118481,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_3, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF, .SetFlags = 0, @@ -113117,12 +118496,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4034 Instruction:"VUCOMXSD Vdq,Wsd{sae}" Encoding:"evex m:1 p:2 l:0 w:1 0x2E /r"/"RM" + // Pos:4081 Instruction:"VUCOMXSD Vdq,Wsd{sae}" Encoding:"evex m:1 p:3 l:i w:1 0x2E /r"/"RM" { .Instruction = ND_INS_VUCOMXSD, .Category = ND_CAT_AVX10CMPSFP, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1818, + .Mnemonic = 1853, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_SAE, @@ -113131,11 +118510,12 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, .ClearedFlags = 0|NDR_RFLAG_AF, - .Attributes = ND_FLAG_MODRM|ND_FLAG_VECTOR|ND_FLAG_NOV|ND_FLAG_NOVP, + .Attributes = ND_FLAG_LIG|ND_FLAG_MODRM|ND_FLAG_VECTOR|ND_FLAG_NOV|ND_FLAG_NOVP, .CpuidFlag = 0, .Operands = { @@ -113145,12 +118525,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4035 Instruction:"VUCOMXSH Vdq,Wsh{sae}" Encoding:"evex m:5 p:3 l:0 w:0 0x2E /r"/"RM" + // Pos:4082 Instruction:"VUCOMXSH Vdq,Wsh{sae}" Encoding:"evex m:5 p:2 l:i w:0 0x2E /r"/"RM" { .Instruction = ND_INS_VUCOMXSH, .Category = ND_CAT_AVX10CMPSFP, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1819, + .Mnemonic = 1854, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_SAE, @@ -113159,11 +118539,12 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, .ClearedFlags = 0|NDR_RFLAG_AF, - .Attributes = ND_FLAG_MODRM|ND_FLAG_VECTOR|ND_FLAG_NOV|ND_FLAG_NOVP, + .Attributes = ND_FLAG_LIG|ND_FLAG_MODRM|ND_FLAG_VECTOR|ND_FLAG_NOV|ND_FLAG_NOVP, .CpuidFlag = 0, .Operands = { @@ -113173,12 +118554,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4036 Instruction:"VUCOMXSS Vdq,Wss{sae}" Encoding:"evex m:1 p:3 l:0 w:0 0x2E /r"/"RM" + // Pos:4083 Instruction:"VUCOMXSS Vdq,Wss{sae}" Encoding:"evex m:1 p:2 l:i w:0 0x2E /r"/"RM" { .Instruction = ND_INS_VUCOMXSS, .Category = ND_CAT_AVX10CMPSFP, .IsaSet = ND_SET_AVX102, - .Mnemonic = 1820, + .Mnemonic = 1855, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_SAE, @@ -113187,11 +118568,12 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E3NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = ND_SIMD_EXC_IE|ND_SIMD_EXC_DE, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, .ClearedFlags = 0|NDR_RFLAG_AF, - .Attributes = ND_FLAG_MODRM|ND_FLAG_VECTOR|ND_FLAG_NOV|ND_FLAG_NOVP, + .Attributes = ND_FLAG_LIG|ND_FLAG_MODRM|ND_FLAG_VECTOR|ND_FLAG_NOV|ND_FLAG_NOVP, .CpuidFlag = 0, .Operands = { @@ -113201,12 +118583,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4037 Instruction:"VUNPCKHPD Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:1 p:1 l:x w:1 0x15 /r"/"RAVM" + // Pos:4084 Instruction:"VUNPCKHPD Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:1 p:1 l:x w:1 0x15 /r"/"RAVM" { .Instruction = ND_INS_VUNPCKHPD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1821, + .Mnemonic = 1856, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -113215,6 +118597,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -113230,12 +118613,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4038 Instruction:"VUNPCKHPD Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0x15 /r"/"RVM" + // Pos:4085 Instruction:"VUNPCKHPD Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0x15 /r"/"RVM" { .Instruction = ND_INS_VUNPCKHPD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1821, + .Mnemonic = 1856, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -113244,6 +118627,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -113258,12 +118642,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4039 Instruction:"VUNPCKHPS Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:1 p:0 l:x w:0 0x15 /r"/"RAVM" + // Pos:4086 Instruction:"VUNPCKHPS Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:1 p:0 l:x w:0 0x15 /r"/"RAVM" { .Instruction = ND_INS_VUNPCKHPS, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1822, + .Mnemonic = 1857, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -113272,6 +118656,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -113287,12 +118672,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4040 Instruction:"VUNPCKHPS Vx,Hx,Wx" Encoding:"vex m:1 p:0 l:x w:i 0x15 /r"/"RVM" + // Pos:4087 Instruction:"VUNPCKHPS Vx,Hx,Wx" Encoding:"vex m:1 p:0 l:x w:i 0x15 /r"/"RVM" { .Instruction = ND_INS_VUNPCKHPS, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1822, + .Mnemonic = 1857, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -113301,6 +118686,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -113315,12 +118701,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4041 Instruction:"VUNPCKLPD Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:1 p:1 l:x w:1 0x14 /r"/"RAVM" + // Pos:4088 Instruction:"VUNPCKLPD Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:1 p:1 l:x w:1 0x14 /r"/"RAVM" { .Instruction = ND_INS_VUNPCKLPD, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1823, + .Mnemonic = 1858, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -113329,6 +118715,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -113344,12 +118731,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4042 Instruction:"VUNPCKLPD Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0x14 /r"/"RVM" + // Pos:4089 Instruction:"VUNPCKLPD Vx,Hx,Wx" Encoding:"vex m:1 p:1 l:x w:i 0x14 /r"/"RVM" { .Instruction = ND_INS_VUNPCKLPD, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1823, + .Mnemonic = 1858, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -113358,6 +118745,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -113372,12 +118760,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4043 Instruction:"VUNPCKLPS Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:1 p:0 l:x w:0 0x14 /r"/"RAVM" + // Pos:4090 Instruction:"VUNPCKLPS Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:1 p:0 l:x w:0 0x14 /r"/"RAVM" { .Instruction = ND_INS_VUNPCKLPS, .Category = ND_CAT_AVX512, .IsaSet = ND_SET_AVX512F, - .Mnemonic = 1824, + .Mnemonic = 1859, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -113386,6 +118774,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4NF, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -113401,12 +118790,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4044 Instruction:"VUNPCKLPS Vx,Hx,Wx" Encoding:"vex m:1 p:0 l:x w:i 0x14 /r"/"RVM" + // Pos:4091 Instruction:"VUNPCKLPS Vx,Hx,Wx" Encoding:"vex m:1 p:0 l:x w:i 0x14 /r"/"RVM" { .Instruction = ND_INS_VUNPCKLPS, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1824, + .Mnemonic = 1859, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -113415,6 +118804,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -113429,12 +118819,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4045 Instruction:"VXORPD Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:1 p:1 l:x w:1 0x57 /r"/"RAVM" + // Pos:4092 Instruction:"VXORPD Vfv{K}{z},aKq,Hfv,Wfv|B64" Encoding:"evex m:1 p:1 l:x w:1 0x57 /r"/"RAVM" { .Instruction = ND_INS_VXORPD, .Category = ND_CAT_LOGICAL_FP, .IsaSet = ND_SET_AVX512DQ, - .Mnemonic = 1825, + .Mnemonic = 1860, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -113443,6 +118833,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -113458,12 +118849,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4046 Instruction:"VXORPD Vpd,Hpd,Wpd" Encoding:"vex m:1 p:1 l:x w:i 0x57 /r"/"RVM" + // Pos:4093 Instruction:"VXORPD Vpd,Hpd,Wpd" Encoding:"vex m:1 p:1 l:x w:i 0x57 /r"/"RVM" { .Instruction = ND_INS_VXORPD, .Category = ND_CAT_LOGICAL_FP, .IsaSet = ND_SET_AVX, - .Mnemonic = 1825, + .Mnemonic = 1860, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -113472,6 +118863,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -113486,12 +118878,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4047 Instruction:"VXORPS Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:1 p:0 l:x w:0 0x57 /r"/"RAVM" + // Pos:4094 Instruction:"VXORPS Vfv{K}{z},aKq,Hfv,Wfv|B32" Encoding:"evex m:1 p:0 l:x w:0 0x57 /r"/"RAVM" { .Instruction = ND_INS_VXORPS, .Category = ND_CAT_LOGICAL_FP, .IsaSet = ND_SET_AVX512DQ, - .Mnemonic = 1826, + .Mnemonic = 1861, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_MASK|ND_DECO_ZERO|ND_DECO_BROADCAST, @@ -113500,6 +118892,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_E4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -113515,12 +118908,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4048 Instruction:"VXORPS Vps,Hps,Wps" Encoding:"vex m:1 p:0 l:x w:i 0x57 /r"/"RVM" + // Pos:4095 Instruction:"VXORPS Vps,Hps,Wps" Encoding:"vex m:1 p:0 l:x w:i 0x57 /r"/"RVM" { .Instruction = ND_INS_VXORPS, .Category = ND_CAT_LOGICAL_FP, .IsaSet = ND_SET_AVX, - .Mnemonic = 1826, + .Mnemonic = 1861, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -113529,6 +118922,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -113543,12 +118937,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4049 Instruction:"VZEROALL" Encoding:"vex m:1 p:0 l:1 0x77"/"" + // Pos:4096 Instruction:"VZEROALL" Encoding:"vex m:1 p:0 l:1 0x77"/"" { .Instruction = ND_INS_VZEROALL, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1827, + .Mnemonic = 1862, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -113557,6 +118951,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_8, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -113569,12 +118964,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4050 Instruction:"VZEROUPPER" Encoding:"vex m:1 p:0 l:0 0x77"/"" + // Pos:4097 Instruction:"VZEROUPPER" Encoding:"vex m:1 p:0 l:0 0x77"/"" { .Instruction = ND_INS_VZEROUPPER, .Category = ND_CAT_AVX, .IsaSet = ND_SET_AVX, - .Mnemonic = 1828, + .Mnemonic = 1863, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -113583,6 +118978,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_8, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -113595,12 +118991,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4051 Instruction:"WAIT" Encoding:"0x9B"/"" + // Pos:4098 Instruction:"WAIT" Encoding:"0x9B"/"" { .Instruction = ND_INS_WAIT, .Category = ND_CAT_X87_ALU, .IsaSet = ND_SET_X87, - .Mnemonic = 1829, + .Mnemonic = 1864, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -113609,6 +119005,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0xff, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -113621,12 +119018,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4052 Instruction:"WBINVD" Encoding:"0x0F 0x09"/"" + // Pos:4099 Instruction:"WBINVD" Encoding:"0x0F 0x09"/"" { .Instruction = ND_INS_WBINVD, .Category = ND_CAT_SYSTEM, .IsaSet = ND_SET_I486REAL, - .Mnemonic = 1830, + .Mnemonic = 1865, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_REAL|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -113635,6 +119032,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -113647,12 +119045,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4053 Instruction:"WBNOINVD" Encoding:"repz 0x0F 0x09"/"" + // Pos:4100 Instruction:"WBNOINVD" Encoding:"repz 0x0F 0x09"/"" { .Instruction = ND_INS_WBNOINVD, .Category = ND_CAT_WBNOINVD, .IsaSet = ND_SET_WBNOINVD, - .Mnemonic = 1831, + .Mnemonic = 1866, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_REAL|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -113661,6 +119059,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -113673,12 +119072,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4054 Instruction:"WRFSBASE Ry" Encoding:"mo64 0xF3 0x0F 0xAE /2:reg"/"M" + // Pos:4101 Instruction:"WRFSBASE Ry" Encoding:"mo64 0xF3 0x0F 0xAE /2:reg"/"M" { .Instruction = ND_INS_WRFSBASE, .Category = ND_CAT_RDWRFSGS, .IsaSet = ND_SET_RDWRFSGS, - .Mnemonic = 1832, + .Mnemonic = 1867, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -113687,6 +119086,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -113700,12 +119100,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4055 Instruction:"WRGSBASE Ry" Encoding:"mo64 0xF3 0x0F 0xAE /3:reg"/"M" + // Pos:4102 Instruction:"WRGSBASE Ry" Encoding:"mo64 0xF3 0x0F 0xAE /3:reg"/"M" { .Instruction = ND_INS_WRGSBASE, .Category = ND_CAT_RDWRFSGS, .IsaSet = ND_SET_RDWRFSGS, - .Mnemonic = 1833, + .Mnemonic = 1868, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -113714,6 +119114,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -113727,12 +119128,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4056 Instruction:"WRMSR" Encoding:"0x0F 0x30"/"" + // Pos:4103 Instruction:"WRMSR" Encoding:"0x0F 0x30"/"" { .Instruction = ND_INS_WRMSR, .Category = ND_CAT_SYSTEM, .IsaSet = ND_SET_PENTIUMREAL, - .Mnemonic = 1834, + .Mnemonic = 1869, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_REAL|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -113741,6 +119142,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -113756,12 +119158,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4057 Instruction:"WRMSRLIST" Encoding:"0xF3 0x0F 0x01 /0xC6"/"" + // Pos:4104 Instruction:"WRMSRLIST" Encoding:"0xF3 0x0F 0x01 /0xC6"/"" { .Instruction = ND_INS_WRMSRLIST, .Category = ND_CAT_SYSTEM, .IsaSet = ND_SET_MSRLIST, - .Mnemonic = 1835, + .Mnemonic = 1870, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -113770,6 +119172,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -113784,12 +119187,41 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4058 Instruction:"WRMSRNS" Encoding:"NP 0x0F 0x01 /0xC6"/"" + // Pos:4105 Instruction:"WRMSRNS Id,Rq" Encoding:"evex m:7 nf:0 p:2 l:0 w:0 0xF6 /0:reg id"/"IM" + { + .Instruction = ND_INS_WRMSRNS, + .Category = ND_CAT_SYSTEM, + .IsaSet = ND_SET_MSR_IMM, + .Mnemonic = 1871, + .ValidPrefixes = 0, + .ValidModes = ND_MOD_R0|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, + .ValidDecorators = 0, + .OpsCount = ND_OPS_CNT(2, 1), + .TupleType = 0, + .ExcType = 0, + .FpuFlags = 0, + .EvexMode = ND_EVEXM_VEX, + .SimdExc = 0, + .TestedFlags = 0, + .ModifiedFlags = 0, + .SetFlags = 0, + .ClearedFlags = 0, + .Attributes = ND_FLAG_MODRM|ND_FLAG_NOV|ND_FLAG_NOVP|ND_FLAG_O64, + .CpuidFlag = ND_CFF_MSR_IMM, + .Operands = + { + OP(ND_OPT_I, ND_OPS_d, 0, ND_OPA_R, 0, 0), + OP(ND_OPT_R, ND_OPS_q, 0, ND_OPA_R, 0, 0), + OP(ND_OPT_MSR, ND_OPS_q, ND_OPF_OPDEF, ND_OPA_W, 0, 0), + }, + }, + + // Pos:4106 Instruction:"WRMSRNS" Encoding:"NP 0x0F 0x01 /0xC6"/"" { .Instruction = ND_INS_WRMSRNS, .Category = ND_CAT_SYSTEM, .IsaSet = ND_SET_WRMSRNS, - .Mnemonic = 1836, + .Mnemonic = 1871, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_REAL|ND_MOD_V8086|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -113798,6 +119230,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -113813,12 +119246,41 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4059 Instruction:"WRPKRU" Encoding:"NP 0x0F 0x01 /0xEF"/"" + // Pos:4107 Instruction:"WRMSRNS Id,Rq" Encoding:"vex m:7 p:2 l:0 w:0 0xF6 /0:reg id"/"IM" + { + .Instruction = ND_INS_WRMSRNS, + .Category = ND_CAT_SYSTEM, + .IsaSet = ND_SET_MSR_IMM, + .Mnemonic = 1871, + .ValidPrefixes = 0, + .ValidModes = ND_MOD_R0|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, + .ValidDecorators = 0, + .OpsCount = ND_OPS_CNT(2, 1), + .TupleType = 0, + .ExcType = 0, + .FpuFlags = 0, + .EvexMode = 0, + .SimdExc = 0, + .TestedFlags = 0, + .ModifiedFlags = 0, + .SetFlags = 0, + .ClearedFlags = 0, + .Attributes = ND_FLAG_MODRM|ND_FLAG_NOV|ND_FLAG_O64, + .CpuidFlag = ND_CFF_MSR_IMM, + .Operands = + { + OP(ND_OPT_I, ND_OPS_d, 0, ND_OPA_R, 0, 0), + OP(ND_OPT_R, ND_OPS_q, 0, ND_OPA_R, 0, 0), + OP(ND_OPT_MSR, ND_OPS_q, ND_OPF_OPDEF, ND_OPA_W, 0, 0), + }, + }, + + // Pos:4108 Instruction:"WRPKRU" Encoding:"NP 0x0F 0x01 /0xEF"/"" { .Instruction = ND_INS_WRPKRU, .Category = ND_CAT_MISC, .IsaSet = ND_SET_PKU, - .Mnemonic = 1837, + .Mnemonic = 1872, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -113827,6 +119289,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -113842,12 +119305,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4060 Instruction:"WRSSD My,Gy" Encoding:"evex m:4 l:0 p:0 w:0 nd:0 nf:0 0x66 /r:mem"/"MR" + // Pos:4109 Instruction:"WRSSD My,Gy" Encoding:"evex m:4 l:0 p:0 w:0 nd:0 nf:0 0x66 /r:mem"/"MR" { .Instruction = ND_INS_WRSS, .Category = ND_CAT_CET, .IsaSet = ND_SET_APX_F, - .Mnemonic = 1838, + .Mnemonic = 1873, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -113856,6 +119319,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_WRSS, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -113869,12 +119333,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4061 Instruction:"WRSSD My,Gy" Encoding:"NP 0x0F 0x38 0xF6 /r:mem"/"MR" + // Pos:4110 Instruction:"WRSSD My,Gy" Encoding:"NP 0x0F 0x38 0xF6 /r:mem"/"MR" { .Instruction = ND_INS_WRSS, .Category = ND_CAT_CET, .IsaSet = ND_SET_CET_SS, - .Mnemonic = 1838, + .Mnemonic = 1873, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -113883,6 +119347,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -113896,12 +119361,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4062 Instruction:"WRSSQ My,Gy" Encoding:"evex m:4 l:0 p:0 w:1 nd:0 nf:0 0x66 /r:mem"/"MR" + // Pos:4111 Instruction:"WRSSQ My,Gy" Encoding:"evex m:4 l:0 p:0 w:1 nd:0 nf:0 0x66 /r:mem"/"MR" { .Instruction = ND_INS_WRSS, .Category = ND_CAT_CET, .IsaSet = ND_SET_APX_F, - .Mnemonic = 1839, + .Mnemonic = 1874, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -113910,6 +119375,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_WRSS, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -113923,12 +119389,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4063 Instruction:"WRSSQ My,Gy" Encoding:"rexw NP 0x0F 0x38 0xF6 /r:mem"/"MR" + // Pos:4112 Instruction:"WRSSQ My,Gy" Encoding:"rexw NP 0x0F 0x38 0xF6 /r:mem"/"MR" { .Instruction = ND_INS_WRSS, .Category = ND_CAT_CET, .IsaSet = ND_SET_CET_SS, - .Mnemonic = 1839, + .Mnemonic = 1874, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -113937,6 +119403,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -113950,12 +119417,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4064 Instruction:"WRUSSD My,Gy" Encoding:"evex m:4 l:0 p:1 w:0 nd:0 nf:0 0x65 /r:mem"/"MR" + // Pos:4113 Instruction:"WRUSSD My,Gy" Encoding:"evex m:4 l:0 p:1 w:0 nd:0 nf:0 0x65 /r:mem"/"MR" { .Instruction = ND_INS_WRUSS, .Category = ND_CAT_CET, .IsaSet = ND_SET_APX_F, - .Mnemonic = 1840, + .Mnemonic = 1875, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -113964,6 +119431,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_WRUSS, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -113977,12 +119445,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4065 Instruction:"WRUSSD My,Gy" Encoding:"0x66 0x0F 0x38 0xF5 /r:mem"/"MR" + // Pos:4114 Instruction:"WRUSSD My,Gy" Encoding:"0x66 0x0F 0x38 0xF5 /r:mem"/"MR" { .Instruction = ND_INS_WRUSS, .Category = ND_CAT_CET, .IsaSet = ND_SET_CET_SS, - .Mnemonic = 1840, + .Mnemonic = 1875, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_REAL|ND_MOD_V8086|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -113991,6 +119459,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -114004,12 +119473,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4066 Instruction:"WRUSSQ My,Gy" Encoding:"evex m:4 l:0 p:1 w:1 nd:0 nf:0 0x65 /r:mem"/"MR" + // Pos:4115 Instruction:"WRUSSQ My,Gy" Encoding:"evex m:4 l:0 p:1 w:1 nd:0 nf:0 0x65 /r:mem"/"MR" { .Instruction = ND_INS_WRUSS, .Category = ND_CAT_CET, .IsaSet = ND_SET_APX_F, - .Mnemonic = 1841, + .Mnemonic = 1876, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -114018,6 +119487,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_WRUSS, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -114031,12 +119501,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4067 Instruction:"WRUSSQ My,Gy" Encoding:"rexw 0x66 0x0F 0x38 0xF5 /r:mem"/"MR" + // Pos:4116 Instruction:"WRUSSQ My,Gy" Encoding:"rexw 0x66 0x0F 0x38 0xF5 /r:mem"/"MR" { .Instruction = ND_INS_WRUSS, .Category = ND_CAT_CET, .IsaSet = ND_SET_CET_SS, - .Mnemonic = 1841, + .Mnemonic = 1876, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_REAL|ND_MOD_V8086|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -114045,6 +119515,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -114058,12 +119529,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4068 Instruction:"XABORT Ib" Encoding:"0xC6 /0xF8 ib"/"I" + // Pos:4117 Instruction:"XABORT Ib" Encoding:"0xC6 /0xF8 ib"/"I" { .Instruction = ND_INS_XABORT, .Category = ND_CAT_UNCOND_BR, .IsaSet = ND_SET_TSX, - .Mnemonic = 1842, + .Mnemonic = 1877, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -114072,6 +119543,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -114086,12 +119558,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4069 Instruction:"XADD Eb,Gb" Encoding:"0x0F 0xC0 /r"/"MR" + // Pos:4118 Instruction:"XADD Eb,Gb" Encoding:"0x0F 0xC0 /r"/"MR" { .Instruction = ND_INS_XADD, .Category = ND_CAT_SEMAPHORE, .IsaSet = ND_SET_I486REAL, - .Mnemonic = 1843, + .Mnemonic = 1878, .ValidPrefixes = ND_PREF_LOCK|ND_PREF_HLE, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -114100,6 +119572,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -114114,12 +119587,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4070 Instruction:"XADD Ev,Gv" Encoding:"0x0F 0xC1 /r"/"MR" + // Pos:4119 Instruction:"XADD Ev,Gv" Encoding:"0x0F 0xC1 /r"/"MR" { .Instruction = ND_INS_XADD, .Category = ND_CAT_SEMAPHORE, .IsaSet = ND_SET_I486REAL, - .Mnemonic = 1843, + .Mnemonic = 1878, .ValidPrefixes = ND_PREF_LOCK|ND_PREF_HLE, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -114128,6 +119601,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_CF|NDR_RFLAG_PF|NDR_RFLAG_AF|NDR_RFLAG_ZF|NDR_RFLAG_SF|NDR_RFLAG_OF, .SetFlags = 0, @@ -114142,12 +119616,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4071 Instruction:"XBEGIN Jz" Encoding:"0xC7 /0xF8 cz"/"D" + // Pos:4120 Instruction:"XBEGIN Jz" Encoding:"0xC7 /0xF8 cz"/"D" { .Instruction = ND_INS_XBEGIN, .Category = ND_CAT_COND_BR, .IsaSet = ND_SET_TSX, - .Mnemonic = 1844, + .Mnemonic = 1879, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -114156,6 +119630,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -114170,12 +119645,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4072 Instruction:"XCHG Eb,Gb" Encoding:"0x86 /r"/"MR" + // Pos:4121 Instruction:"XCHG Eb,Gb" Encoding:"0x86 /r"/"MR" { .Instruction = ND_INS_XCHG, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_I86, - .Mnemonic = 1845, + .Mnemonic = 1880, .ValidPrefixes = ND_PREF_HLE|ND_PREF_LOCK|ND_PREF_HLEWOL, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -114184,6 +119659,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -114197,12 +119673,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4073 Instruction:"XCHG Ev,Gv" Encoding:"0x87 /r"/"MR" + // Pos:4122 Instruction:"XCHG Ev,Gv" Encoding:"0x87 /r"/"MR" { .Instruction = ND_INS_XCHG, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_I86, - .Mnemonic = 1845, + .Mnemonic = 1880, .ValidPrefixes = ND_PREF_HLE|ND_PREF_LOCK|ND_PREF_HLEWOL, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -114211,6 +119687,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -114224,12 +119701,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4074 Instruction:"XCHG Zv,rAX" Encoding:"rexb 0x90"/"O" + // Pos:4123 Instruction:"XCHG Zv,rAX" Encoding:"rexb 0x90"/"O" { .Instruction = ND_INS_XCHG, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_I86, - .Mnemonic = 1845, + .Mnemonic = 1880, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -114238,6 +119715,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -114251,12 +119729,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4075 Instruction:"XCHG Zv,rAX" Encoding:"0x91"/"O" + // Pos:4124 Instruction:"XCHG Zv,rAX" Encoding:"0x91"/"O" { .Instruction = ND_INS_XCHG, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_I86, - .Mnemonic = 1845, + .Mnemonic = 1880, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -114265,6 +119743,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -114278,12 +119757,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4076 Instruction:"XCHG Zv,rAX" Encoding:"0x92"/"O" + // Pos:4125 Instruction:"XCHG Zv,rAX" Encoding:"0x92"/"O" { .Instruction = ND_INS_XCHG, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_I86, - .Mnemonic = 1845, + .Mnemonic = 1880, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -114292,6 +119771,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -114305,12 +119785,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4077 Instruction:"XCHG Zv,rAX" Encoding:"0x93"/"O" + // Pos:4126 Instruction:"XCHG Zv,rAX" Encoding:"0x93"/"O" { .Instruction = ND_INS_XCHG, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_I86, - .Mnemonic = 1845, + .Mnemonic = 1880, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -114319,6 +119799,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -114332,12 +119813,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4078 Instruction:"XCHG Zv,rAX" Encoding:"0x94"/"O" + // Pos:4127 Instruction:"XCHG Zv,rAX" Encoding:"0x94"/"O" { .Instruction = ND_INS_XCHG, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_I86, - .Mnemonic = 1845, + .Mnemonic = 1880, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -114346,6 +119827,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -114359,12 +119841,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4079 Instruction:"XCHG Zv,rAX" Encoding:"0x95"/"O" + // Pos:4128 Instruction:"XCHG Zv,rAX" Encoding:"0x95"/"O" { .Instruction = ND_INS_XCHG, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_I86, - .Mnemonic = 1845, + .Mnemonic = 1880, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -114373,6 +119855,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -114386,12 +119869,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4080 Instruction:"XCHG Zv,rAX" Encoding:"0x96"/"O" + // Pos:4129 Instruction:"XCHG Zv,rAX" Encoding:"0x96"/"O" { .Instruction = ND_INS_XCHG, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_I86, - .Mnemonic = 1845, + .Mnemonic = 1880, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -114400,6 +119883,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -114413,12 +119897,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4081 Instruction:"XCHG Zv,rAX" Encoding:"0x97"/"O" + // Pos:4130 Instruction:"XCHG Zv,rAX" Encoding:"0x97"/"O" { .Instruction = ND_INS_XCHG, .Category = ND_CAT_DATAXFER, .IsaSet = ND_SET_I86, - .Mnemonic = 1845, + .Mnemonic = 1880, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -114427,6 +119911,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -114440,12 +119925,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4082 Instruction:"XEND" Encoding:"NP 0x0F 0x01 /0xD5"/"" + // Pos:4131 Instruction:"XEND" Encoding:"NP 0x0F 0x01 /0xD5"/"" { .Instruction = ND_INS_XEND, .Category = ND_CAT_COND_BR, .IsaSet = ND_SET_TSX, - .Mnemonic = 1846, + .Mnemonic = 1881, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -114454,6 +119939,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -114466,12 +119952,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4083 Instruction:"XGETBV" Encoding:"NP 0x0F 0x01 /0xD0"/"" + // Pos:4132 Instruction:"XGETBV" Encoding:"NP 0x0F 0x01 /0xD0"/"" { .Instruction = ND_INS_XGETBV, .Category = ND_CAT_XSAVE, .IsaSet = ND_SET_XSAVE, - .Mnemonic = 1847, + .Mnemonic = 1882, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -114480,6 +119966,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -114495,12 +119982,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4084 Instruction:"XLATB" Encoding:"0xD7"/"" + // Pos:4133 Instruction:"XLATB" Encoding:"0xD7"/"" { .Instruction = ND_INS_XLATB, .Category = ND_CAT_MISC, .IsaSet = ND_SET_I86, - .Mnemonic = 1848, + .Mnemonic = 1883, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -114509,6 +119996,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -114522,12 +120010,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4085 Instruction:"XOR Eb,Gb" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x30 /r"/"MR" + // Pos:4134 Instruction:"XOR Eb,Gb" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x30 /r"/"MR" { .Instruction = ND_INS_XOR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 1849, + .Mnemonic = 1884, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -114536,6 +120024,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -114550,12 +120039,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4086 Instruction:"XOR Ev,Gv" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x31 /r"/"MR" + // Pos:4135 Instruction:"XOR Ev,Gv" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x31 /r"/"MR" { .Instruction = ND_INS_XOR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 1849, + .Mnemonic = 1884, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -114564,6 +120053,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -114578,12 +120068,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4087 Instruction:"XOR Ev,Gv" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0x31 /r"/"MR" + // Pos:4136 Instruction:"XOR Ev,Gv" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0x31 /r"/"MR" { .Instruction = ND_INS_XOR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 1849, + .Mnemonic = 1884, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -114592,6 +120082,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -114606,12 +120097,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4088 Instruction:"XOR Gb,Eb" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x32 /r"/"RM" + // Pos:4137 Instruction:"XOR Gb,Eb" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x32 /r"/"RM" { .Instruction = ND_INS_XOR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 1849, + .Mnemonic = 1884, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -114620,6 +120111,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -114634,12 +120126,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4089 Instruction:"XOR Gv,Ev" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x33 /r"/"RM" + // Pos:4138 Instruction:"XOR Gv,Ev" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x33 /r"/"RM" { .Instruction = ND_INS_XOR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 1849, + .Mnemonic = 1884, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -114648,6 +120140,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -114662,12 +120155,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4090 Instruction:"XOR Gv,Ev" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0x33 /r"/"RM" + // Pos:4139 Instruction:"XOR Gv,Ev" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0x33 /r"/"RM" { .Instruction = ND_INS_XOR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 1849, + .Mnemonic = 1884, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -114676,6 +120169,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -114690,12 +120184,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4091 Instruction:"XOR Eb,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x80 /6 ib"/"MI" + // Pos:4140 Instruction:"XOR Eb,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x80 /6 ib"/"MI" { .Instruction = ND_INS_XOR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 1849, + .Mnemonic = 1884, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -114704,6 +120198,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -114718,12 +120213,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4092 Instruction:"XOR Ev,Iz" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x81 /6 iz"/"MI" + // Pos:4141 Instruction:"XOR Ev,Iz" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x81 /6 iz"/"MI" { .Instruction = ND_INS_XOR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 1849, + .Mnemonic = 1884, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -114732,6 +120227,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -114746,12 +120242,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4093 Instruction:"XOR Ev,Iz" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0x81 /6 iz"/"MI" + // Pos:4142 Instruction:"XOR Ev,Iz" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0x81 /6 iz"/"MI" { .Instruction = ND_INS_XOR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 1849, + .Mnemonic = 1884, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -114760,6 +120256,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -114774,12 +120271,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4094 Instruction:"XOR Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x83 /6 ib"/"MI" + // Pos:4143 Instruction:"XOR Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:0 0x83 /6 ib"/"MI" { .Instruction = ND_INS_XOR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 1849, + .Mnemonic = 1884, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -114788,6 +120285,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -114802,12 +120300,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4095 Instruction:"XOR Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0x83 /6 ib"/"MI" + // Pos:4144 Instruction:"XOR Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:0 p:1 0x83 /6 ib"/"MI" { .Instruction = ND_INS_XOR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 1849, + .Mnemonic = 1884, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = 0, @@ -114816,6 +120314,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -114830,12 +120329,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4096 Instruction:"XOR Eb,Gb" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0x30 /r"/"MR" + // Pos:4145 Instruction:"XOR Eb,Gb" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0x30 /r"/"MR" { .Instruction = ND_INS_XOR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 1849, + .Mnemonic = 1884, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -114844,6 +120343,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -114857,12 +120357,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4097 Instruction:"XOR Ev,Gv" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0x31 /r"/"MR" + // Pos:4146 Instruction:"XOR Ev,Gv" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0x31 /r"/"MR" { .Instruction = ND_INS_XOR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 1849, + .Mnemonic = 1884, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -114871,6 +120371,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -114884,12 +120385,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4098 Instruction:"XOR Ev,Gv" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0x31 /r"/"MR" + // Pos:4147 Instruction:"XOR Ev,Gv" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0x31 /r"/"MR" { .Instruction = ND_INS_XOR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 1849, + .Mnemonic = 1884, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -114898,6 +120399,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -114911,12 +120413,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4099 Instruction:"XOR Gb,Eb" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0x32 /r"/"RM" + // Pos:4148 Instruction:"XOR Gb,Eb" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0x32 /r"/"RM" { .Instruction = ND_INS_XOR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 1849, + .Mnemonic = 1884, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -114925,6 +120427,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -114938,12 +120441,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4100 Instruction:"XOR Gv,Ev" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0x33 /r"/"RM" + // Pos:4149 Instruction:"XOR Gv,Ev" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0x33 /r"/"RM" { .Instruction = ND_INS_XOR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 1849, + .Mnemonic = 1884, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -114952,6 +120455,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -114965,12 +120469,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4101 Instruction:"XOR Gv,Ev" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0x33 /r"/"RM" + // Pos:4150 Instruction:"XOR Gv,Ev" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0x33 /r"/"RM" { .Instruction = ND_INS_XOR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 1849, + .Mnemonic = 1884, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -114979,6 +120483,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -114992,12 +120497,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4102 Instruction:"XOR Eb,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0x80 /6 ib"/"MI" + // Pos:4151 Instruction:"XOR Eb,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0x80 /6 ib"/"MI" { .Instruction = ND_INS_XOR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 1849, + .Mnemonic = 1884, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -115006,6 +120511,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -115019,12 +120525,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4103 Instruction:"XOR Ev,Iz" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0x81 /6 iz"/"MI" + // Pos:4152 Instruction:"XOR Ev,Iz" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0x81 /6 iz"/"MI" { .Instruction = ND_INS_XOR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 1849, + .Mnemonic = 1884, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -115033,6 +120539,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -115046,12 +120553,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4104 Instruction:"XOR Ev,Iz" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0x81 /6 iz"/"MI" + // Pos:4153 Instruction:"XOR Ev,Iz" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0x81 /6 iz"/"MI" { .Instruction = ND_INS_XOR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 1849, + .Mnemonic = 1884, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -115060,6 +120567,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -115073,12 +120581,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4105 Instruction:"XOR Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0x83 /6 ib"/"MI" + // Pos:4154 Instruction:"XOR Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:0 0x83 /6 ib"/"MI" { .Instruction = ND_INS_XOR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 1849, + .Mnemonic = 1884, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -115087,6 +120595,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -115100,12 +120609,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4106 Instruction:"XOR Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0x83 /6 ib"/"MI" + // Pos:4155 Instruction:"XOR Ev,Ib" Encoding:"evex m:4 l:0 nd:0 nf:1 p:1 0x83 /6 ib"/"MI" { .Instruction = ND_INS_XOR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 1849, + .Mnemonic = 1884, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_NF, @@ -115114,6 +120623,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -115127,12 +120637,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4107 Instruction:"XOR Bb,Eb,Gb" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x30 /r"/"VMR" + // Pos:4156 Instruction:"XOR Bb,Eb,Gb" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x30 /r"/"VMR" { .Instruction = ND_INS_XOR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 1849, + .Mnemonic = 1884, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -115141,6 +120651,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -115156,12 +120667,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4108 Instruction:"XOR Bv,Ev,Gv" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x31 /r"/"VMR" + // Pos:4157 Instruction:"XOR Bv,Ev,Gv" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x31 /r"/"VMR" { .Instruction = ND_INS_XOR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 1849, + .Mnemonic = 1884, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -115170,6 +120681,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -115185,12 +120697,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4109 Instruction:"XOR Bv,Ev,Gv" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0x31 /r"/"VMR" + // Pos:4158 Instruction:"XOR Bv,Ev,Gv" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0x31 /r"/"VMR" { .Instruction = ND_INS_XOR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 1849, + .Mnemonic = 1884, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -115199,6 +120711,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -115214,12 +120727,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4110 Instruction:"XOR Bb,Gb,Eb" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x32 /r"/"VRM" + // Pos:4159 Instruction:"XOR Bb,Gb,Eb" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x32 /r"/"VRM" { .Instruction = ND_INS_XOR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 1849, + .Mnemonic = 1884, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -115228,6 +120741,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -115243,12 +120757,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4111 Instruction:"XOR Bv,Gv,Ev" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x33 /r"/"VRM" + // Pos:4160 Instruction:"XOR Bv,Gv,Ev" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x33 /r"/"VRM" { .Instruction = ND_INS_XOR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 1849, + .Mnemonic = 1884, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -115257,6 +120771,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -115272,12 +120787,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4112 Instruction:"XOR Bv,Gv,Ev" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0x33 /r"/"VRM" + // Pos:4161 Instruction:"XOR Bv,Gv,Ev" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0x33 /r"/"VRM" { .Instruction = ND_INS_XOR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 1849, + .Mnemonic = 1884, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -115286,6 +120801,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -115301,12 +120817,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4113 Instruction:"XOR Bb,Eb,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x80 /6 ib"/"VMI" + // Pos:4162 Instruction:"XOR Bb,Eb,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x80 /6 ib"/"VMI" { .Instruction = ND_INS_XOR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 1849, + .Mnemonic = 1884, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -115315,6 +120831,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -115330,12 +120847,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4114 Instruction:"XOR Bv,Ev,Iz" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x81 /6 iz"/"VMI" + // Pos:4163 Instruction:"XOR Bv,Ev,Iz" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x81 /6 iz"/"VMI" { .Instruction = ND_INS_XOR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 1849, + .Mnemonic = 1884, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -115344,6 +120861,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -115359,12 +120877,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4115 Instruction:"XOR Bv,Ev,Iz" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0x81 /6 iz"/"VMI" + // Pos:4164 Instruction:"XOR Bv,Ev,Iz" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0x81 /6 iz"/"VMI" { .Instruction = ND_INS_XOR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 1849, + .Mnemonic = 1884, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -115373,6 +120891,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -115388,12 +120907,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4116 Instruction:"XOR Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x83 /6 ib"/"VMI" + // Pos:4165 Instruction:"XOR Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:0 0x83 /6 ib"/"VMI" { .Instruction = ND_INS_XOR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 1849, + .Mnemonic = 1884, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -115402,6 +120921,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -115417,12 +120937,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4117 Instruction:"XOR Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0x83 /6 ib"/"VMI" + // Pos:4166 Instruction:"XOR Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:0 p:1 0x83 /6 ib"/"VMI" { .Instruction = ND_INS_XOR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 1849, + .Mnemonic = 1884, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND, @@ -115431,6 +120951,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -115446,12 +120967,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4118 Instruction:"XOR Bb,Eb,Gb" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0x30 /r"/"VMR" + // Pos:4167 Instruction:"XOR Bb,Eb,Gb" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0x30 /r"/"VMR" { .Instruction = ND_INS_XOR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 1849, + .Mnemonic = 1884, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -115460,6 +120981,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -115474,12 +120996,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4119 Instruction:"XOR Bv,Ev,Gv" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0x31 /r"/"VMR" + // Pos:4168 Instruction:"XOR Bv,Ev,Gv" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0x31 /r"/"VMR" { .Instruction = ND_INS_XOR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 1849, + .Mnemonic = 1884, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -115488,6 +121010,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -115502,12 +121025,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4120 Instruction:"XOR Bv,Ev,Gv" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0x31 /r"/"VMR" + // Pos:4169 Instruction:"XOR Bv,Ev,Gv" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0x31 /r"/"VMR" { .Instruction = ND_INS_XOR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 1849, + .Mnemonic = 1884, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -115516,6 +121039,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -115530,12 +121054,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4121 Instruction:"XOR Bb,Gb,Eb" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0x32 /r"/"VRM" + // Pos:4170 Instruction:"XOR Bb,Gb,Eb" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0x32 /r"/"VRM" { .Instruction = ND_INS_XOR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 1849, + .Mnemonic = 1884, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -115544,6 +121068,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -115558,12 +121083,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4122 Instruction:"XOR Bv,Gv,Ev" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0x33 /r"/"VRM" + // Pos:4171 Instruction:"XOR Bv,Gv,Ev" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0x33 /r"/"VRM" { .Instruction = ND_INS_XOR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 1849, + .Mnemonic = 1884, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -115572,6 +121097,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -115586,12 +121112,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4123 Instruction:"XOR Bv,Gv,Ev" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0x33 /r"/"VRM" + // Pos:4172 Instruction:"XOR Bv,Gv,Ev" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0x33 /r"/"VRM" { .Instruction = ND_INS_XOR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 1849, + .Mnemonic = 1884, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -115600,6 +121126,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -115614,12 +121141,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4124 Instruction:"XOR Bb,Eb,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0x80 /6 ib"/"VMI" + // Pos:4173 Instruction:"XOR Bb,Eb,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0x80 /6 ib"/"VMI" { .Instruction = ND_INS_XOR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 1849, + .Mnemonic = 1884, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -115628,6 +121155,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -115642,12 +121170,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4125 Instruction:"XOR Bv,Ev,Iz" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0x81 /6 iz"/"VMI" + // Pos:4174 Instruction:"XOR Bv,Ev,Iz" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0x81 /6 iz"/"VMI" { .Instruction = ND_INS_XOR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 1849, + .Mnemonic = 1884, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -115656,6 +121184,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -115670,12 +121199,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4126 Instruction:"XOR Bv,Ev,Iz" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0x81 /6 iz"/"VMI" + // Pos:4175 Instruction:"XOR Bv,Ev,Iz" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0x81 /6 iz"/"VMI" { .Instruction = ND_INS_XOR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 1849, + .Mnemonic = 1884, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -115684,6 +121213,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -115698,12 +121228,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4127 Instruction:"XOR Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0x83 /6 ib"/"VMI" + // Pos:4176 Instruction:"XOR Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:0 0x83 /6 ib"/"VMI" { .Instruction = ND_INS_XOR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 1849, + .Mnemonic = 1884, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -115712,6 +121242,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -115726,12 +121257,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4128 Instruction:"XOR Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0x83 /6 ib"/"VMI" + // Pos:4177 Instruction:"XOR Bv,Ev,Ib" Encoding:"evex m:4 l:0 nd:1 nf:1 p:1 0x83 /6 ib"/"VMI" { .Instruction = ND_INS_XOR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_APX_F, - .Mnemonic = 1849, + .Mnemonic = 1884, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF, .ValidDecorators = ND_DECO_ND|ND_DECO_NF, @@ -115740,6 +121271,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_APX_EVEX_INT, .FpuFlags = 0, .EvexMode = ND_EVEXM_LEGACY, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -115754,12 +121286,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4129 Instruction:"XOR Eb,Gb" Encoding:"0x30 /r"/"MR" + // Pos:4178 Instruction:"XOR Eb,Gb" Encoding:"0x30 /r"/"MR" { .Instruction = ND_INS_XOR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_I86, - .Mnemonic = 1849, + .Mnemonic = 1884, .ValidPrefixes = ND_PREF_HLE|ND_PREF_LOCK, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -115768,6 +121300,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -115782,12 +121315,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4130 Instruction:"XOR Ev,Gv" Encoding:"0x31 /r"/"MR" + // Pos:4179 Instruction:"XOR Ev,Gv" Encoding:"0x31 /r"/"MR" { .Instruction = ND_INS_XOR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_I86, - .Mnemonic = 1849, + .Mnemonic = 1884, .ValidPrefixes = ND_PREF_HLE|ND_PREF_LOCK, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -115796,6 +121329,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -115810,12 +121344,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4131 Instruction:"XOR Gb,Eb" Encoding:"0x32 /r"/"RM" + // Pos:4180 Instruction:"XOR Gb,Eb" Encoding:"0x32 /r"/"RM" { .Instruction = ND_INS_XOR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_I86, - .Mnemonic = 1849, + .Mnemonic = 1884, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -115824,6 +121358,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -115838,12 +121373,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4132 Instruction:"XOR Gv,Ev" Encoding:"0x33 /r"/"RM" + // Pos:4181 Instruction:"XOR Gv,Ev" Encoding:"0x33 /r"/"RM" { .Instruction = ND_INS_XOR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_I86, - .Mnemonic = 1849, + .Mnemonic = 1884, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -115852,6 +121387,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -115866,12 +121402,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4133 Instruction:"XOR AL,Ib" Encoding:"0x34 ib"/"I" + // Pos:4182 Instruction:"XOR AL,Ib" Encoding:"0x34 ib"/"I" { .Instruction = ND_INS_XOR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_I86, - .Mnemonic = 1849, + .Mnemonic = 1884, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -115880,6 +121416,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -115894,12 +121431,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4134 Instruction:"XOR rAX,Iz" Encoding:"0x35 iz"/"I" + // Pos:4183 Instruction:"XOR rAX,Iz" Encoding:"0x35 iz"/"I" { .Instruction = ND_INS_XOR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_I86, - .Mnemonic = 1849, + .Mnemonic = 1884, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -115908,6 +121445,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -115922,12 +121460,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4135 Instruction:"XOR Eb,Ib" Encoding:"0x80 /6 ib"/"MI" + // Pos:4184 Instruction:"XOR Eb,Ib" Encoding:"0x80 /6 ib"/"MI" { .Instruction = ND_INS_XOR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_I86, - .Mnemonic = 1849, + .Mnemonic = 1884, .ValidPrefixes = ND_PREF_HLE|ND_PREF_LOCK, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -115936,6 +121474,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -115950,12 +121489,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4136 Instruction:"XOR Ev,Iz" Encoding:"0x81 /6 iz"/"MI" + // Pos:4185 Instruction:"XOR Ev,Iz" Encoding:"0x81 /6 iz"/"MI" { .Instruction = ND_INS_XOR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_I86, - .Mnemonic = 1849, + .Mnemonic = 1884, .ValidPrefixes = ND_PREF_HLE|ND_PREF_LOCK, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -115964,6 +121503,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -115978,12 +121518,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4137 Instruction:"XOR Eb,Ib" Encoding:"0x82 /6 iz"/"MI" + // Pos:4186 Instruction:"XOR Eb,Ib" Encoding:"0x82 /6 iz"/"MI" { .Instruction = ND_INS_XOR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_I86, - .Mnemonic = 1849, + .Mnemonic = 1884, .ValidPrefixes = ND_PREF_HLE|ND_PREF_LOCK, .ValidModes = ND_MOD_R0|ND_MOD_R1|ND_MOD_R2|ND_MOD_R3|ND_MOD_REAL|ND_MOD_V8086|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -115992,6 +121532,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -116006,12 +121547,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4138 Instruction:"XOR Ev,Ib" Encoding:"0x83 /6 ib"/"MI" + // Pos:4187 Instruction:"XOR Ev,Ib" Encoding:"0x83 /6 ib"/"MI" { .Instruction = ND_INS_XOR, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_I86, - .Mnemonic = 1849, + .Mnemonic = 1884, .ValidPrefixes = ND_PREF_HLE|ND_PREF_LOCK, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -116020,6 +121561,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_PF|NDR_RFLAG_ZF|NDR_RFLAG_SF, .SetFlags = 0|NDR_RFLAG_AF, @@ -116034,12 +121576,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4139 Instruction:"XORPD Vpd,Wpd" Encoding:"0x66 0x0F 0x57 /r"/"RM" + // Pos:4188 Instruction:"XORPD Vpd,Wpd" Encoding:"0x66 0x0F 0x57 /r"/"RM" { .Instruction = ND_INS_XORPD, .Category = ND_CAT_LOGICAL_FP, .IsaSet = ND_SET_SSE2, - .Mnemonic = 1850, + .Mnemonic = 1885, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -116048,6 +121590,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -116061,12 +121604,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4140 Instruction:"XORPS Vps,Wps" Encoding:"NP 0x0F 0x57 /r"/"RM" + // Pos:4189 Instruction:"XORPS Vps,Wps" Encoding:"NP 0x0F 0x57 /r"/"RM" { .Instruction = ND_INS_XORPS, .Category = ND_CAT_LOGICAL_FP, .IsaSet = ND_SET_SSE, - .Mnemonic = 1851, + .Mnemonic = 1886, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -116075,6 +121618,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = ND_EXT_4, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -116088,12 +121632,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4141 Instruction:"XRESLDTRK" Encoding:"0xF2 0x0F 0x01 /0xE9"/"" + // Pos:4190 Instruction:"XRESLDTRK" Encoding:"0xF2 0x0F 0x01 /0xE9"/"" { .Instruction = ND_INS_XRESLDTRK, .Category = ND_CAT_MISC, .IsaSet = ND_SET_TSXLDTRK, - .Mnemonic = 1852, + .Mnemonic = 1887, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -116102,6 +121646,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -116114,12 +121659,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4142 Instruction:"XRSTOR M?" Encoding:"NP 0x0F 0xAE /5:mem"/"M" + // Pos:4191 Instruction:"XRSTOR M?" Encoding:"NP 0x0F 0xAE /5:mem"/"M" { .Instruction = ND_INS_XRSTOR, .Category = ND_CAT_XSAVE, .IsaSet = ND_SET_XSAVE, - .Mnemonic = 1853, + .Mnemonic = 1888, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -116128,6 +121673,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -116144,12 +121690,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4143 Instruction:"XRSTOR64 M?" Encoding:"rexw NP 0x0F 0xAE /5:mem"/"M" + // Pos:4192 Instruction:"XRSTOR64 M?" Encoding:"rexw NP 0x0F 0xAE /5:mem"/"M" { .Instruction = ND_INS_XRSTOR, .Category = ND_CAT_XSAVE, .IsaSet = ND_SET_XSAVE, - .Mnemonic = 1854, + .Mnemonic = 1889, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -116158,6 +121704,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -116174,12 +121721,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4144 Instruction:"XRSTORS M?" Encoding:"NP 0x0F 0xC7 /3:mem"/"M" + // Pos:4193 Instruction:"XRSTORS M?" Encoding:"NP 0x0F 0xC7 /3:mem"/"M" { .Instruction = ND_INS_XRSTORS, .Category = ND_CAT_XSAVE, .IsaSet = ND_SET_XSAVES, - .Mnemonic = 1855, + .Mnemonic = 1890, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -116188,6 +121735,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -116204,12 +121752,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4145 Instruction:"XRSTORS64 M?" Encoding:"rexw NP 0x0F 0xC7 /3:mem"/"M" + // Pos:4194 Instruction:"XRSTORS64 M?" Encoding:"rexw NP 0x0F 0xC7 /3:mem"/"M" { .Instruction = ND_INS_XRSTORS, .Category = ND_CAT_XSAVE, .IsaSet = ND_SET_XSAVES, - .Mnemonic = 1856, + .Mnemonic = 1891, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -116218,6 +121766,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -116234,12 +121783,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4146 Instruction:"XSAVE M?" Encoding:"NP 0x0F 0xAE /4:mem"/"M" + // Pos:4195 Instruction:"XSAVE M?" Encoding:"NP 0x0F 0xAE /4:mem"/"M" { .Instruction = ND_INS_XSAVE, .Category = ND_CAT_XSAVE, .IsaSet = ND_SET_XSAVE, - .Mnemonic = 1857, + .Mnemonic = 1892, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -116248,6 +121797,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -116264,12 +121814,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4147 Instruction:"XSAVE64 M?" Encoding:"rexw NP 0x0F 0xAE /4:mem"/"M" + // Pos:4196 Instruction:"XSAVE64 M?" Encoding:"rexw NP 0x0F 0xAE /4:mem"/"M" { .Instruction = ND_INS_XSAVE, .Category = ND_CAT_XSAVE, .IsaSet = ND_SET_XSAVE, - .Mnemonic = 1858, + .Mnemonic = 1893, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -116278,6 +121828,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -116294,12 +121845,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4148 Instruction:"XSAVEC M?" Encoding:"NP 0x0F 0xC7 /4:mem"/"M" + // Pos:4197 Instruction:"XSAVEC M?" Encoding:"NP 0x0F 0xC7 /4:mem"/"M" { .Instruction = ND_INS_XSAVEC, .Category = ND_CAT_XSAVE, .IsaSet = ND_SET_XSAVEC, - .Mnemonic = 1859, + .Mnemonic = 1894, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -116308,6 +121859,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -116324,12 +121876,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4149 Instruction:"XSAVEC64 M?" Encoding:"rexw NP 0x0F 0xC7 /4:mem"/"M" + // Pos:4198 Instruction:"XSAVEC64 M?" Encoding:"rexw NP 0x0F 0xC7 /4:mem"/"M" { .Instruction = ND_INS_XSAVEC, .Category = ND_CAT_XSAVE, .IsaSet = ND_SET_XSAVEC, - .Mnemonic = 1860, + .Mnemonic = 1895, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -116338,6 +121890,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -116354,12 +121907,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4150 Instruction:"XSAVEOPT M?" Encoding:"NP 0x0F 0xAE /6:mem"/"M" + // Pos:4199 Instruction:"XSAVEOPT M?" Encoding:"NP 0x0F 0xAE /6:mem"/"M" { .Instruction = ND_INS_XSAVEOPT, .Category = ND_CAT_XSAVE, .IsaSet = ND_SET_XSAVE, - .Mnemonic = 1861, + .Mnemonic = 1896, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -116368,6 +121921,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -116384,12 +121938,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4151 Instruction:"XSAVEOPT64 M?" Encoding:"rexw NP 0x0F 0xAE /6:mem"/"M" + // Pos:4200 Instruction:"XSAVEOPT64 M?" Encoding:"rexw NP 0x0F 0xAE /6:mem"/"M" { .Instruction = ND_INS_XSAVEOPT, .Category = ND_CAT_XSAVE, .IsaSet = ND_SET_XSAVE, - .Mnemonic = 1862, + .Mnemonic = 1897, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -116398,6 +121952,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -116414,12 +121969,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4152 Instruction:"XSAVES M?" Encoding:"NP 0x0F 0xC7 /5:mem"/"M" + // Pos:4201 Instruction:"XSAVES M?" Encoding:"NP 0x0F 0xC7 /5:mem"/"M" { .Instruction = ND_INS_XSAVES, .Category = ND_CAT_XSAVE, .IsaSet = ND_SET_XSAVES, - .Mnemonic = 1863, + .Mnemonic = 1898, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -116428,6 +121983,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -116444,12 +122000,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4153 Instruction:"XSAVES64 M?" Encoding:"rexw NP 0x0F 0xC7 /5:mem"/"M" + // Pos:4202 Instruction:"XSAVES64 M?" Encoding:"rexw NP 0x0F 0xC7 /5:mem"/"M" { .Instruction = ND_INS_XSAVES, .Category = ND_CAT_XSAVE, .IsaSet = ND_SET_XSAVES, - .Mnemonic = 1864, + .Mnemonic = 1899, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -116458,6 +122014,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -116474,12 +122031,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4154 Instruction:"XSETBV" Encoding:"NP 0x0F 0x01 /0xD1"/"" + // Pos:4203 Instruction:"XSETBV" Encoding:"NP 0x0F 0x01 /0xD1"/"" { .Instruction = ND_INS_XSETBV, .Category = ND_CAT_XSAVE, .IsaSet = ND_SET_XSAVE, - .Mnemonic = 1865, + .Mnemonic = 1900, .ValidPrefixes = 0, .ValidModes = ND_MOD_R0|ND_MOD_REAL|ND_MOD_V8086|ND_MOD_PROT|ND_MOD_COMPAT|ND_MOD_LONG|ND_MOD_VMXR|ND_MOD_VMXN|ND_MOD_VMXR_SEAM|ND_MOD_VMXN_SEAM|ND_MOD_VMX_OFF|ND_MOD_SMM|ND_MOD_SMM_OFF|ND_MOD_SGX_OFF|ND_MOD_TSX|ND_MOD_TSX_OFF, .ValidDecorators = 0, @@ -116488,6 +122045,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -116503,12 +122061,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4155 Instruction:"XSUSLDTRK" Encoding:"0xF2 0x0F 0x01 /0xE8"/"" + // Pos:4204 Instruction:"XSUSLDTRK" Encoding:"0xF2 0x0F 0x01 /0xE8"/"" { .Instruction = ND_INS_XSUSLDTRK, .Category = ND_CAT_MISC, .IsaSet = ND_SET_TSXLDTRK, - .Mnemonic = 1866, + .Mnemonic = 1901, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -116517,6 +122075,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -116529,12 +122088,12 @@ const ND_IDBE gInstructions[4157] = }, }, - // Pos:4156 Instruction:"XTEST" Encoding:"NP 0x0F 0x01 /0xD6"/"" + // Pos:4205 Instruction:"XTEST" Encoding:"NP 0x0F 0x01 /0xD6"/"" { .Instruction = ND_INS_XTEST, .Category = ND_CAT_LOGIC, .IsaSet = ND_SET_TSX, - .Mnemonic = 1867, + .Mnemonic = 1902, .ValidPrefixes = 0, .ValidModes = ND_MOD_ANY, .ValidDecorators = 0, @@ -116543,6 +122102,7 @@ const ND_IDBE gInstructions[4157] = .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0|NDR_RFLAG_ZF, .SetFlags = 0, diff --git a/bddisasm/include/bdx86_mnemonics.h b/bddisasm/include/bdx86_mnemonics.h index 09ef09a..43546da 100644 --- a/bddisasm/include/bdx86_mnemonics.h +++ b/bddisasm/include/bdx86_mnemonics.h @@ -12,7 +12,7 @@ #ifndef BDDISASM_NO_MNEMONIC -const char *gMnemonics[1868] = +const char *gMnemonics[1903] = { "AAA", "AAD", "AADD", "AAM", "AAND", "AAS", "ADC", "ADCX", "ADD", "ADDPD", "ADDPS", "ADDSD", "ADDSS", "ADDSUBPD", "ADDSUBPS", "ADOX", @@ -92,9 +92,9 @@ const char *gMnemonics[1868] = "MOVHLPS", "MOVHPD", "MOVHPS", "MOVLHPS", "MOVLPD", "MOVLPS", "MOVMSKPD", "MOVMSKPS", "MOVNTDQ", "MOVNTDQA", "MOVNTI", "MOVNTPD", "MOVNTPS", "MOVNTQ", "MOVNTSD", "MOVNTSS", "MOVQ", "MOVQ2DQ", - "MOVSB", "MOVSD", "MOVSHDUP", "MOVSLDUP", "MOVSQ", "MOVSS", "MOVSW", - "MOVSX", "MOVSXD", "MOVUPD", "MOVUPS", "MOVZX", "MPSADBW", "MUL", - "MULPD", "MULPS", "MULSD", "MULSS", "MULX", "MWAIT", "MWAITX", + "MOVRS", "MOVSB", "MOVSD", "MOVSHDUP", "MOVSLDUP", "MOVSQ", "MOVSS", + "MOVSW", "MOVSX", "MOVSXD", "MOVUPD", "MOVUPS", "MOVZX", "MPSADBW", + "MUL", "MULPD", "MULPS", "MULSD", "MULSS", "MULX", "MWAIT", "MWAITX", "NEG", "NOP", "NOT", "OR", "ORPD", "ORPS", "OUT", "OUTSB", "OUTSD", "OUTSW", "PABSB", "PABSD", "PABSW", "PACKSSDW", "PACKSSWB", "PACKUSDW", "PACKUSWB", "PADDB", "PADDD", "PADDQ", "PADDSB", "PADDSW", "PADDUSB", @@ -116,77 +116,85 @@ const char *gMnemonics[1868] = "PMULHUW", "PMULHW", "PMULLD", "PMULLW", "PMULUDQ", "POP", "POP2", "POP2P", "POPA", "POPAD", "POPCNT", "POPFD", "POPFQ", "POPFW", "POPP", "POR", "PREFETCH", "PREFETCHE", "PREFETCHIT0", "PREFETCHIT1", - "PREFETCHM", "PREFETCHNTA", "PREFETCHT0", "PREFETCHT1", "PREFETCHT2", - "PREFETCHW", "PREFETCHWT1", "PSADBW", "PSHUFB", "PSHUFD", "PSHUFHW", - "PSHUFLW", "PSHUFW", "PSIGNB", "PSIGND", "PSIGNW", "PSLLD", "PSLLDQ", - "PSLLQ", "PSLLW", "PSMASH", "PSRAD", "PSRAW", "PSRLD", "PSRLDQ", - "PSRLQ", "PSRLW", "PSUBB", "PSUBD", "PSUBQ", "PSUBSB", "PSUBSW", - "PSUBUSB", "PSUBUSW", "PSUBW", "PSWAPD", "PTEST", "PTWRITE", - "PUNPCKHBW", "PUNPCKHDQ", "PUNPCKHQDQ", "PUNPCKHWD", "PUNPCKLBW", - "PUNPCKLDQ", "PUNPCKLQDQ", "PUNPCKLWD", "PUSH", "PUSH2", "PUSH2P", - "PUSHA", "PUSHAD", "PUSHFD", "PUSHFQ", "PUSHFW", "PUSHP", "PVALIDATE", - "PXOR", "RCL", "RCPPS", "RCPSS", "RCR", "RDFSBASE", "RDGSBASE", - "RDMSR", "RDMSRLIST", "RDPID", "RDPKRU", "RDPMC", "RDPRU", "RDRAND", - "RDSEED", "RDSSPD", "RDSSPQ", "RDTSC", "RDTSCP", "RETF", "RETN", - "RMPADJUST", "RMPQUERY", "RMPREAD", "RMPUPDATE", "ROL", "ROR", - "RORX", "ROUNDPD", "ROUNDPS", "ROUNDSD", "ROUNDSS", "RSM", "RSQRTPS", - "RSQRTSS", "RSTORSSP", "SAHF", "SAL", "SALC", "SAR", "SARX", - "SAVEPREVSSP", "SBB", "SCASB", "SCASD", "SCASQ", "SCASW", "SEAMCALL", - "SEAMOPS", "SEAMRET", "SENDUIPI", "SERIALIZE", "SETBE", "SETC", - "SETL", "SETLE", "SETNBE", "SETNC", "SETNL", "SETNLE", "SETNO", - "SETNP", "SETNS", "SETNZ", "SETO", "SETP", "SETS", "SETSSBSY", - "SETZ", "SFENCE", "SGDT", "SHA1MSG1", "SHA1MSG2", "SHA1NEXTE", - "SHA1RNDS4", "SHA256MSG1", "SHA256MSG2", "SHA256RNDS2", "SHL", - "SHLD", "SHLX", "SHR", "SHRD", "SHRX", "SHUFPD", "SHUFPS", "SIDT", - "SKINIT", "SLDT", "SLWPCB", "SMSW", "SPFLT", "SQRTPD", "SQRTPS", - "SQRTSD", "SQRTSS", "STAC", "STC", "STD", "STGI", "STI", "STMXCSR", - "STOSB", "STOSD", "STOSQ", "STOSW", "STR", "STTILECFG", "STUI", - "SUB", "SUBPD", "SUBPS", "SUBSD", "SUBSS", "SWAPGS", "SYSCALL", - "SYSENTER", "SYSEXIT", "SYSRET", "T1MSKC", "TCMMIMFP16PS", "TCMMRLFP16PS", - "TDCALL", "TDPBF16PS", "TDPBSSD", "TDPBSUD", "TDPBUSD", "TDPBUUD", - "TDPFP16PS", "TEST", "TESTUI", "TILELOADD", "TILELOADDT1", "TILERELEASE", - "TILESTORED", "TILEZERO", "TLBSYNC", "TPAUSE", "TZCNT", "TZMSK", - "UCOMISD", "UCOMISS", "UD0", "UD1", "UD2", "UIRET", "UMONITOR", - "UMWAIT", "UNPCKHPD", "UNPCKHPS", "UNPCKLPD", "UNPCKLPS", "URDMSR", - "UWRMSR", "V4FMADDPS", "V4FMADDSS", "V4FNMADDPS", "V4FNMADDSS", - "VADDNEPBF16", "VADDPD", "VADDPH", "VADDPS", "VADDSD", "VADDSH", - "VADDSS", "VADDSUBPD", "VADDSUBPS", "VAESDEC", "VAESDECLAST", - "VAESENC", "VAESENCLAST", "VAESIMC", "VAESKEYGENASSIST", "VALIGND", - "VALIGNQ", "VANDNPD", "VANDNPS", "VANDPD", "VANDPS", "VBCSTNEBF162PS", - "VBCSTNESH2PS", "VBLENDMPD", "VBLENDMPS", "VBLENDPD", "VBLENDPS", - "VBLENDVPD", "VBLENDVPS", "VBROADCASTF128", "VBROADCASTF32X2", - "VBROADCASTF32X4", "VBROADCASTF32X8", "VBROADCASTF64X2", "VBROADCASTF64X4", - "VBROADCASTI128", "VBROADCASTI32X2", "VBROADCASTI32X4", "VBROADCASTI32X8", - "VBROADCASTI64X2", "VBROADCASTI64X4", "VBROADCASTSD", "VBROADCASTSS", - "VCMPPBF16", "VCMPPD", "VCMPPH", "VCMPPS", "VCMPSD", "VCMPSH", - "VCMPSS", "VCOMISD", "VCOMISH", "VCOMISS", "VCOMPRESSPD", "VCOMPRESSPS", - "VCOMSBF16", "VCOMXSD", "VCOMXSH", "VCOMXSS", "VCVT2PS2PHX", - "VCVTBIASPH2BF8", "VCVTBIASPH2BF8S", "VCVTBIASPH2HF8", "VCVTBIASPH2HF8S", - "VCVTDQ2PD", "VCVTDQ2PH", "VCVTDQ2PS", "VCVTHF82PH", "VCVTNE2PH2BF8", - "VCVTNE2PH2BF8S", "VCVTNE2PH2HF8", "VCVTNE2PH2HF8S", "VCVTNE2PS2BF16", - "VCVTNEBF162IBS", "VCVTNEBF162IUBS", "VCVTNEEBF162PS", "VCVTNEEPH2PS", - "VCVTNEOBF162PS", "VCVTNEOPH2PS", "VCVTNEPH2BF8", "VCVTNEPH2BF8S", - "VCVTNEPH2HF8", "VCVTNEPH2HF8S", "VCVTNEPS2BF16", "VCVTPD2DQ", - "VCVTPD2PH", "VCVTPD2PS", "VCVTPD2QQ", "VCVTPD2UDQ", "VCVTPD2UQQ", - "VCVTPH2DQ", "VCVTPH2IBS", "VCVTPH2IUBS", "VCVTPH2PD", "VCVTPH2PS", - "VCVTPH2PSX", "VCVTPH2QQ", "VCVTPH2UDQ", "VCVTPH2UQQ", "VCVTPH2UW", - "VCVTPH2W", "VCVTPS2DQ", "VCVTPS2IBS", "VCVTPS2IUBS", "VCVTPS2PD", - "VCVTPS2PH", "VCVTPS2PHX", "VCVTPS2QQ", "VCVTPS2UDQ", "VCVTPS2UQQ", - "VCVTQQ2PD", "VCVTQQ2PH", "VCVTQQ2PS", "VCVTSD2SH", "VCVTSD2SI", - "VCVTSD2SS", "VCVTSD2USI", "VCVTSH2SD", "VCVTSH2SI", "VCVTSH2SS", - "VCVTSH2USI", "VCVTSI2SD", "VCVTSI2SH", "VCVTSI2SS", "VCVTSS2SD", - "VCVTSS2SH", "VCVTSS2SI", "VCVTSS2USI", "VCVTTNEBF162IBS", "VCVTTNEBF162IUBS", - "VCVTTPD2DQ", "VCVTTPD2DQS", "VCVTTPD2QQ", "VCVTTPD2QQS", "VCVTTPD2UDQ", - "VCVTTPD2UDQS", "VCVTTPD2UQQ", "VCVTTPD2UQQS", "VCVTTPH2DQ", - "VCVTTPH2IBS", "VCVTTPH2IUBS", "VCVTTPH2QQ", "VCVTTPH2UDQ", "VCVTTPH2UQQ", - "VCVTTPH2UW", "VCVTTPH2W", "VCVTTPS2DQ", "VCVTTPS2DQS", "VCVTTPS2IBS", - "VCVTTPS2IUBS", "VCVTTPS2QQ", "VCVTTPS2QQS", "VCVTTPS2UDQ", "VCVTTPS2UDQS", - "VCVTTPS2UQQ", "VCVTTPS2UQQS", "VCVTTSD2SI", "VCVTTSD2SIS", "VCVTTSD2USI", - "VCVTTSD2USIS", "VCVTTSH2SI", "VCVTTSH2USI", "VCVTTSS2SI", "VCVTTSS2SIS", - "VCVTTSS2USI", "VCVTTSS2USIS", "VCVTUDQ2PD", "VCVTUDQ2PH", "VCVTUDQ2PS", - "VCVTUQQ2PD", "VCVTUQQ2PH", "VCVTUQQ2PS", "VCVTUSI2SD", "VCVTUSI2SH", - "VCVTUSI2SS", "VCVTUW2PH", "VCVTW2PH", "VDBPSADBW", "VDIVNEPBF16", - "VDIVPD", "VDIVPH", "VDIVPS", "VDIVSD", "VDIVSH", "VDIVSS", "VDPBF16PS", + "PREFETCHM", "PREFETCHNTA", "PREFETCHRST2", "PREFETCHT0", "PREFETCHT1", + "PREFETCHT2", "PREFETCHW", "PREFETCHWT1", "PSADBW", "PSHUFB", + "PSHUFD", "PSHUFHW", "PSHUFLW", "PSHUFW", "PSIGNB", "PSIGND", + "PSIGNW", "PSLLD", "PSLLDQ", "PSLLQ", "PSLLW", "PSMASH", "PSRAD", + "PSRAW", "PSRLD", "PSRLDQ", "PSRLQ", "PSRLW", "PSUBB", "PSUBD", + "PSUBQ", "PSUBSB", "PSUBSW", "PSUBUSB", "PSUBUSW", "PSUBW", "PSWAPD", + "PTEST", "PTWRITE", "PUNPCKHBW", "PUNPCKHDQ", "PUNPCKHQDQ", "PUNPCKHWD", + "PUNPCKLBW", "PUNPCKLDQ", "PUNPCKLQDQ", "PUNPCKLWD", "PUSH", + "PUSH2", "PUSH2P", "PUSHA", "PUSHAD", "PUSHFD", "PUSHFQ", "PUSHFW", + "PUSHP", "PVALIDATE", "PXOR", "RCL", "RCPPS", "RCPSS", "RCR", + "RDFSBASE", "RDGSBASE", "RDMSR", "RDMSRLIST", "RDPID", "RDPKRU", + "RDPMC", "RDPRU", "RDRAND", "RDSEED", "RDSSPD", "RDSSPQ", "RDTSC", + "RDTSCP", "RETF", "RETN", "RMPADJUST", "RMPQUERY", "RMPREAD", + "RMPUPDATE", "ROL", "ROR", "RORX", "ROUNDPD", "ROUNDPS", "ROUNDSD", + "ROUNDSS", "RSM", "RSQRTPS", "RSQRTSS", "RSTORSSP", "SAHF", "SAL", + "SALC", "SAR", "SARX", "SAVEPREVSSP", "SBB", "SCASB", "SCASD", + "SCASQ", "SCASW", "SEAMCALL", "SEAMOPS", "SEAMRET", "SENDUIPI", + "SERIALIZE", "SETBE", "SETC", "SETL", "SETLE", "SETNBE", "SETNC", + "SETNL", "SETNLE", "SETNO", "SETNP", "SETNS", "SETNZ", "SETO", + "SETP", "SETS", "SETSSBSY", "SETZ", "SFENCE", "SGDT", "SHA1MSG1", + "SHA1MSG2", "SHA1NEXTE", "SHA1RNDS4", "SHA256MSG1", "SHA256MSG2", + "SHA256RNDS2", "SHL", "SHLD", "SHLX", "SHR", "SHRD", "SHRX", + "SHUFPD", "SHUFPS", "SIDT", "SKINIT", "SLDT", "SLWPCB", "SMSW", + "SPFLT", "SQRTPD", "SQRTPS", "SQRTSD", "SQRTSS", "STAC", "STC", + "STD", "STGI", "STI", "STMXCSR", "STOSB", "STOSD", "STOSQ", "STOSW", + "STR", "STTILECFG", "STUI", "SUB", "SUBPD", "SUBPS", "SUBSD", + "SUBSS", "SWAPGS", "SYSCALL", "SYSENTER", "SYSEXIT", "SYSRET", + "T1MSKC", "T2RPNTLVWZ0", "T2RPNTLVWZ0RS", "T2RPNTLVWZ0RST1", + "T2RPNTLVWZ0T1", "T2RPNTLVWZ1", "T2RPNTLVWZ1RS", "T2RPNTLVWZ1RST1", + "T2RPNTLVWZ1T1", "TCMMIMFP16PS", "TCMMRLFP16PS", "TCONJTCMMIMFP16PS", + "TCONJTFP16", "TCVTROWD2PS", "TCVTROWPS2PBF16H", "TCVTROWPS2PBF16L", + "TCVTROWPS2PHH", "TCVTROWPS2PHL", "TDCALL", "TDPBF16PS", "TDPBF8PS", + "TDPBHF8PS", "TDPBSSD", "TDPBSUD", "TDPBUSD", "TDPBUUD", "TDPFP16PS", + "TDPHBF8PS", "TDPHF8PS", "TEST", "TESTUI", "TILELOADD", "TILELOADDRS", + "TILELOADDRST1", "TILELOADDT1", "TILEMOVROW", "TILERELEASE", + "TILESTORED", "TILEZERO", "TLBSYNC", "TMMULTF32PS", "TPAUSE", + "TTCMMIMFP16PS", "TTCMMRLFP16PS", "TTDPBF16PS", "TTDPFP16PS", + "TTMMULTF32PS", "TTRANSPOSED", "TZCNT", "TZMSK", "UCOMISD", "UCOMISS", + "UD0", "UD1", "UD2", "UIRET", "UMONITOR", "UMWAIT", "UNPCKHPD", + "UNPCKHPS", "UNPCKLPD", "UNPCKLPS", "URDMSR", "UWRMSR", "V4FMADDPS", + "V4FMADDSS", "V4FNMADDPS", "V4FNMADDSS", "VADDNEPBF16", "VADDPD", + "VADDPH", "VADDPS", "VADDSD", "VADDSH", "VADDSS", "VADDSUBPD", + "VADDSUBPS", "VAESDEC", "VAESDECLAST", "VAESENC", "VAESENCLAST", + "VAESIMC", "VAESKEYGENASSIST", "VALIGND", "VALIGNQ", "VANDNPD", + "VANDNPS", "VANDPD", "VANDPS", "VBCSTNEBF162PS", "VBCSTNESH2PS", + "VBLENDMPD", "VBLENDMPS", "VBLENDPD", "VBLENDPS", "VBLENDVPD", + "VBLENDVPS", "VBROADCASTF128", "VBROADCASTF32X2", "VBROADCASTF32X4", + "VBROADCASTF32X8", "VBROADCASTF64X2", "VBROADCASTF64X4", "VBROADCASTI128", + "VBROADCASTI32X2", "VBROADCASTI32X4", "VBROADCASTI32X8", "VBROADCASTI64X2", + "VBROADCASTI64X4", "VBROADCASTSD", "VBROADCASTSS", "VCMPPBF16", + "VCMPPD", "VCMPPH", "VCMPPS", "VCMPSD", "VCMPSH", "VCMPSS", "VCOMISD", + "VCOMISH", "VCOMISS", "VCOMPRESSPD", "VCOMPRESSPS", "VCOMSBF16", + "VCOMXSD", "VCOMXSH", "VCOMXSS", "VCVT2PS2PHX", "VCVTBIASPH2BF8", + "VCVTBIASPH2BF8S", "VCVTBIASPH2HF8", "VCVTBIASPH2HF8S", "VCVTDQ2PD", + "VCVTDQ2PH", "VCVTDQ2PS", "VCVTHF82PH", "VCVTNE2PH2BF8", "VCVTNE2PH2BF8S", + "VCVTNE2PH2HF8", "VCVTNE2PH2HF8S", "VCVTNE2PS2BF16", "VCVTNEBF162IBS", + "VCVTNEBF162IUBS", "VCVTNEEBF162PS", "VCVTNEEPH2PS", "VCVTNEOBF162PS", + "VCVTNEOPH2PS", "VCVTNEPH2BF8", "VCVTNEPH2BF8S", "VCVTNEPH2HF8", + "VCVTNEPH2HF8S", "VCVTNEPS2BF16", "VCVTPD2DQ", "VCVTPD2PH", "VCVTPD2PS", + "VCVTPD2QQ", "VCVTPD2UDQ", "VCVTPD2UQQ", "VCVTPH2DQ", "VCVTPH2IBS", + "VCVTPH2IUBS", "VCVTPH2PD", "VCVTPH2PS", "VCVTPH2PSX", "VCVTPH2QQ", + "VCVTPH2UDQ", "VCVTPH2UQQ", "VCVTPH2UW", "VCVTPH2W", "VCVTPS2DQ", + "VCVTPS2IBS", "VCVTPS2IUBS", "VCVTPS2PD", "VCVTPS2PH", "VCVTPS2PHX", + "VCVTPS2QQ", "VCVTPS2UDQ", "VCVTPS2UQQ", "VCVTQQ2PD", "VCVTQQ2PH", + "VCVTQQ2PS", "VCVTSD2SH", "VCVTSD2SI", "VCVTSD2SS", "VCVTSD2USI", + "VCVTSH2SD", "VCVTSH2SI", "VCVTSH2SS", "VCVTSH2USI", "VCVTSI2SD", + "VCVTSI2SH", "VCVTSI2SS", "VCVTSS2SD", "VCVTSS2SH", "VCVTSS2SI", + "VCVTSS2USI", "VCVTTNEBF162IBS", "VCVTTNEBF162IUBS", "VCVTTPD2DQ", + "VCVTTPD2DQS", "VCVTTPD2QQ", "VCVTTPD2QQS", "VCVTTPD2UDQ", "VCVTTPD2UDQS", + "VCVTTPD2UQQ", "VCVTTPD2UQQS", "VCVTTPH2DQ", "VCVTTPH2IBS", "VCVTTPH2IUBS", + "VCVTTPH2QQ", "VCVTTPH2UDQ", "VCVTTPH2UQQ", "VCVTTPH2UW", "VCVTTPH2W", + "VCVTTPS2DQ", "VCVTTPS2DQS", "VCVTTPS2IBS", "VCVTTPS2IUBS", "VCVTTPS2QQ", + "VCVTTPS2QQS", "VCVTTPS2UDQ", "VCVTTPS2UDQS", "VCVTTPS2UQQ", + "VCVTTPS2UQQS", "VCVTTSD2SI", "VCVTTSD2SIS", "VCVTTSD2USI", "VCVTTSD2USIS", + "VCVTTSH2SI", "VCVTTSH2USI", "VCVTTSS2SI", "VCVTTSS2SIS", "VCVTTSS2USI", + "VCVTTSS2USIS", "VCVTUDQ2PD", "VCVTUDQ2PH", "VCVTUDQ2PS", "VCVTUQQ2PD", + "VCVTUQQ2PH", "VCVTUQQ2PS", "VCVTUSI2SD", "VCVTUSI2SH", "VCVTUSI2SS", + "VCVTUW2PH", "VCVTW2PH", "VDBPSADBW", "VDIVNEPBF16", "VDIVPD", + "VDIVPH", "VDIVPS", "VDIVSD", "VDIVSH", "VDIVSS", "VDPBF16PS", "VDPPD", "VDPPHPS", "VDPPS", "VERR", "VERW", "VEXP2PD", "VEXP2PS", "VEXPANDPD", "VEXPANDPS", "VEXTRACTF128", "VEXTRACTF32X4", "VEXTRACTF32X8", "VEXTRACTF64X2", "VEXTRACTF64X4", "VEXTRACTI128", "VEXTRACTI32X4", @@ -243,101 +251,102 @@ const char *gMnemonics[1868] = "VMOVDQA64", "VMOVDQU", "VMOVDQU16", "VMOVDQU32", "VMOVDQU64", "VMOVDQU8", "VMOVHLPS", "VMOVHPD", "VMOVHPS", "VMOVLHPS", "VMOVLPD", "VMOVLPS", "VMOVMSKPD", "VMOVMSKPS", "VMOVNTDQ", "VMOVNTDQA", - "VMOVNTPD", "VMOVNTPS", "VMOVQ", "VMOVSD", "VMOVSH", "VMOVSHDUP", - "VMOVSLDUP", "VMOVSS", "VMOVUPD", "VMOVUPS", "VMOVW", "VMPSADBW", - "VMPTRLD", "VMPTRST", "VMREAD", "VMRESUME", "VMRUN", "VMSAVE", - "VMULNEPBF16", "VMULPD", "VMULPH", "VMULPS", "VMULSD", "VMULSH", - "VMULSS", "VMWRITE", "VMXOFF", "VMXON", "VORPD", "VORPS", "VP2INTERSECTD", - "VP2INTERSECTQ", "VP4DPWSSD", "VP4DPWSSDS", "VPABSB", "VPABSD", - "VPABSQ", "VPABSW", "VPACKSSDW", "VPACKSSWB", "VPACKUSDW", "VPACKUSWB", - "VPADDB", "VPADDD", "VPADDQ", "VPADDSB", "VPADDSW", "VPADDUSB", - "VPADDUSW", "VPADDW", "VPALIGNR", "VPAND", "VPANDD", "VPANDN", - "VPANDND", "VPANDNQ", "VPANDQ", "VPAVGB", "VPAVGW", "VPBLENDD", - "VPBLENDMB", "VPBLENDMD", "VPBLENDMQ", "VPBLENDMW", "VPBLENDVB", - "VPBLENDW", "VPBROADCASTB", "VPBROADCASTD", "VPBROADCASTMB2Q", - "VPBROADCASTMW2D", "VPBROADCASTQ", "VPBROADCASTW", "VPCLMULQDQ", - "VPCMOV", "VPCMPB", "VPCMPD", "VPCMPEQB", "VPCMPEQD", "VPCMPEQQ", - "VPCMPEQW", "VPCMPESTRI", "VPCMPESTRM", "VPCMPGTB", "VPCMPGTD", - "VPCMPGTQ", "VPCMPGTW", "VPCMPISTRI", "VPCMPISTRM", "VPCMPQ", - "VPCMPUB", "VPCMPUD", "VPCMPUQ", "VPCMPUW", "VPCMPW", "VPCOMB", - "VPCOMD", "VPCOMPRESSB", "VPCOMPRESSD", "VPCOMPRESSQ", "VPCOMPRESSW", - "VPCOMQ", "VPCOMUB", "VPCOMUD", "VPCOMUQ", "VPCOMUW", "VPCOMW", - "VPCONFLICTD", "VPCONFLICTQ", "VPDPBSSD", "VPDPBSSDS", "VPDPBSUD", - "VPDPBSUDS", "VPDPBUSD", "VPDPBUSDS", "VPDPBUUD", "VPDPBUUDS", - "VPDPWSSD", "VPDPWSSDS", "VPDPWSUD", "VPDPWSUDS", "VPDPWUSD", - "VPDPWUSDS", "VPDPWUUD", "VPDPWUUDS", "VPERM2F128", "VPERM2I128", - "VPERMB", "VPERMD", "VPERMI2B", "VPERMI2D", "VPERMI2PD", "VPERMI2PS", - "VPERMI2Q", "VPERMI2W", "VPERMIL2PD", "VPERMIL2PS", "VPERMILPD", - "VPERMILPS", "VPERMPD", "VPERMPS", "VPERMQ", "VPERMT2B", "VPERMT2D", - "VPERMT2PD", "VPERMT2PS", "VPERMT2Q", "VPERMT2W", "VPERMW", "VPEXPANDB", - "VPEXPANDD", "VPEXPANDQ", "VPEXPANDW", "VPEXTRB", "VPEXTRD", - "VPEXTRQ", "VPEXTRW", "VPGATHERDD", "VPGATHERDQ", "VPGATHERQD", - "VPGATHERQQ", "VPHADDBD", "VPHADDBQ", "VPHADDBW", "VPHADDD", - "VPHADDDQ", "VPHADDSW", "VPHADDUBD", "VPHADDUBQ", "VPHADDUBW", - "VPHADDUDQ", "VPHADDUWD", "VPHADDUWQ", "VPHADDW", "VPHADDWD", - "VPHADDWQ", "VPHMINPOSUW", "VPHSUBBW", "VPHSUBD", "VPHSUBDQ", - "VPHSUBSW", "VPHSUBW", "VPHSUBWD", "VPINSRB", "VPINSRD", "VPINSRQ", - "VPINSRW", "VPLZCNTD", "VPLZCNTQ", "VPMACSDD", "VPMACSDQH", "VPMACSDQL", - "VPMACSSDD", "VPMACSSDQH", "VPMACSSDQL", "VPMACSSWD", "VPMACSSWW", - "VPMACSWD", "VPMACSWW", "VPMADCSSWD", "VPMADCSWD", "VPMADD52HUQ", - "VPMADD52LUQ", "VPMADDUBSW", "VPMADDWD", "VPMASKMOVD", "VPMASKMOVQ", - "VPMAXSB", "VPMAXSD", "VPMAXSQ", "VPMAXSW", "VPMAXUB", "VPMAXUD", - "VPMAXUQ", "VPMAXUW", "VPMINSB", "VPMINSD", "VPMINSQ", "VPMINSW", - "VPMINUB", "VPMINUD", "VPMINUQ", "VPMINUW", "VPMOVB2M", "VPMOVD2M", - "VPMOVDB", "VPMOVDW", "VPMOVM2B", "VPMOVM2D", "VPMOVM2Q", "VPMOVM2W", - "VPMOVMSKB", "VPMOVQ2M", "VPMOVQB", "VPMOVQD", "VPMOVQW", "VPMOVSDB", - "VPMOVSDW", "VPMOVSQB", "VPMOVSQD", "VPMOVSQW", "VPMOVSWB", "VPMOVSXBD", - "VPMOVSXBQ", "VPMOVSXBW", "VPMOVSXDQ", "VPMOVSXWD", "VPMOVSXWQ", - "VPMOVUSDB", "VPMOVUSDW", "VPMOVUSQB", "VPMOVUSQD", "VPMOVUSQW", - "VPMOVUSWB", "VPMOVW2M", "VPMOVWB", "VPMOVZXBD", "VPMOVZXBQ", - "VPMOVZXBW", "VPMOVZXDQ", "VPMOVZXWD", "VPMOVZXWQ", "VPMULDQ", - "VPMULHRSW", "VPMULHUW", "VPMULHW", "VPMULLD", "VPMULLQ", "VPMULLW", - "VPMULTISHIFTQB", "VPMULUDQ", "VPOPCNTB", "VPOPCNTD", "VPOPCNTQ", - "VPOPCNTW", "VPOR", "VPORD", "VPORQ", "VPPERM", "VPROLD", "VPROLQ", - "VPROLVD", "VPROLVQ", "VPRORD", "VPRORQ", "VPRORVD", "VPRORVQ", - "VPROTB", "VPROTD", "VPROTQ", "VPROTW", "VPSADBW", "VPSCATTERDD", - "VPSCATTERDQ", "VPSCATTERQD", "VPSCATTERQQ", "VPSHAB", "VPSHAD", - "VPSHAQ", "VPSHAW", "VPSHLB", "VPSHLD", "VPSHLDD", "VPSHLDQ", - "VPSHLDVD", "VPSHLDVQ", "VPSHLDVW", "VPSHLDW", "VPSHLQ", "VPSHLW", - "VPSHRDD", "VPSHRDQ", "VPSHRDVD", "VPSHRDVQ", "VPSHRDVW", "VPSHRDW", - "VPSHUFB", "VPSHUFBITQMB", "VPSHUFD", "VPSHUFHW", "VPSHUFLW", - "VPSIGNB", "VPSIGND", "VPSIGNW", "VPSLLD", "VPSLLDQ", "VPSLLQ", - "VPSLLVD", "VPSLLVQ", "VPSLLVW", "VPSLLW", "VPSRAD", "VPSRAQ", - "VPSRAVD", "VPSRAVQ", "VPSRAVW", "VPSRAW", "VPSRLD", "VPSRLDQ", - "VPSRLQ", "VPSRLVD", "VPSRLVQ", "VPSRLVW", "VPSRLW", "VPSUBB", - "VPSUBD", "VPSUBQ", "VPSUBSB", "VPSUBSW", "VPSUBUSB", "VPSUBUSW", - "VPSUBW", "VPTERNLOGD", "VPTERNLOGQ", "VPTEST", "VPTESTMB", "VPTESTMD", - "VPTESTMQ", "VPTESTMW", "VPTESTNMB", "VPTESTNMD", "VPTESTNMQ", - "VPTESTNMW", "VPUNPCKHBW", "VPUNPCKHDQ", "VPUNPCKHQDQ", "VPUNPCKHWD", - "VPUNPCKLBW", "VPUNPCKLDQ", "VPUNPCKLQDQ", "VPUNPCKLWD", "VPXOR", - "VPXORD", "VPXORQ", "VRANGEPD", "VRANGEPS", "VRANGESD", "VRANGESS", - "VRCP14PD", "VRCP14PS", "VRCP14SD", "VRCP14SS", "VRCP28PD", "VRCP28PS", - "VRCP28SD", "VRCP28SS", "VRCPPBF16", "VRCPPH", "VRCPPS", "VRCPSH", - "VRCPSS", "VREDUCENEPBF16", "VREDUCEPD", "VREDUCEPH", "VREDUCEPS", - "VREDUCESD", "VREDUCESH", "VREDUCESS", "VRNDSCALENEPBF16", "VRNDSCALEPD", - "VRNDSCALEPH", "VRNDSCALEPS", "VRNDSCALESD", "VRNDSCALESH", "VRNDSCALESS", - "VROUNDPD", "VROUNDPS", "VROUNDSD", "VROUNDSS", "VRSQRT14PD", - "VRSQRT14PS", "VRSQRT14SD", "VRSQRT14SS", "VRSQRT28PD", "VRSQRT28PS", - "VRSQRT28SD", "VRSQRT28SS", "VRSQRTPBF16", "VRSQRTPH", "VRSQRTPS", - "VRSQRTSH", "VRSQRTSS", "VSCALEFPBF16", "VSCALEFPD", "VSCALEFPH", - "VSCALEFPS", "VSCALEFSD", "VSCALEFSH", "VSCALEFSS", "VSCATTERDPD", - "VSCATTERDPS", "VSCATTERPF0DPD", "VSCATTERPF0DPS", "VSCATTERPF0QPD", - "VSCATTERPF0QPS", "VSCATTERPF1DPD", "VSCATTERPF1DPS", "VSCATTERPF1QPD", - "VSCATTERPF1QPS", "VSCATTERQPD", "VSCATTERQPS", "VSHA512MSG1", - "VSHA512MSG2", "VSHA512RNDS2", "VSHUFF32X4", "VSHUFF64X2", "VSHUFI32X4", - "VSHUFI64X2", "VSHUFPD", "VSHUFPS", "VSM3MSG1", "VSM3MSG2", "VSM3RNDS2", - "VSM4KEY4", "VSM4RNDS4", "VSQRTNEPBF16", "VSQRTPD", "VSQRTPH", - "VSQRTPS", "VSQRTSD", "VSQRTSH", "VSQRTSS", "VSTMXCSR", "VSUBNEPBF16", - "VSUBPD", "VSUBPH", "VSUBPS", "VSUBSD", "VSUBSH", "VSUBSS", "VTESTPD", - "VTESTPS", "VUCOMISD", "VUCOMISH", "VUCOMISS", "VUCOMXSD", "VUCOMXSH", - "VUCOMXSS", "VUNPCKHPD", "VUNPCKHPS", "VUNPCKLPD", "VUNPCKLPS", - "VXORPD", "VXORPS", "VZEROALL", "VZEROUPPER", "WAIT", "WBINVD", - "WBNOINVD", "WRFSBASE", "WRGSBASE", "WRMSR", "WRMSRLIST", "WRMSRNS", - "WRPKRU", "WRSSD", "WRSSQ", "WRUSSD", "WRUSSQ", "XABORT", "XADD", - "XBEGIN", "XCHG", "XEND", "XGETBV", "XLATB", "XOR", "XORPD", - "XORPS", "XRESLDTRK", "XRSTOR", "XRSTOR64", "XRSTORS", "XRSTORS64", - "XSAVE", "XSAVE64", "XSAVEC", "XSAVEC64", "XSAVEOPT", "XSAVEOPT64", - "XSAVES", "XSAVES64", "XSETBV", "XSUSLDTRK", "XTEST", + "VMOVNTPD", "VMOVNTPS", "VMOVQ", "VMOVRSB", "VMOVRSD", "VMOVRSQ", + "VMOVRSW", "VMOVSD", "VMOVSH", "VMOVSHDUP", "VMOVSLDUP", "VMOVSS", + "VMOVUPD", "VMOVUPS", "VMOVW", "VMPSADBW", "VMPTRLD", "VMPTRST", + "VMREAD", "VMRESUME", "VMRUN", "VMSAVE", "VMULNEPBF16", "VMULPD", + "VMULPH", "VMULPS", "VMULSD", "VMULSH", "VMULSS", "VMWRITE", + "VMXOFF", "VMXON", "VORPD", "VORPS", "VP2INTERSECTD", "VP2INTERSECTQ", + "VP4DPWSSD", "VP4DPWSSDS", "VPABSB", "VPABSD", "VPABSQ", "VPABSW", + "VPACKSSDW", "VPACKSSWB", "VPACKUSDW", "VPACKUSWB", "VPADDB", + "VPADDD", "VPADDQ", "VPADDSB", "VPADDSW", "VPADDUSB", "VPADDUSW", + "VPADDW", "VPALIGNR", "VPAND", "VPANDD", "VPANDN", "VPANDND", + "VPANDNQ", "VPANDQ", "VPAVGB", "VPAVGW", "VPBLENDD", "VPBLENDMB", + "VPBLENDMD", "VPBLENDMQ", "VPBLENDMW", "VPBLENDVB", "VPBLENDW", + "VPBROADCASTB", "VPBROADCASTD", "VPBROADCASTMB2Q", "VPBROADCASTMW2D", + "VPBROADCASTQ", "VPBROADCASTW", "VPCLMULQDQ", "VPCMOV", "VPCMPB", + "VPCMPD", "VPCMPEQB", "VPCMPEQD", "VPCMPEQQ", "VPCMPEQW", "VPCMPESTRI", + "VPCMPESTRM", "VPCMPGTB", "VPCMPGTD", "VPCMPGTQ", "VPCMPGTW", + "VPCMPISTRI", "VPCMPISTRM", "VPCMPQ", "VPCMPUB", "VPCMPUD", "VPCMPUQ", + "VPCMPUW", "VPCMPW", "VPCOMB", "VPCOMD", "VPCOMPRESSB", "VPCOMPRESSD", + "VPCOMPRESSQ", "VPCOMPRESSW", "VPCOMQ", "VPCOMUB", "VPCOMUD", + "VPCOMUQ", "VPCOMUW", "VPCOMW", "VPCONFLICTD", "VPCONFLICTQ", + "VPDPBSSD", "VPDPBSSDS", "VPDPBSUD", "VPDPBSUDS", "VPDPBUSD", + "VPDPBUSDS", "VPDPBUUD", "VPDPBUUDS", "VPDPWSSD", "VPDPWSSDS", + "VPDPWSUD", "VPDPWSUDS", "VPDPWUSD", "VPDPWUSDS", "VPDPWUUD", + "VPDPWUUDS", "VPERM2F128", "VPERM2I128", "VPERMB", "VPERMD", + "VPERMI2B", "VPERMI2D", "VPERMI2PD", "VPERMI2PS", "VPERMI2Q", + "VPERMI2W", "VPERMIL2PD", "VPERMIL2PS", "VPERMILPD", "VPERMILPS", + "VPERMPD", "VPERMPS", "VPERMQ", "VPERMT2B", "VPERMT2D", "VPERMT2PD", + "VPERMT2PS", "VPERMT2Q", "VPERMT2W", "VPERMW", "VPEXPANDB", "VPEXPANDD", + "VPEXPANDQ", "VPEXPANDW", "VPEXTRB", "VPEXTRD", "VPEXTRQ", "VPEXTRW", + "VPGATHERDD", "VPGATHERDQ", "VPGATHERQD", "VPGATHERQQ", "VPHADDBD", + "VPHADDBQ", "VPHADDBW", "VPHADDD", "VPHADDDQ", "VPHADDSW", "VPHADDUBD", + "VPHADDUBQ", "VPHADDUBW", "VPHADDUDQ", "VPHADDUWD", "VPHADDUWQ", + "VPHADDW", "VPHADDWD", "VPHADDWQ", "VPHMINPOSUW", "VPHSUBBW", + "VPHSUBD", "VPHSUBDQ", "VPHSUBSW", "VPHSUBW", "VPHSUBWD", "VPINSRB", + "VPINSRD", "VPINSRQ", "VPINSRW", "VPLZCNTD", "VPLZCNTQ", "VPMACSDD", + "VPMACSDQH", "VPMACSDQL", "VPMACSSDD", "VPMACSSDQH", "VPMACSSDQL", + "VPMACSSWD", "VPMACSSWW", "VPMACSWD", "VPMACSWW", "VPMADCSSWD", + "VPMADCSWD", "VPMADD52HUQ", "VPMADD52LUQ", "VPMADDUBSW", "VPMADDWD", + "VPMASKMOVD", "VPMASKMOVQ", "VPMAXSB", "VPMAXSD", "VPMAXSQ", + "VPMAXSW", "VPMAXUB", "VPMAXUD", "VPMAXUQ", "VPMAXUW", "VPMINSB", + "VPMINSD", "VPMINSQ", "VPMINSW", "VPMINUB", "VPMINUD", "VPMINUQ", + "VPMINUW", "VPMOVB2M", "VPMOVD2M", "VPMOVDB", "VPMOVDW", "VPMOVM2B", + "VPMOVM2D", "VPMOVM2Q", "VPMOVM2W", "VPMOVMSKB", "VPMOVQ2M", + "VPMOVQB", "VPMOVQD", "VPMOVQW", "VPMOVSDB", "VPMOVSDW", "VPMOVSQB", + "VPMOVSQD", "VPMOVSQW", "VPMOVSWB", "VPMOVSXBD", "VPMOVSXBQ", + "VPMOVSXBW", "VPMOVSXDQ", "VPMOVSXWD", "VPMOVSXWQ", "VPMOVUSDB", + "VPMOVUSDW", "VPMOVUSQB", "VPMOVUSQD", "VPMOVUSQW", "VPMOVUSWB", + "VPMOVW2M", "VPMOVWB", "VPMOVZXBD", "VPMOVZXBQ", "VPMOVZXBW", + "VPMOVZXDQ", "VPMOVZXWD", "VPMOVZXWQ", "VPMULDQ", "VPMULHRSW", + "VPMULHUW", "VPMULHW", "VPMULLD", "VPMULLQ", "VPMULLW", "VPMULTISHIFTQB", + "VPMULUDQ", "VPOPCNTB", "VPOPCNTD", "VPOPCNTQ", "VPOPCNTW", "VPOR", + "VPORD", "VPORQ", "VPPERM", "VPROLD", "VPROLQ", "VPROLVD", "VPROLVQ", + "VPRORD", "VPRORQ", "VPRORVD", "VPRORVQ", "VPROTB", "VPROTD", + "VPROTQ", "VPROTW", "VPSADBW", "VPSCATTERDD", "VPSCATTERDQ", + "VPSCATTERQD", "VPSCATTERQQ", "VPSHAB", "VPSHAD", "VPSHAQ", "VPSHAW", + "VPSHLB", "VPSHLD", "VPSHLDD", "VPSHLDQ", "VPSHLDVD", "VPSHLDVQ", + "VPSHLDVW", "VPSHLDW", "VPSHLQ", "VPSHLW", "VPSHRDD", "VPSHRDQ", + "VPSHRDVD", "VPSHRDVQ", "VPSHRDVW", "VPSHRDW", "VPSHUFB", "VPSHUFBITQMB", + "VPSHUFD", "VPSHUFHW", "VPSHUFLW", "VPSIGNB", "VPSIGND", "VPSIGNW", + "VPSLLD", "VPSLLDQ", "VPSLLQ", "VPSLLVD", "VPSLLVQ", "VPSLLVW", + "VPSLLW", "VPSRAD", "VPSRAQ", "VPSRAVD", "VPSRAVQ", "VPSRAVW", + "VPSRAW", "VPSRLD", "VPSRLDQ", "VPSRLQ", "VPSRLVD", "VPSRLVQ", + "VPSRLVW", "VPSRLW", "VPSUBB", "VPSUBD", "VPSUBQ", "VPSUBSB", + "VPSUBSW", "VPSUBUSB", "VPSUBUSW", "VPSUBW", "VPTERNLOGD", "VPTERNLOGQ", + "VPTEST", "VPTESTMB", "VPTESTMD", "VPTESTMQ", "VPTESTMW", "VPTESTNMB", + "VPTESTNMD", "VPTESTNMQ", "VPTESTNMW", "VPUNPCKHBW", "VPUNPCKHDQ", + "VPUNPCKHQDQ", "VPUNPCKHWD", "VPUNPCKLBW", "VPUNPCKLDQ", "VPUNPCKLQDQ", + "VPUNPCKLWD", "VPXOR", "VPXORD", "VPXORQ", "VRANGEPD", "VRANGEPS", + "VRANGESD", "VRANGESS", "VRCP14PD", "VRCP14PS", "VRCP14SD", "VRCP14SS", + "VRCP28PD", "VRCP28PS", "VRCP28SD", "VRCP28SS", "VRCPPBF16", + "VRCPPH", "VRCPPS", "VRCPSH", "VRCPSS", "VREDUCENEPBF16", "VREDUCEPD", + "VREDUCEPH", "VREDUCEPS", "VREDUCESD", "VREDUCESH", "VREDUCESS", + "VRNDSCALENEPBF16", "VRNDSCALEPD", "VRNDSCALEPH", "VRNDSCALEPS", + "VRNDSCALESD", "VRNDSCALESH", "VRNDSCALESS", "VROUNDPD", "VROUNDPS", + "VROUNDSD", "VROUNDSS", "VRSQRT14PD", "VRSQRT14PS", "VRSQRT14SD", + "VRSQRT14SS", "VRSQRT28PD", "VRSQRT28PS", "VRSQRT28SD", "VRSQRT28SS", + "VRSQRTPBF16", "VRSQRTPH", "VRSQRTPS", "VRSQRTSH", "VRSQRTSS", + "VSCALEFPBF16", "VSCALEFPD", "VSCALEFPH", "VSCALEFPS", "VSCALEFSD", + "VSCALEFSH", "VSCALEFSS", "VSCATTERDPD", "VSCATTERDPS", "VSCATTERPF0DPD", + "VSCATTERPF0DPS", "VSCATTERPF0QPD", "VSCATTERPF0QPS", "VSCATTERPF1DPD", + "VSCATTERPF1DPS", "VSCATTERPF1QPD", "VSCATTERPF1QPS", "VSCATTERQPD", + "VSCATTERQPS", "VSHA512MSG1", "VSHA512MSG2", "VSHA512RNDS2", + "VSHUFF32X4", "VSHUFF64X2", "VSHUFI32X4", "VSHUFI64X2", "VSHUFPD", + "VSHUFPS", "VSM3MSG1", "VSM3MSG2", "VSM3RNDS2", "VSM4KEY4", "VSM4RNDS4", + "VSQRTNEPBF16", "VSQRTPD", "VSQRTPH", "VSQRTPS", "VSQRTSD", "VSQRTSH", + "VSQRTSS", "VSTMXCSR", "VSUBNEPBF16", "VSUBPD", "VSUBPH", "VSUBPS", + "VSUBSD", "VSUBSH", "VSUBSS", "VTESTPD", "VTESTPS", "VUCOMISD", + "VUCOMISH", "VUCOMISS", "VUCOMXSD", "VUCOMXSH", "VUCOMXSS", "VUNPCKHPD", + "VUNPCKHPS", "VUNPCKLPD", "VUNPCKLPS", "VXORPD", "VXORPS", "VZEROALL", + "VZEROUPPER", "WAIT", "WBINVD", "WBNOINVD", "WRFSBASE", "WRGSBASE", + "WRMSR", "WRMSRLIST", "WRMSRNS", "WRPKRU", "WRSSD", "WRSSQ", + "WRUSSD", "WRUSSQ", "XABORT", "XADD", "XBEGIN", "XCHG", "XEND", + "XGETBV", "XLATB", "XOR", "XORPD", "XORPS", "XRESLDTRK", "XRSTOR", + "XRSTOR64", "XRSTORS", "XRSTORS64", "XSAVE", "XSAVE64", "XSAVEC", + "XSAVEC64", "XSAVEOPT", "XSAVEOPT64", "XSAVES", "XSAVES64", "XSETBV", + "XSUSLDTRK", "XTEST", }; #endif // !BDDISASM_NO_MNEMONIC diff --git a/bddisasm/include/bdx86_table_evex.h b/bddisasm/include/bdx86_table_evex.h index 872303f..aed26d1 100644 --- a/bddisasm/include/bdx86_table_evex.h +++ b/bddisasm/include/bdx86_table_evex.h @@ -13,7 +13,7 @@ const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_07_opcode_f8_pp_03_modrmreg_00_modrmmod_01_l_00_w_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2634] // URDMSR Rq,Id + (const void *)&gInstructions[ 2675] // URDMSR Rq,Id }; const ND_TABLE_EX_NF gEvexMap_mmmmm_07_opcode_f8_pp_03_modrmreg_00_modrmmod_01_l_00_w_00_nf = @@ -72,7 +72,7 @@ const ND_TABLE_MODRM_REG gEvexMap_mmmmm_07_opcode_f8_pp_03_modrmreg = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_07_opcode_f8_pp_02_modrmreg_00_modrmmod_01_l_00_w_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2638] // UWRMSR Id,Rq + (const void *)&gInstructions[ 2679] // UWRMSR Id,Rq }; const ND_TABLE_EX_NF gEvexMap_mmmmm_07_opcode_f8_pp_02_modrmreg_00_modrmmod_01_l_00_w_00_nf = @@ -139,6 +139,135 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_07_opcode_f8_pp = } }; +const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_07_opcode_f6_pp_03_modrmreg_00_modrmmod_01_l_00_w_00_nf_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 2078] // RDMSR Rq,Id +}; + +const ND_TABLE_EX_NF gEvexMap_mmmmm_07_opcode_f6_pp_03_modrmreg_00_modrmmod_01_l_00_w_00_nf = +{ + ND_ILUT_EX_NF, + { + /* 00 */ (const void *)&gEvexMap_mmmmm_07_opcode_f6_pp_03_modrmreg_00_modrmmod_01_l_00_w_00_nf_00_leaf, + /* 01 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_W gEvexMap_mmmmm_07_opcode_f6_pp_03_modrmreg_00_modrmmod_01_l_00_w = +{ + ND_ILUT_EX_W, + { + /* 00 */ (const void *)&gEvexMap_mmmmm_07_opcode_f6_pp_03_modrmreg_00_modrmmod_01_l_00_w_00_nf, + /* 01 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_L gEvexMap_mmmmm_07_opcode_f6_pp_03_modrmreg_00_modrmmod_01_l = +{ + ND_ILUT_EX_L, + { + /* 00 */ (const void *)&gEvexMap_mmmmm_07_opcode_f6_pp_03_modrmreg_00_modrmmod_01_l_00_w, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_MODRM_MOD gEvexMap_mmmmm_07_opcode_f6_pp_03_modrmreg_00_modrmmod = +{ + ND_ILUT_MODRM_MOD, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gEvexMap_mmmmm_07_opcode_f6_pp_03_modrmreg_00_modrmmod_01_l, + } +}; + +const ND_TABLE_MODRM_REG gEvexMap_mmmmm_07_opcode_f6_pp_03_modrmreg = +{ + ND_ILUT_MODRM_REG, + { + /* 00 */ (const void *)&gEvexMap_mmmmm_07_opcode_f6_pp_03_modrmreg_00_modrmmod, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + /* 04 */ (const void *)ND_NULL, + /* 05 */ (const void *)ND_NULL, + /* 06 */ (const void *)ND_NULL, + /* 07 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_07_opcode_f6_pp_02_modrmreg_00_modrmmod_01_l_00_w_00_nf_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 4105] // WRMSRNS Id,Rq +}; + +const ND_TABLE_EX_NF gEvexMap_mmmmm_07_opcode_f6_pp_02_modrmreg_00_modrmmod_01_l_00_w_00_nf = +{ + ND_ILUT_EX_NF, + { + /* 00 */ (const void *)&gEvexMap_mmmmm_07_opcode_f6_pp_02_modrmreg_00_modrmmod_01_l_00_w_00_nf_00_leaf, + /* 01 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_W gEvexMap_mmmmm_07_opcode_f6_pp_02_modrmreg_00_modrmmod_01_l_00_w = +{ + ND_ILUT_EX_W, + { + /* 00 */ (const void *)&gEvexMap_mmmmm_07_opcode_f6_pp_02_modrmreg_00_modrmmod_01_l_00_w_00_nf, + /* 01 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_L gEvexMap_mmmmm_07_opcode_f6_pp_02_modrmreg_00_modrmmod_01_l = +{ + ND_ILUT_EX_L, + { + /* 00 */ (const void *)&gEvexMap_mmmmm_07_opcode_f6_pp_02_modrmreg_00_modrmmod_01_l_00_w, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_MODRM_MOD gEvexMap_mmmmm_07_opcode_f6_pp_02_modrmreg_00_modrmmod = +{ + ND_ILUT_MODRM_MOD, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gEvexMap_mmmmm_07_opcode_f6_pp_02_modrmreg_00_modrmmod_01_l, + } +}; + +const ND_TABLE_MODRM_REG gEvexMap_mmmmm_07_opcode_f6_pp_02_modrmreg = +{ + ND_ILUT_MODRM_REG, + { + /* 00 */ (const void *)&gEvexMap_mmmmm_07_opcode_f6_pp_02_modrmreg_00_modrmmod, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + /* 04 */ (const void *)ND_NULL, + /* 05 */ (const void *)ND_NULL, + /* 06 */ (const void *)ND_NULL, + /* 07 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_PP gEvexMap_mmmmm_07_opcode_f6_pp = +{ + ND_ILUT_EX_PP, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)&gEvexMap_mmmmm_07_opcode_f6_pp_02_modrmreg, + /* 03 */ (const void *)&gEvexMap_mmmmm_07_opcode_f6_pp_03_modrmreg, + } +}; + const ND_TABLE_OPCODE gEvexMap_mmmmm_07_opcode = { ND_ILUT_OPCODE, @@ -389,7 +518,7 @@ const ND_TABLE_OPCODE gEvexMap_mmmmm_07_opcode = /* f3 */ (const void *)ND_NULL, /* f4 */ (const void *)ND_NULL, /* f5 */ (const void *)ND_NULL, - /* f6 */ (const void *)ND_NULL, + /* f6 */ (const void *)&gEvexMap_mmmmm_07_opcode_f6_pp, /* f7 */ (const void *)ND_NULL, /* f8 */ (const void *)&gEvexMap_mmmmm_07_opcode_f8_pp, /* f9 */ (const void *)ND_NULL, @@ -405,7 +534,7 @@ const ND_TABLE_OPCODE gEvexMap_mmmmm_07_opcode = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_d7_pp_03_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2907] // VFCMULCSH Vdq{K}{z},aKq,Hdq,Wd{er} + (const void *)&gInstructions[ 2948] // VFCMULCSH Vdq{K}{z},aKq,Hdq,Wd{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_d7_pp_03_w = @@ -420,7 +549,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_d7_pp_03_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_d7_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3035] // VFMULCSH Vdq{K}{z},aKq,Hdq,Wd{er} + (const void *)&gInstructions[ 3076] // VFMULCSH Vdq{K}{z},aKq,Hdq,Wd{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_d7_pp_02_w = @@ -446,7 +575,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_06_opcode_d7_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_d6_pp_03_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2906] // VFCMULCPH Vfv{K}{z},aKq,Hfv,Wfv|B32{er} + (const void *)&gInstructions[ 2947] // VFCMULCPH Vfv{K}{z},aKq,Hfv,Wfv|B32{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_d6_pp_03_w = @@ -461,7 +590,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_d6_pp_03_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_d6_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3034] // VFMULCPH Vfv{K}{z},aKq,Hfv,Wfv|B32{er} + (const void *)&gInstructions[ 3075] // VFMULCPH Vfv{K}{z},aKq,Hfv,Wfv|B32{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_d6_pp_02_w = @@ -487,7 +616,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_06_opcode_d6_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_bf_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3107] // VFNMSUB231SH Vdq{K}{z},aKq,Hdq,Wsh{er} + (const void *)&gInstructions[ 3148] // VFNMSUB231SH Vdq{K}{z},aKq,Hdq,Wsh{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_bf_pp_01_w = @@ -513,7 +642,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_06_opcode_bf_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_be_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3102] // VFNMSUB231PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er} + (const void *)&gInstructions[ 3143] // VFNMSUB231PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_be_pp_01_w = @@ -528,7 +657,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_be_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_be_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3099] // VFNMSUB231NEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16 + (const void *)&gInstructions[ 3140] // VFNMSUB231NEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16 }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_be_pp_00_w = @@ -554,7 +683,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_06_opcode_be_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_bd_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3066] // VFNMADD231SH Vdq{K}{z},aKq,Hdq,Wsh{er} + (const void *)&gInstructions[ 3107] // VFNMADD231SH Vdq{K}{z},aKq,Hdq,Wsh{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_bd_pp_01_w = @@ -580,7 +709,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_06_opcode_bd_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_bc_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3061] // VFNMADD231PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er} + (const void *)&gInstructions[ 3102] // VFNMADD231PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_bc_pp_01_w = @@ -595,7 +724,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_bc_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_bc_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3058] // VFNMADD231NEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16 + (const void *)&gInstructions[ 3099] // VFNMADD231NEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16 }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_bc_pp_00_w = @@ -621,7 +750,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_06_opcode_bc_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_bb_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3004] // VFMSUB231SH Vdq{K}{z},aKq,Hdq,Wsh{er} + (const void *)&gInstructions[ 3045] // VFMSUB231SH Vdq{K}{z},aKq,Hdq,Wsh{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_bb_pp_01_w = @@ -647,7 +776,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_06_opcode_bb_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_ba_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2999] // VFMSUB231PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er} + (const void *)&gInstructions[ 3040] // VFMSUB231PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_ba_pp_01_w = @@ -662,7 +791,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_ba_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_ba_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2996] // VFMSUB231NEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16 + (const void *)&gInstructions[ 3037] // VFMSUB231NEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16 }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_ba_pp_00_w = @@ -688,7 +817,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_06_opcode_ba_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_b9_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2942] // VFMADD231SH Vdq{K}{z},aKq,Hdq,Wsh{er} + (const void *)&gInstructions[ 2983] // VFMADD231SH Vdq{K}{z},aKq,Hdq,Wsh{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_b9_pp_01_w = @@ -714,7 +843,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_06_opcode_b9_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_b8_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2937] // VFMADD231PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er} + (const void *)&gInstructions[ 2978] // VFMADD231PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_b8_pp_01_w = @@ -729,7 +858,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_b8_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_b8_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2934] // VFMADD231NEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16 + (const void *)&gInstructions[ 2975] // VFMADD231NEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16 }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_b8_pp_00_w = @@ -755,7 +884,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_06_opcode_b8_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_b7_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3019] // VFMSUBADD231PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er} + (const void *)&gInstructions[ 3060] // VFMSUBADD231PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_b7_pp_01_w = @@ -781,7 +910,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_06_opcode_b7_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_b6_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2967] // VFMADDSUB231PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er} + (const void *)&gInstructions[ 3008] // VFMADDSUB231PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_b6_pp_01_w = @@ -807,7 +936,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_06_opcode_b6_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_af_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3096] // VFNMSUB213SH Vdq{K}{z},aKq,Hdq,Wsh{er} + (const void *)&gInstructions[ 3137] // VFNMSUB213SH Vdq{K}{z},aKq,Hdq,Wsh{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_af_pp_01_w = @@ -833,7 +962,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_06_opcode_af_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_ae_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3091] // VFNMSUB213PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er} + (const void *)&gInstructions[ 3132] // VFNMSUB213PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_ae_pp_01_w = @@ -848,7 +977,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_ae_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_ae_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3088] // VFNMSUB213NEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16 + (const void *)&gInstructions[ 3129] // VFNMSUB213NEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16 }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_ae_pp_00_w = @@ -874,7 +1003,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_06_opcode_ae_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_ad_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3055] // VFNMADD213SH Vdq{K}{z},aKq,Hdq,Wsh{er} + (const void *)&gInstructions[ 3096] // VFNMADD213SH Vdq{K}{z},aKq,Hdq,Wsh{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_ad_pp_01_w = @@ -900,7 +1029,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_06_opcode_ad_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_ac_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3050] // VFNMADD213PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er} + (const void *)&gInstructions[ 3091] // VFNMADD213PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_ac_pp_01_w = @@ -915,7 +1044,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_ac_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_ac_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3047] // VFNMADD213NEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16 + (const void *)&gInstructions[ 3088] // VFNMADD213NEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16 }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_ac_pp_00_w = @@ -941,7 +1070,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_06_opcode_ac_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_ab_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2993] // VFMSUB213SH Vdq{K}{z},aKq,Hdq,Wsh{er} + (const void *)&gInstructions[ 3034] // VFMSUB213SH Vdq{K}{z},aKq,Hdq,Wsh{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_ab_pp_01_w = @@ -967,7 +1096,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_06_opcode_ab_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_aa_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2988] // VFMSUB213PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er} + (const void *)&gInstructions[ 3029] // VFMSUB213PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_aa_pp_01_w = @@ -982,7 +1111,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_aa_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_aa_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2985] // VFMSUB213NEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16 + (const void *)&gInstructions[ 3026] // VFMSUB213NEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16 }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_aa_pp_00_w = @@ -1008,7 +1137,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_06_opcode_aa_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_a9_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2931] // VFMADD213SH Vdq{K}{z},aKq,Hdq,Wsh{er} + (const void *)&gInstructions[ 2972] // VFMADD213SH Vdq{K}{z},aKq,Hdq,Wsh{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_a9_pp_01_w = @@ -1034,7 +1163,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_06_opcode_a9_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_a8_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2926] // VFMADD213PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er} + (const void *)&gInstructions[ 2967] // VFMADD213PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_a8_pp_01_w = @@ -1049,7 +1178,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_a8_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_a8_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2923] // VFMADD213NEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16 + (const void *)&gInstructions[ 2964] // VFMADD213NEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16 }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_a8_pp_00_w = @@ -1075,7 +1204,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_06_opcode_a8_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_a7_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3014] // VFMSUBADD213PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er} + (const void *)&gInstructions[ 3055] // VFMSUBADD213PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_a7_pp_01_w = @@ -1101,7 +1230,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_06_opcode_a7_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_a6_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2962] // VFMADDSUB213PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er} + (const void *)&gInstructions[ 3003] // VFMADDSUB213PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_a6_pp_01_w = @@ -1127,7 +1256,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_06_opcode_a6_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_9f_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3085] // VFNMSUB132SH Vdq{K}{z},aKq,Hdq,Wsh{er} + (const void *)&gInstructions[ 3126] // VFNMSUB132SH Vdq{K}{z},aKq,Hdq,Wsh{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_9f_pp_01_w = @@ -1153,7 +1282,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_06_opcode_9f_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_9e_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3080] // VFNMSUB132PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er} + (const void *)&gInstructions[ 3121] // VFNMSUB132PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_9e_pp_01_w = @@ -1168,7 +1297,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_9e_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_9e_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3077] // VFNMSUB132NEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16 + (const void *)&gInstructions[ 3118] // VFNMSUB132NEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16 }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_9e_pp_00_w = @@ -1194,7 +1323,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_06_opcode_9e_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_9d_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3044] // VFNMADD132SH Vdq{K}{z},aKq,Hdq,Wsh{er} + (const void *)&gInstructions[ 3085] // VFNMADD132SH Vdq{K}{z},aKq,Hdq,Wsh{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_9d_pp_01_w = @@ -1220,7 +1349,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_06_opcode_9d_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_9c_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3039] // VFNMADD132PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er} + (const void *)&gInstructions[ 3080] // VFNMADD132PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_9c_pp_01_w = @@ -1235,7 +1364,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_9c_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_9c_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3036] // VFNMADD132NEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16 + (const void *)&gInstructions[ 3077] // VFNMADD132NEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16 }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_9c_pp_00_w = @@ -1261,7 +1390,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_06_opcode_9c_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_9b_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2982] // VFMSUB132SH Vdq{K}{z},aKq,Hdq,Wsh{er} + (const void *)&gInstructions[ 3023] // VFMSUB132SH Vdq{K}{z},aKq,Hdq,Wsh{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_9b_pp_01_w = @@ -1287,7 +1416,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_06_opcode_9b_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_9a_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2977] // VFMSUB132PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er} + (const void *)&gInstructions[ 3018] // VFMSUB132PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_9a_pp_01_w = @@ -1302,7 +1431,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_9a_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_9a_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2974] // VFMSUB132NEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16 + (const void *)&gInstructions[ 3015] // VFMSUB132NEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16 }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_9a_pp_00_w = @@ -1328,7 +1457,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_06_opcode_9a_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_99_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2920] // VFMADD132SH Vdq{K}{z},aKq,Hdq,Wsh{er} + (const void *)&gInstructions[ 2961] // VFMADD132SH Vdq{K}{z},aKq,Hdq,Wsh{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_99_pp_01_w = @@ -1354,7 +1483,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_06_opcode_99_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_98_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2915] // VFMADD132PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er} + (const void *)&gInstructions[ 2956] // VFMADD132PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_98_pp_01_w = @@ -1369,7 +1498,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_98_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_98_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2912] // VFMADD132NEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16 + (const void *)&gInstructions[ 2953] // VFMADD132NEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16 }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_98_pp_00_w = @@ -1395,7 +1524,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_06_opcode_98_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_97_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3009] // VFMSUBADD132PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er} + (const void *)&gInstructions[ 3050] // VFMSUBADD132PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_97_pp_01_w = @@ -1421,7 +1550,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_06_opcode_97_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_96_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2957] // VFMADDSUB132PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er} + (const void *)&gInstructions[ 2998] // VFMADDSUB132PH Vfv{K}{z},aKq,Hfv,Wfv|B16{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_96_pp_01_w = @@ -1447,7 +1576,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_06_opcode_96_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_57_pp_03_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2905] // VFCMADDCSH Vdq{K}{z},aKq,Hdq,Wd{er} + (const void *)&gInstructions[ 2946] // VFCMADDCSH Vdq{K}{z},aKq,Hdq,Wd{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_57_pp_03_w = @@ -1462,7 +1591,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_57_pp_03_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_57_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2946] // VFMADDCSH Vdq{K}{z},aKq,Hdq,Wd{er} + (const void *)&gInstructions[ 2987] // VFMADDCSH Vdq{K}{z},aKq,Hdq,Wd{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_57_pp_02_w = @@ -1488,7 +1617,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_06_opcode_57_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_56_pp_03_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2904] // VFCMADDCPH Vfv{K}{z},aKq,Hfv,Wfv|B32{er} + (const void *)&gInstructions[ 2945] // VFCMADDCPH Vfv{K}{z},aKq,Hfv,Wfv|B32{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_56_pp_03_w = @@ -1503,7 +1632,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_56_pp_03_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_56_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2945] // VFMADDCPH Vfv{K}{z},aKq,Hfv,Wfv|B32{er} + (const void *)&gInstructions[ 2986] // VFMADDCPH Vfv{K}{z},aKq,Hfv,Wfv|B32{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_56_pp_02_w = @@ -1529,7 +1658,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_06_opcode_56_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_4f_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3967] // VRSQRTSH Vdq{K}{z},aKq,Hdq,Wsh + (const void *)&gInstructions[ 4012] // VRSQRTSH Vdq{K}{z},aKq,Hdq,Wsh }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_4f_pp_01_w = @@ -1555,7 +1684,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_06_opcode_4f_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_4e_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3965] // VRSQRTPH Vfv{K}{z},aKq,Wfv|B16 + (const void *)&gInstructions[ 4010] // VRSQRTPH Vfv{K}{z},aKq,Wfv|B16 }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_4e_pp_01_w = @@ -1570,7 +1699,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_4e_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_4e_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3964] // VRSQRTPBF16 Vfv{K}{z},aKq,Wfv|B16 + (const void *)&gInstructions[ 4009] // VRSQRTPBF16 Vfv{K}{z},aKq,Wfv|B16 }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_4e_pp_00_w = @@ -1596,7 +1725,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_06_opcode_4e_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_4d_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3936] // VRCPSH Vdq{K}{z},aKq,Hdq,Wsh + (const void *)&gInstructions[ 3981] // VRCPSH Vdq{K}{z},aKq,Hdq,Wsh }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_4d_pp_01_w = @@ -1622,7 +1751,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_06_opcode_4d_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_4c_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3934] // VRCPPH Vfv{K}{z},aKq,Wfv|B16 + (const void *)&gInstructions[ 3979] // VRCPPH Vfv{K}{z},aKq,Wfv|B16 }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_4c_pp_01_w = @@ -1637,7 +1766,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_4c_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_4c_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3933] // VRCPPBF16 Vfv{K}{z},aKq,Wfv|B16 + (const void *)&gInstructions[ 3978] // VRCPPBF16 Vfv{K}{z},aKq,Wfv|B16 }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_4c_pp_00_w = @@ -1663,7 +1792,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_06_opcode_4c_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_43_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3150] // VGETEXPSH Vdq{K}{z},aKq,Hdq,Wsh{sae} + (const void *)&gInstructions[ 3191] // VGETEXPSH Vdq{K}{z},aKq,Hdq,Wsh{sae} }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_43_pp_01_w = @@ -1689,7 +1818,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_06_opcode_43_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_42_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3147] // VGETEXPPH Vfv{K}{z},aKq,Wfv|B16{sae} + (const void *)&gInstructions[ 3188] // VGETEXPPH Vfv{K}{z},aKq,Wfv|B16{sae} }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_42_pp_01_w = @@ -1701,11 +1830,26 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_42_pp_01_w = } }; +const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_42_pp_00_w_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 3186] // VGETEXPPBF16 Vfv{K}{z},aKq,Wfv|B16 +}; + +const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_42_pp_00_w = +{ + ND_ILUT_EX_W, + { + /* 00 */ (const void *)&gEvexMap_mmmmm_06_opcode_42_pp_00_w_00_leaf, + /* 01 */ (const void *)ND_NULL, + } +}; + const ND_TABLE_EX_PP gEvexMap_mmmmm_06_opcode_42_pp = { ND_ILUT_EX_PP, { - /* 00 */ (const void *)ND_NULL, + /* 00 */ (const void *)&gEvexMap_mmmmm_06_opcode_42_pp_00_w, /* 01 */ (const void *)&gEvexMap_mmmmm_06_opcode_42_pp_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, @@ -1715,7 +1859,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_06_opcode_42_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_2d_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3974] // VSCALEFSH Vdq{K}{z},aKq,Hdq,Wsh{er} + (const void *)&gInstructions[ 4019] // VSCALEFSH Vdq{K}{z},aKq,Hdq,Wsh{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_2d_pp_01_w = @@ -1741,7 +1885,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_06_opcode_2d_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_2c_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3971] // VSCALEFPH Vfv{K}{z},aKq,Hfv,Wfv|B16{er} + (const void *)&gInstructions[ 4016] // VSCALEFPH Vfv{K}{z},aKq,Hfv,Wfv|B16{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_2c_pp_01_w = @@ -1756,7 +1900,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_2c_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_2c_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3969] // VSCALEFPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16 + (const void *)&gInstructions[ 4014] // VSCALEFPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16 }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_2c_pp_00_w = @@ -1782,7 +1926,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_06_opcode_2c_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_13_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2769] // VCVTPH2PSX Vfv{K}{z},aKq,Whv|B16{sae} + (const void *)&gInstructions[ 2810] // VCVTPH2PSX Vfv{K}{z},aKq,Whv|B16{sae} }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_13_pp_01_w = @@ -1797,7 +1941,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_13_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_06_opcode_13_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2800] // VCVTSH2SS Vdq{K}{z},aKq,Hdq,Wsh{sae} + (const void *)&gInstructions[ 2841] // VCVTSH2SS Vdq{K}{z},aKq,Hdq,Wsh{sae} }; const ND_TABLE_EX_W gEvexMap_mmmmm_06_opcode_13_pp_00_w = @@ -2086,7 +2230,7 @@ const ND_TABLE_OPCODE gEvexMap_mmmmm_06_opcode = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_7e_pp_02_l_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3338] // VMOVW Ww,Vdq + (const void *)&gInstructions[ 3383] // VMOVW Ww,Vdq }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_7e_pp_02_l_00_w = @@ -2112,7 +2256,7 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_05_opcode_7e_pp_02_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_7e_pp_01_modrmmod_01_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3337] // VMOVW Rd,Vdq + (const void *)&gInstructions[ 3382] // VMOVW Rd,Vdq }; const ND_TABLE_EX_L gEvexMap_mmmmm_05_opcode_7e_pp_01_modrmmod_01_l = @@ -2129,7 +2273,7 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_05_opcode_7e_pp_01_modrmmod_01_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_7e_pp_01_modrmmod_00_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3336] // VMOVW Mw,Vdq + (const void *)&gInstructions[ 3381] // VMOVW Mw,Vdq }; const ND_TABLE_EX_L gEvexMap_mmmmm_05_opcode_7e_pp_01_modrmmod_00_l = @@ -2166,7 +2310,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_05_opcode_7e_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_7d_pp_03_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2866] // VCVTUW2PH Vfv{K}{z},aKq,Wfv|B16{er} + (const void *)&gInstructions[ 2907] // VCVTUW2PH Vfv{K}{z},aKq,Wfv|B16{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_7d_pp_03_w = @@ -2181,7 +2325,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_7d_pp_03_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_7d_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2867] // VCVTW2PH Vfv{K}{z},aKq,Wfv|B16{er} + (const void *)&gInstructions[ 2908] // VCVTW2PH Vfv{K}{z},aKq,Wfv|B16{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_7d_pp_02_w = @@ -2196,7 +2340,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_7d_pp_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_7d_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2774] // VCVTPH2W Vfv{K}{z},aKq,Wfv|B16{er} + (const void *)&gInstructions[ 2815] // VCVTPH2W Vfv{K}{z},aKq,Wfv|B16{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_7d_pp_01_w = @@ -2211,7 +2355,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_7d_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_7d_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2773] // VCVTPH2UW Vfv{K}{z},aKq,Wfv|B16{er} + (const void *)&gInstructions[ 2814] // VCVTPH2UW Vfv{K}{z},aKq,Wfv|B16{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_7d_pp_00_w = @@ -2237,7 +2381,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_05_opcode_7d_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_7c_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2832] // VCVTTPH2W Vfv{K}{z},aKq,Wfv|B16{sae} + (const void *)&gInstructions[ 2873] // VCVTTPH2W Vfv{K}{z},aKq,Wfv|B16{sae} }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_7c_pp_01_w = @@ -2252,7 +2396,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_7c_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_7c_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2831] // VCVTTPH2UW Vfv{K}{z},aKq,Wfv|B16{sae} + (const void *)&gInstructions[ 2872] // VCVTTPH2UW Vfv{K}{z},aKq,Wfv|B16{sae} }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_7c_pp_00_w = @@ -2278,13 +2422,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_05_opcode_7c_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_7b_pp_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2864] // VCVTUSI2SH Vdq,Hdq,Ey{er} + (const void *)&gInstructions[ 2905] // VCVTUSI2SH Vdq,Hdq,Ey{er} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_7b_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2770] // VCVTPH2QQ Vfv{K}{z},aKq,Wqv|B16{er} + (const void *)&gInstructions[ 2811] // VCVTPH2QQ Vfv{K}{z},aKq,Wqv|B16{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_7b_pp_01_w = @@ -2310,13 +2454,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_05_opcode_7b_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_7a_pp_03_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2860] // VCVTUQQ2PH Vqv{K}{z},aKq,Wfv|B64{er} + (const void *)&gInstructions[ 2901] // VCVTUQQ2PH Vqv{K}{z},aKq,Wfv|B64{er} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_7a_pp_03_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2857] // VCVTUDQ2PH Vhv{K}{z},aKq,Wfv|B32{er} + (const void *)&gInstructions[ 2898] // VCVTUDQ2PH Vhv{K}{z},aKq,Wfv|B32{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_7a_pp_03_w = @@ -2331,7 +2475,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_7a_pp_03_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_7a_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2828] // VCVTTPH2QQ Vfv{K}{z},aKq,Wqv|B16{sae} + (const void *)&gInstructions[ 2869] // VCVTTPH2QQ Vfv{K}{z},aKq,Wqv|B16{sae} }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_7a_pp_01_w = @@ -2357,13 +2501,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_05_opcode_7a_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_79_pp_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2801] // VCVTSH2USI Gy,Wsh{er} + (const void *)&gInstructions[ 2842] // VCVTSH2USI Gy,Wsh{er} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_79_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2772] // VCVTPH2UQQ Vfv{K}{z},aKq,Wqv|B16{er} + (const void *)&gInstructions[ 2813] // VCVTPH2UQQ Vfv{K}{z},aKq,Wqv|B16{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_79_pp_01_w = @@ -2378,7 +2522,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_79_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_79_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2771] // VCVTPH2UDQ Vfv{K}{z},aKq,Whv|B16{er} + (const void *)&gInstructions[ 2812] // VCVTPH2UDQ Vfv{K}{z},aKq,Whv|B16{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_79_pp_00_w = @@ -2404,7 +2548,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_05_opcode_79_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_78_pp_02_wi_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2850] // VCVTTSH2USI Gy,Wsh{sae} + (const void *)&gInstructions[ 2891] // VCVTTSH2USI Gy,Wsh{sae} }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_78_pp_02_wi = @@ -2419,7 +2563,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_78_pp_02_wi = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_78_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2830] // VCVTTPH2UQQ Vfv{K}{z},aKq,Wqv|B16{sae} + (const void *)&gInstructions[ 2871] // VCVTTPH2UQQ Vfv{K}{z},aKq,Wqv|B16{sae} }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_78_pp_01_w = @@ -2434,7 +2578,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_78_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_78_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2829] // VCVTTPH2UDQ Vfv{K}{z},aKq,Whv|B16{sae} + (const void *)&gInstructions[ 2870] // VCVTTPH2UDQ Vfv{K}{z},aKq,Whv|B16{sae} }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_78_pp_00_w = @@ -2460,7 +2604,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_05_opcode_78_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_74_pp_03_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2737] // VCVTNE2PH2BF8S Vfv{K}{z},aKq,Hfv,Wfv|B16 + (const void *)&gInstructions[ 2778] // VCVTNE2PH2BF8S Vfv{K}{z},aKq,Hfv,Wfv|B16 }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_74_pp_03_w = @@ -2475,7 +2619,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_74_pp_03_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_74_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2748] // VCVTNEPH2BF8S Vhv{K}{z},aKq,Wfv|B16 + (const void *)&gInstructions[ 2789] // VCVTNEPH2BF8S Vhv{K}{z},aKq,Wfv|B16 }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_74_pp_02_w = @@ -2490,7 +2634,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_74_pp_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_74_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2726] // VCVTBIASPH2BF8S Vhv{K}{z},aKq,Hfv,Wfv|B16 + (const void *)&gInstructions[ 2767] // VCVTBIASPH2BF8S Vhv{K}{z},aKq,Hfv,Wfv|B16 }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_74_pp_00_w = @@ -2513,10 +2657,81 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_05_opcode_74_pp = } }; +const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_6f_pp_03_modrmmod_00_w_01_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 3345] // VMOVRSW Vfv{K}{z},aKq,Wfv +}; + +const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_6f_pp_03_modrmmod_00_w_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 3342] // VMOVRSB Vfv{K}{z},aKq,Wfv +}; + +const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_6f_pp_03_modrmmod_00_w = +{ + ND_ILUT_EX_W, + { + /* 00 */ (const void *)&gEvexMap_mmmmm_05_opcode_6f_pp_03_modrmmod_00_w_00_leaf, + /* 01 */ (const void *)&gEvexMap_mmmmm_05_opcode_6f_pp_03_modrmmod_00_w_01_leaf, + } +}; + +const ND_TABLE_MODRM_MOD gEvexMap_mmmmm_05_opcode_6f_pp_03_modrmmod = +{ + ND_ILUT_MODRM_MOD, + { + /* 00 */ (const void *)&gEvexMap_mmmmm_05_opcode_6f_pp_03_modrmmod_00_w, + /* 01 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_6f_pp_02_modrmmod_00_w_01_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 3344] // VMOVRSQ Vfv{K}{z},aKq,Wfv +}; + +const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_6f_pp_02_modrmmod_00_w_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 3343] // VMOVRSD Vfv{K}{z},aKq,Wfv +}; + +const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_6f_pp_02_modrmmod_00_w = +{ + ND_ILUT_EX_W, + { + /* 00 */ (const void *)&gEvexMap_mmmmm_05_opcode_6f_pp_02_modrmmod_00_w_00_leaf, + /* 01 */ (const void *)&gEvexMap_mmmmm_05_opcode_6f_pp_02_modrmmod_00_w_01_leaf, + } +}; + +const ND_TABLE_MODRM_MOD gEvexMap_mmmmm_05_opcode_6f_pp_02_modrmmod = +{ + ND_ILUT_MODRM_MOD, + { + /* 00 */ (const void *)&gEvexMap_mmmmm_05_opcode_6f_pp_02_modrmmod_00_w, + /* 01 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_PP gEvexMap_mmmmm_05_opcode_6f_pp = +{ + ND_ILUT_EX_PP, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)&gEvexMap_mmmmm_05_opcode_6f_pp_02_modrmmod, + /* 03 */ (const void *)&gEvexMap_mmmmm_05_opcode_6f_pp_03_modrmmod, + } +}; + const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_6e_pp_02_l_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3335] // VMOVW Vdq,Ww + (const void *)&gInstructions[ 3380] // VMOVW Vdq,Ww }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_6e_pp_02_l_00_w = @@ -2542,7 +2757,7 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_05_opcode_6e_pp_02_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_6e_pp_01_modrmmod_01_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3334] // VMOVW Vdq,Rd + (const void *)&gInstructions[ 3379] // VMOVW Vdq,Rd }; const ND_TABLE_EX_L gEvexMap_mmmmm_05_opcode_6e_pp_01_modrmmod_01_l = @@ -2559,7 +2774,7 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_05_opcode_6e_pp_01_modrmmod_01_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_6e_pp_01_modrmmod_00_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3333] // VMOVW Vdq,Mw + (const void *)&gInstructions[ 3378] // VMOVW Vdq,Mw }; const ND_TABLE_EX_L gEvexMap_mmmmm_05_opcode_6e_pp_01_modrmmod_00_l = @@ -2596,25 +2811,25 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_05_opcode_6e_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_6d_pp_03_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2846] // VCVTTSD2SIS Gy,Wsd{sae} + (const void *)&gInstructions[ 2887] // VCVTTSD2SIS Gy,Wsd{sae} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_6d_pp_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2853] // VCVTTSS2SIS Gy,Wss{sae} + (const void *)&gInstructions[ 2894] // VCVTTSS2SIS Gy,Wss{sae} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_6d_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2820] // VCVTTPD2QQS Vfv{K}{z},aKq,Wfv|B64{sae} + (const void *)&gInstructions[ 2861] // VCVTTPD2QQS Vfv{K}{z},aKq,Wfv|B64{sae} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_6d_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2839] // VCVTTPS2QQS Vfv{K}{z},aKq,Whv|B32{sae} + (const void *)&gInstructions[ 2880] // VCVTTPS2QQS Vfv{K}{z},aKq,Whv|B32{sae} }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_6d_pp_01_w = @@ -2629,13 +2844,13 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_6d_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_6d_pp_00_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2818] // VCVTTPD2DQS Vhv{K}{z},aKq,Wfv|B64{sae} + (const void *)&gInstructions[ 2859] // VCVTTPD2DQS Vhv{K}{z},aKq,Wfv|B64{sae} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_6d_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2835] // VCVTTPS2DQS Vfv{K}{z},aKq,Wfv|B32{sae} + (const void *)&gInstructions[ 2876] // VCVTTPS2DQS Vfv{K}{z},aKq,Wfv|B32{sae} }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_6d_pp_00_w = @@ -2661,25 +2876,25 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_05_opcode_6d_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_6c_pp_03_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2848] // VCVTTSD2USIS Gy,Wsd{sae} + (const void *)&gInstructions[ 2889] // VCVTTSD2USIS Gy,Wsd{sae} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_6c_pp_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2855] // VCVTTSS2USIS Gy,Wss{sae} + (const void *)&gInstructions[ 2896] // VCVTTSS2USIS Gy,Wss{sae} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_6c_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2824] // VCVTTPD2UQQS Vfv{K}{z},aKq,Wfv|B64{sae} + (const void *)&gInstructions[ 2865] // VCVTTPD2UQQS Vfv{K}{z},aKq,Wfv|B64{sae} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_6c_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2843] // VCVTTPS2UQQS Vfv{K}{z},aKq,Whv|B32{sae} + (const void *)&gInstructions[ 2884] // VCVTTPS2UQQS Vfv{K}{z},aKq,Whv|B32{sae} }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_6c_pp_01_w = @@ -2694,13 +2909,13 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_6c_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_6c_pp_00_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2822] // VCVTTPD2UDQS Vhv{K}{z},aKq,Wfv|B64{sae} + (const void *)&gInstructions[ 2863] // VCVTTPD2UDQS Vhv{K}{z},aKq,Wfv|B64{sae} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_6c_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2841] // VCVTTPS2UDQS Vfv{K}{z},aKq,Wfv|B32{sae} + (const void *)&gInstructions[ 2882] // VCVTTPS2UDQS Vfv{K}{z},aKq,Wfv|B32{sae} }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_6c_pp_00_w = @@ -2726,7 +2941,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_05_opcode_6c_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_6b_pp_03_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2742] // VCVTNEBF162IUBS Vfv{K}{z},aKq,Wfv|B16 + (const void *)&gInstructions[ 2783] // VCVTNEBF162IUBS Vfv{K}{z},aKq,Wfv|B16 }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_6b_pp_03_w = @@ -2741,7 +2956,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_6b_pp_03_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_6b_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2778] // VCVTPS2IUBS Vfv{K}{z},aKq,Wfv|B32{er} + (const void *)&gInstructions[ 2819] // VCVTPS2IUBS Vfv{K}{z},aKq,Wfv|B32{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_6b_pp_01_w = @@ -2756,7 +2971,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_6b_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_6b_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2764] // VCVTPH2IUBS Vfv{K}{z},aKq,Wfv|B16{er} + (const void *)&gInstructions[ 2805] // VCVTPH2IUBS Vfv{K}{z},aKq,Wfv|B16{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_6b_pp_00_w = @@ -2782,7 +2997,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_05_opcode_6b_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_6a_pp_03_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2815] // VCVTTNEBF162IUBS Vfv{K}{z},aKq,Wfv|B16 + (const void *)&gInstructions[ 2856] // VCVTTNEBF162IUBS Vfv{K}{z},aKq,Wfv|B16 }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_6a_pp_03_w = @@ -2797,7 +3012,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_6a_pp_03_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_6a_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2837] // VCVTTPS2IUBS Vfv{K}{z},aKq,Wfv|B32{sae} + (const void *)&gInstructions[ 2878] // VCVTTPS2IUBS Vfv{K}{z},aKq,Wfv|B32{sae} }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_6a_pp_01_w = @@ -2812,7 +3027,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_6a_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_6a_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2827] // VCVTTPH2IUBS Vfv{K}{z},aKq,Wfv|B16{sae} + (const void *)&gInstructions[ 2868] // VCVTTPH2IUBS Vfv{K}{z},aKq,Wfv|B16{sae} }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_6a_pp_00_w = @@ -2838,7 +3053,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_05_opcode_6a_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_69_pp_03_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2741] // VCVTNEBF162IBS Vfv{K}{z},aKq,Wfv|B16 + (const void *)&gInstructions[ 2782] // VCVTNEBF162IBS Vfv{K}{z},aKq,Wfv|B16 }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_69_pp_03_w = @@ -2853,7 +3068,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_69_pp_03_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_69_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2777] // VCVTPS2IBS Vfv{K}{z},aKq,Wfv|B32{er} + (const void *)&gInstructions[ 2818] // VCVTPS2IBS Vfv{K}{z},aKq,Wfv|B32{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_69_pp_01_w = @@ -2868,7 +3083,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_69_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_69_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2763] // VCVTPH2IBS Vfv{K}{z},aKq,Wfv|B16{er} + (const void *)&gInstructions[ 2804] // VCVTPH2IBS Vfv{K}{z},aKq,Wfv|B16{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_69_pp_00_w = @@ -2894,7 +3109,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_05_opcode_69_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_68_pp_03_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2814] // VCVTTNEBF162IBS Vfv{K}{z},aKq,Wfv|B16 + (const void *)&gInstructions[ 2855] // VCVTTNEBF162IBS Vfv{K}{z},aKq,Wfv|B16 }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_68_pp_03_w = @@ -2909,7 +3124,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_68_pp_03_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_68_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2836] // VCVTTPS2IBS Vfv{K}{z},aKq,Wfv|B32{sae} + (const void *)&gInstructions[ 2877] // VCVTTPS2IBS Vfv{K}{z},aKq,Wfv|B32{sae} }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_68_pp_01_w = @@ -2924,7 +3139,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_68_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_68_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2826] // VCVTTPH2IBS Vfv{K}{z},aKq,Wfv|B16{sae} + (const void *)&gInstructions[ 2867] // VCVTTPH2IBS Vfv{K}{z},aKq,Wfv|B16{sae} }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_68_pp_00_w = @@ -2950,7 +3165,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_05_opcode_68_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_5f_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3198] // VMAXSH Vdq{K}{z},aKq,Hdq,Wsh{sae} + (const void *)&gInstructions[ 3239] // VMAXSH Vdq{K}{z},aKq,Hdq,Wsh{sae} }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_5f_pp_02_w = @@ -2965,7 +3180,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_5f_pp_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_5f_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3190] // VMAXPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16 + (const void *)&gInstructions[ 3231] // VMAXPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16 }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_5f_pp_01_w = @@ -2980,7 +3195,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_5f_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_5f_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3193] // VMAXPH Vfv{K}{z},aKq,Hfv,Wfv|B16{sae} + (const void *)&gInstructions[ 3234] // VMAXPH Vfv{K}{z},aKq,Hfv,Wfv|B16{sae} }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_5f_pp_00_w = @@ -3006,7 +3221,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_05_opcode_5f_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_5e_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2877] // VDIVSH Vdq{K}{z},aKq,Hdq,Wsh{er} + (const void *)&gInstructions[ 2918] // VDIVSH Vdq{K}{z},aKq,Hdq,Wsh{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_5e_pp_02_w = @@ -3021,7 +3236,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_5e_pp_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_5e_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2869] // VDIVNEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16 + (const void *)&gInstructions[ 2910] // VDIVNEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16 }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_5e_pp_01_w = @@ -3036,7 +3251,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_5e_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_5e_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2872] // VDIVPH Vfv{K}{z},aKq,Hfv,Wfv|B16{er} + (const void *)&gInstructions[ 2913] // VDIVPH Vfv{K}{z},aKq,Hfv,Wfv|B16{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_5e_pp_00_w = @@ -3062,7 +3277,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_05_opcode_5e_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_5d_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3221] // VMINSH Vdq{K}{z},aKq,Hdq,Wsh{sae} + (const void *)&gInstructions[ 3262] // VMINSH Vdq{K}{z},aKq,Hdq,Wsh{sae} }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_5d_pp_02_w = @@ -3077,7 +3292,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_5d_pp_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_5d_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3213] // VMINPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16 + (const void *)&gInstructions[ 3254] // VMINPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16 }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_5d_pp_01_w = @@ -3092,7 +3307,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_5d_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_5d_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3216] // VMINPH Vfv{K}{z},aKq,Hfv,Wfv|B16{sae} + (const void *)&gInstructions[ 3257] // VMINPH Vfv{K}{z},aKq,Hfv,Wfv|B16{sae} }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_5d_pp_00_w = @@ -3118,7 +3333,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_05_opcode_5d_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_5c_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4024] // VSUBSH Vdq{K}{z},aKq,Hdq,Wsh{sae} + (const void *)&gInstructions[ 4071] // VSUBSH Vdq{K}{z},aKq,Hdq,Wsh{sae} }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_5c_pp_02_w = @@ -3133,7 +3348,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_5c_pp_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_5c_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4016] // VSUBNEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16 + (const void *)&gInstructions[ 4063] // VSUBNEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16 }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_5c_pp_01_w = @@ -3148,7 +3363,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_5c_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_5c_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4019] // VSUBPH Vfv{K}{z},aKq,Hfv,Wfv|B16{sae} + (const void *)&gInstructions[ 4066] // VSUBPH Vfv{K}{z},aKq,Hfv,Wfv|B16{sae} }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_5c_pp_00_w = @@ -3174,7 +3389,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_05_opcode_5c_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_5b_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2825] // VCVTTPH2DQ Vfv{K}{z},aKq,Whv|B16{sae} + (const void *)&gInstructions[ 2866] // VCVTTPH2DQ Vfv{K}{z},aKq,Whv|B16{sae} }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_5b_pp_02_w = @@ -3189,7 +3404,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_5b_pp_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_5b_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2762] // VCVTPH2DQ Vfv{K}{z},aKq,Whv|B16{er} + (const void *)&gInstructions[ 2803] // VCVTPH2DQ Vfv{K}{z},aKq,Whv|B16{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_5b_pp_01_w = @@ -3204,13 +3419,13 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_5b_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_5b_pp_00_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2790] // VCVTQQ2PH Vdq{K}{z},aKq,Wfv|B64{er} + (const void *)&gInstructions[ 2831] // VCVTQQ2PH Vdq{K}{z},aKq,Wfv|B64{er} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_5b_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2732] // VCVTDQ2PH Vhv{K}{z},aKq,Wfv|B32{er} + (const void *)&gInstructions[ 2773] // VCVTDQ2PH Vhv{K}{z},aKq,Wfv|B32{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_5b_pp_00_w = @@ -3236,7 +3451,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_05_opcode_5b_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_5a_pp_03_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2792] // VCVTSD2SH Vdq{K}{z},aKq,Hdq,Wsd{er} + (const void *)&gInstructions[ 2833] // VCVTSD2SH Vdq{K}{z},aKq,Hdq,Wsd{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_5a_pp_03_w = @@ -3251,7 +3466,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_5a_pp_03_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_5a_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2798] // VCVTSH2SD Vdq{K}{z},aKq,Hdq,Wsh{sae} + (const void *)&gInstructions[ 2839] // VCVTSH2SD Vdq{K}{z},aKq,Hdq,Wsh{sae} }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_5a_pp_02_w = @@ -3266,7 +3481,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_5a_pp_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_5a_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2755] // VCVTPD2PH Vdq{K}{z},aKq,Wfv|B64{er} + (const void *)&gInstructions[ 2796] // VCVTPD2PH Vdq{K}{z},aKq,Wfv|B64{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_5a_pp_01_w = @@ -3281,7 +3496,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_5a_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_5a_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2765] // VCVTPH2PD Vfv{K}{z},aKq,Wqv|B16{sae} + (const void *)&gInstructions[ 2806] // VCVTPH2PD Vfv{K}{z},aKq,Wqv|B16{sae} }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_5a_pp_00_w = @@ -3307,7 +3522,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_05_opcode_5a_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_59_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3355] // VMULSH Vdq{K}{z},aKq,Hdq,Wsh{er} + (const void *)&gInstructions[ 3400] // VMULSH Vdq{K}{z},aKq,Hdq,Wsh{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_59_pp_02_w = @@ -3322,7 +3537,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_59_pp_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_59_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3347] // VMULNEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16 + (const void *)&gInstructions[ 3392] // VMULNEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16 }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_59_pp_01_w = @@ -3337,7 +3552,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_59_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_59_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3350] // VMULPH Vfv{K}{z},aKq,Hfv,Wfv|B16{er} + (const void *)&gInstructions[ 3395] // VMULPH Vfv{K}{z},aKq,Hfv,Wfv|B16{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_59_pp_00_w = @@ -3363,7 +3578,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_05_opcode_59_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_58_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2653] // VADDSH Vdq{K}{z},aKq,Hdq,Wsh{er} + (const void *)&gInstructions[ 2694] // VADDSH Vdq{K}{z},aKq,Hdq,Wsh{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_58_pp_02_w = @@ -3378,7 +3593,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_58_pp_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_58_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2645] // VADDNEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16 + (const void *)&gInstructions[ 2686] // VADDNEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16 }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_58_pp_01_w = @@ -3393,7 +3608,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_58_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_58_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2648] // VADDPH Vfv{K}{z},aKq,Hfv,Wfv|B16{er} + (const void *)&gInstructions[ 2689] // VADDPH Vfv{K}{z},aKq,Hfv,Wfv|B16{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_58_pp_00_w = @@ -3419,7 +3634,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_05_opcode_58_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_51_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4012] // VSQRTSH Vdq{K}{z},aKq,Hdq,Wsh{er} + (const void *)&gInstructions[ 4059] // VSQRTSH Vdq{K}{z},aKq,Hdq,Wsh{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_51_pp_02_w = @@ -3434,7 +3649,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_51_pp_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_51_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4004] // VSQRTNEPBF16 Vfv{K}{z},aKq,Wfv|B16 + (const void *)&gInstructions[ 4051] // VSQRTNEPBF16 Vfv{K}{z},aKq,Wfv|B16 }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_51_pp_01_w = @@ -3449,7 +3664,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_51_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_51_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4007] // VSQRTPH Vfv{K}{z},aKq,Wfv|B16{er} + (const void *)&gInstructions[ 4054] // VSQRTPH Vfv{K}{z},aKq,Wfv|B16{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_51_pp_00_w = @@ -3472,62 +3687,25 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_05_opcode_51_pp = } }; -const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_42_pp_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_2f_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3145] // VGETEXPPBF16 Vfv{K}{z},aKq,Wfv|B16 + (const void *)&gInstructions[ 2763] // VCOMXSH Vdq,Wsh{sae} }; -const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_42_pp_01_w = +const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_2f_pp_02_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gEvexMap_mmmmm_05_opcode_42_pp_01_w_00_leaf, + /* 00 */ (const void *)&gEvexMap_mmmmm_05_opcode_2f_pp_02_w_00_leaf, /* 01 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gEvexMap_mmmmm_05_opcode_42_pp = -{ - ND_ILUT_EX_PP, - { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gEvexMap_mmmmm_05_opcode_42_pp_01_w, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)ND_NULL, - } -}; - -const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_2f_pp_03_l_00_w_00_leaf = -{ - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2722] // VCOMXSH Vdq,Wsh{sae} -}; - -const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_2f_pp_03_l_00_w = -{ - ND_ILUT_EX_W, - { - /* 00 */ (const void *)&gEvexMap_mmmmm_05_opcode_2f_pp_03_l_00_w_00_leaf, - /* 01 */ (const void *)ND_NULL, - } -}; - -const ND_TABLE_EX_L gEvexMap_mmmmm_05_opcode_2f_pp_03_l = -{ - ND_ILUT_EX_L, - { - /* 00 */ (const void *)&gEvexMap_mmmmm_05_opcode_2f_pp_03_l_00_w, - /* 01 */ (const void *)ND_NULL, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)ND_NULL, - } -}; - const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_2f_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2720] // VCOMSBF16 Vdq,Wsh + (const void *)&gInstructions[ 2761] // VCOMSBF16 Vdq,Wsh }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_2f_pp_01_w = @@ -3542,7 +3720,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_2f_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_2f_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2715] // VCOMISH Vdq,Wsh{sae} + (const void *)&gInstructions[ 2756] // VCOMISH Vdq,Wsh{sae} }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_2f_pp_00_w = @@ -3560,41 +3738,30 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_05_opcode_2f_pp = { /* 00 */ (const void *)&gEvexMap_mmmmm_05_opcode_2f_pp_00_w, /* 01 */ (const void *)&gEvexMap_mmmmm_05_opcode_2f_pp_01_w, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)&gEvexMap_mmmmm_05_opcode_2f_pp_03_l, + /* 02 */ (const void *)&gEvexMap_mmmmm_05_opcode_2f_pp_02_w, + /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_2e_pp_03_l_00_w_00_leaf = +const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_2e_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4035] // VUCOMXSH Vdq,Wsh{sae} + (const void *)&gInstructions[ 4082] // VUCOMXSH Vdq,Wsh{sae} }; -const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_2e_pp_03_l_00_w = +const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_2e_pp_02_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gEvexMap_mmmmm_05_opcode_2e_pp_03_l_00_w_00_leaf, - /* 01 */ (const void *)ND_NULL, - } -}; - -const ND_TABLE_EX_L gEvexMap_mmmmm_05_opcode_2e_pp_03_l = -{ - ND_ILUT_EX_L, - { - /* 00 */ (const void *)&gEvexMap_mmmmm_05_opcode_2e_pp_03_l_00_w, + /* 00 */ (const void *)&gEvexMap_mmmmm_05_opcode_2e_pp_02_w_00_leaf, /* 01 */ (const void *)ND_NULL, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)ND_NULL, } }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_2e_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4031] // VUCOMISH Vdq,Wsh{sae} + (const void *)&gInstructions[ 4078] // VUCOMISH Vdq,Wsh{sae} }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_2e_pp_00_w = @@ -3612,15 +3779,15 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_05_opcode_2e_pp = { /* 00 */ (const void *)&gEvexMap_mmmmm_05_opcode_2e_pp_00_w, /* 01 */ (const void *)ND_NULL, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)&gEvexMap_mmmmm_05_opcode_2e_pp_03_l, + /* 02 */ (const void *)&gEvexMap_mmmmm_05_opcode_2e_pp_02_w, + /* 03 */ (const void *)ND_NULL, } }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_2d_pp_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2799] // VCVTSH2SI Gy,Wsh{er} + (const void *)&gInstructions[ 2840] // VCVTSH2SI Gy,Wsh{er} }; const ND_TABLE_EX_PP gEvexMap_mmmmm_05_opcode_2d_pp = @@ -3637,7 +3804,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_05_opcode_2d_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_2c_pp_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2849] // VCVTTSH2SI Gy,Wsh{sae} + (const void *)&gInstructions[ 2890] // VCVTTSH2SI Gy,Wsh{sae} }; const ND_TABLE_EX_PP gEvexMap_mmmmm_05_opcode_2c_pp = @@ -3654,7 +3821,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_05_opcode_2c_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_2a_pp_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2805] // VCVTSI2SH Vdq,Hdq,Ey + (const void *)&gInstructions[ 2846] // VCVTSI2SH Vdq,Hdq,Ey }; const ND_TABLE_EX_PP gEvexMap_mmmmm_05_opcode_2a_pp = @@ -3671,7 +3838,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_05_opcode_2a_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_1e_pp_03_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2735] // VCVTHF82PH Vfv{K}{z},aKq,Whv + (const void *)&gInstructions[ 2776] // VCVTHF82PH Vfv{K}{z},aKq,Whv }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_1e_pp_03_w = @@ -3697,7 +3864,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_05_opcode_1e_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_1d_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2785] // VCVTPS2PHX Vhv{K}{z},aKq,Wfv|B32{er} + (const void *)&gInstructions[ 2826] // VCVTPS2PHX Vhv{K}{z},aKq,Wfv|B32{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_1d_pp_01_w = @@ -3712,7 +3879,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_1d_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_1d_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2810] // VCVTSS2SH Vdq{K}{z},aKq,Hdq,Wss{er} + (const void *)&gInstructions[ 2851] // VCVTSS2SH Vdq{K}{z},aKq,Hdq,Wss{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_1d_pp_00_w = @@ -3738,7 +3905,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_05_opcode_1d_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_1b_pp_03_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2739] // VCVTNE2PH2HF8S Vfv{K}{z},aKq,Hfv,Wfv|B16 + (const void *)&gInstructions[ 2780] // VCVTNE2PH2HF8S Vfv{K}{z},aKq,Hfv,Wfv|B16 }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_1b_pp_03_w = @@ -3753,7 +3920,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_1b_pp_03_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_1b_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2750] // VCVTNEPH2HF8S Vhv{K}{z},aKq,Wfv|B16 + (const void *)&gInstructions[ 2791] // VCVTNEPH2HF8S Vhv{K}{z},aKq,Wfv|B16 }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_1b_pp_02_w = @@ -3768,7 +3935,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_1b_pp_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_1b_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2728] // VCVTBIASPH2HF8S Vhv{K}{z},aKq,Hfv,Wfv|B16 + (const void *)&gInstructions[ 2769] // VCVTBIASPH2HF8S Vhv{K}{z},aKq,Hfv,Wfv|B16 }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_1b_pp_00_w = @@ -3794,7 +3961,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_05_opcode_1b_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_18_pp_03_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2738] // VCVTNE2PH2HF8 Vfv{K}{z},aKq,Hfv,Wfv|B16 + (const void *)&gInstructions[ 2779] // VCVTNE2PH2HF8 Vfv{K}{z},aKq,Hfv,Wfv|B16 }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_18_pp_03_w = @@ -3809,7 +3976,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_18_pp_03_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_18_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2749] // VCVTNEPH2HF8 Vhv{K}{z},aKq,Wfv|B16 + (const void *)&gInstructions[ 2790] // VCVTNEPH2HF8 Vhv{K}{z},aKq,Wfv|B16 }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_18_pp_02_w = @@ -3824,7 +3991,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_18_pp_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_18_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2727] // VCVTBIASPH2HF8 Vhv{K}{z},aKq,Hfv,Wfv|B16 + (const void *)&gInstructions[ 2768] // VCVTBIASPH2HF8 Vhv{K}{z},aKq,Hfv,Wfv|B16 }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_18_pp_00_w = @@ -3850,7 +4017,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_05_opcode_18_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_11_pp_02_modrmmod_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3312] // VMOVSH Wsh{K}{z},aKq,Hdq,Vdq + (const void *)&gInstructions[ 3357] // VMOVSH Wsh{K}{z},aKq,Hdq,Vdq }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_11_pp_02_modrmmod_01_w = @@ -3865,7 +4032,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_11_pp_02_modrmmod_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_11_pp_02_modrmmod_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3311] // VMOVSH Wsh{K},aKq,Vdq + (const void *)&gInstructions[ 3356] // VMOVSH Wsh{K},aKq,Vdq }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_11_pp_02_modrmmod_00_w = @@ -3900,7 +4067,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_05_opcode_11_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_10_pp_02_modrmmod_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3310] // VMOVSH Vdq{K}{z},aKq,Hdq,Wsh + (const void *)&gInstructions[ 3355] // VMOVSH Vdq{K}{z},aKq,Hdq,Wsh }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_10_pp_02_modrmmod_01_w = @@ -3915,7 +4082,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_10_pp_02_modrmmod_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_05_opcode_10_pp_02_modrmmod_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3309] // VMOVSH Vdq{K}{z},aKq,Wsh + (const void *)&gInstructions[ 3354] // VMOVSH Vdq{K}{z},aKq,Wsh }; const ND_TABLE_EX_W gEvexMap_mmmmm_05_opcode_10_pp_02_modrmmod_00_w = @@ -4017,7 +4184,7 @@ const ND_TABLE_OPCODE gEvexMap_mmmmm_05_opcode = /* 3f */ (const void *)ND_NULL, /* 40 */ (const void *)ND_NULL, /* 41 */ (const void *)ND_NULL, - /* 42 */ (const void *)&gEvexMap_mmmmm_05_opcode_42_pp, + /* 42 */ (const void *)ND_NULL, /* 43 */ (const void *)ND_NULL, /* 44 */ (const void *)ND_NULL, /* 45 */ (const void *)ND_NULL, @@ -4062,7 +4229,7 @@ const ND_TABLE_OPCODE gEvexMap_mmmmm_05_opcode = /* 6c */ (const void *)&gEvexMap_mmmmm_05_opcode_6c_pp, /* 6d */ (const void *)&gEvexMap_mmmmm_05_opcode_6d_pp, /* 6e */ (const void *)&gEvexMap_mmmmm_05_opcode_6e_pp, - /* 6f */ (const void *)ND_NULL, + /* 6f */ (const void *)&gEvexMap_mmmmm_05_opcode_6f_pp, /* 70 */ (const void *)ND_NULL, /* 71 */ (const void *)ND_NULL, /* 72 */ (const void *)ND_NULL, @@ -4352,7 +4519,7 @@ const ND_TABLE_MODRM_REG gEvexMap_mmmmm_04_opcode_ff_pp_01_modrmreg = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_ff_pp_00_modrmreg_06_modrmmod_01_l_00_w_01_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1969] // PUSH2P Bv,Rv + (const void *)&gInstructions[ 1973] // PUSH2P Bv,Rv }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_ff_pp_00_modrmreg_06_modrmmod_01_l_00_w_01_nd_01_nf = @@ -4376,7 +4543,7 @@ const ND_TABLE_EX_ND gEvexMap_mmmmm_04_opcode_ff_pp_00_modrmreg_06_modrmmod_01_l const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_ff_pp_00_modrmreg_06_modrmmod_01_l_00_w_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1968] // PUSH2 Bv,Rv + (const void *)&gInstructions[ 1972] // PUSH2 Bv,Rv }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_ff_pp_00_modrmreg_06_modrmmod_01_l_00_w_00_nd_01_nf = @@ -4971,7 +5138,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_04_opcode_f9_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_f8_pp_03_modrmmod_01_l_00_w_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2633] // URDMSR Eq,Gq + (const void *)&gInstructions[ 2674] // URDMSR Eq,Gq }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_f8_pp_03_modrmmod_01_l_00_w_00_nd_00_nf = @@ -5059,7 +5226,7 @@ const ND_TABLE_MODRM_MOD gEvexMap_mmmmm_04_opcode_f8_pp_03_modrmmod = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_f8_pp_02_modrmmod_01_l_00_w_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2637] // UWRMSR Gq,Eq + (const void *)&gInstructions[ 2678] // UWRMSR Gq,Eq }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_f8_pp_02_modrmmod_01_l_00_w_00_nd_00_nf = @@ -5325,13 +5492,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_f7_pp_01_modrmreg_05_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_f7_pp_01_modrmreg_04_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1476] // MUL Ev + (const void *)&gInstructions[ 1478] // MUL Ev }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_f7_pp_01_modrmreg_04_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1473] // MUL Ev + (const void *)&gInstructions[ 1475] // MUL Ev }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_f7_pp_01_modrmreg_04_l_00_nd_00_nf = @@ -5366,13 +5533,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_f7_pp_01_modrmreg_04_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_f7_pp_01_modrmreg_03_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1498] // NEG Bv,Ev + (const void *)&gInstructions[ 1500] // NEG Bv,Ev }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_f7_pp_01_modrmreg_03_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1495] // NEG Bv,Ev + (const void *)&gInstructions[ 1497] // NEG Bv,Ev }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_f7_pp_01_modrmreg_03_l_00_nd_01_nf = @@ -5387,13 +5554,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_f7_pp_01_modrmreg_03_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_f7_pp_01_modrmreg_03_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1492] // NEG Ev + (const void *)&gInstructions[ 1494] // NEG Ev }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_f7_pp_01_modrmreg_03_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1489] // NEG Ev + (const void *)&gInstructions[ 1491] // NEG Ev }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_f7_pp_01_modrmreg_03_l_00_nd_00_nf = @@ -5428,7 +5595,7 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_f7_pp_01_modrmreg_03_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_f7_pp_01_modrmreg_02_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1577] // NOT Bv,Ev + (const void *)&gInstructions[ 1579] // NOT Bv,Ev }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_f7_pp_01_modrmreg_02_l_00_nd_01_nf = @@ -5443,7 +5610,7 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_f7_pp_01_modrmreg_02_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_f7_pp_01_modrmreg_02_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1574] // NOT Ev + (const void *)&gInstructions[ 1576] // NOT Ev }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_f7_pp_01_modrmreg_02_l_00_nd_00_nf = @@ -5894,13 +6061,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_f7_pp_00_modrmreg_05_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_f7_pp_00_modrmreg_04_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1475] // MUL Ev + (const void *)&gInstructions[ 1477] // MUL Ev }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_f7_pp_00_modrmreg_04_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1472] // MUL Ev + (const void *)&gInstructions[ 1474] // MUL Ev }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_f7_pp_00_modrmreg_04_l_00_nd_00_nf = @@ -5935,13 +6102,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_f7_pp_00_modrmreg_04_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_f7_pp_00_modrmreg_03_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1497] // NEG Bv,Ev + (const void *)&gInstructions[ 1499] // NEG Bv,Ev }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_f7_pp_00_modrmreg_03_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1494] // NEG Bv,Ev + (const void *)&gInstructions[ 1496] // NEG Bv,Ev }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_f7_pp_00_modrmreg_03_l_00_nd_01_nf = @@ -5956,13 +6123,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_f7_pp_00_modrmreg_03_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_f7_pp_00_modrmreg_03_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1491] // NEG Ev + (const void *)&gInstructions[ 1493] // NEG Ev }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_f7_pp_00_modrmreg_03_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1488] // NEG Ev + (const void *)&gInstructions[ 1490] // NEG Ev }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_f7_pp_00_modrmreg_03_l_00_nd_00_nf = @@ -5997,7 +6164,7 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_f7_pp_00_modrmreg_03_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_f7_pp_00_modrmreg_02_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1576] // NOT Bv,Ev + (const void *)&gInstructions[ 1578] // NOT Bv,Ev }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_f7_pp_00_modrmreg_02_l_00_nd_01_nf = @@ -6012,7 +6179,7 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_f7_pp_00_modrmreg_02_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_f7_pp_00_modrmreg_02_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1573] // NOT Ev + (const void *)&gInstructions[ 1575] // NOT Ev }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_f7_pp_00_modrmreg_02_l_00_nd_00_nf = @@ -6474,13 +6641,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_f6_pp_00_modrmreg_05_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_f6_pp_00_modrmreg_04_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1474] // MUL Eb + (const void *)&gInstructions[ 1476] // MUL Eb }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_f6_pp_00_modrmreg_04_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1471] // MUL Eb + (const void *)&gInstructions[ 1473] // MUL Eb }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_f6_pp_00_modrmreg_04_l_00_nd_00_nf = @@ -6515,13 +6682,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_f6_pp_00_modrmreg_04_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_f6_pp_00_modrmreg_03_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1496] // NEG Bb,Eb + (const void *)&gInstructions[ 1498] // NEG Bb,Eb }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_f6_pp_00_modrmreg_03_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1493] // NEG Bb,Eb + (const void *)&gInstructions[ 1495] // NEG Bb,Eb }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_f6_pp_00_modrmreg_03_l_00_nd_01_nf = @@ -6536,13 +6703,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_f6_pp_00_modrmreg_03_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_f6_pp_00_modrmreg_03_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1490] // NEG Eb + (const void *)&gInstructions[ 1492] // NEG Eb }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_f6_pp_00_modrmreg_03_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1487] // NEG Eb + (const void *)&gInstructions[ 1489] // NEG Eb }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_f6_pp_00_modrmreg_03_l_00_nd_00_nf = @@ -6577,7 +6744,7 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_f6_pp_00_modrmreg_03_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_f6_pp_00_modrmreg_02_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1575] // NOT Bb,Eb + (const void *)&gInstructions[ 1577] // NOT Bb,Eb }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_f6_pp_00_modrmreg_02_l_00_nd_01_nf = @@ -6592,7 +6759,7 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_f6_pp_00_modrmreg_02_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_f6_pp_00_modrmreg_02_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1572] // NOT Eb + (const void *)&gInstructions[ 1574] // NOT Eb }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_f6_pp_00_modrmreg_02_l_00_nd_00_nf = @@ -7024,13 +7191,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_04_opcode_f5_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_f4_pp_01_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2618] // TZCNT Gv,Ev + (const void *)&gInstructions[ 2659] // TZCNT Gv,Ev }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_f4_pp_01_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2616] // TZCNT Gv,Ev + (const void *)&gInstructions[ 2657] // TZCNT Gv,Ev }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_f4_pp_01_l_00_nd_00_nf = @@ -7065,13 +7232,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_f4_pp_01_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_f4_pp_00_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2617] // TZCNT Gv,Ev + (const void *)&gInstructions[ 2658] // TZCNT Gv,Ev }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_f4_pp_00_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2615] // TZCNT Gv,Ev + (const void *)&gInstructions[ 2656] // TZCNT Gv,Ev }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_f4_pp_00_l_00_nd_00_nf = @@ -7387,13 +7554,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_04_opcode_f0_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_07_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2269] // SAR Bv,Ev,CL + (const void *)&gInstructions[ 2275] // SAR Bv,Ev,CL }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_07_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2260] // SAR Bv,Ev,CL + (const void *)&gInstructions[ 2266] // SAR Bv,Ev,CL }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_07_l_00_nd_01_nf = @@ -7408,13 +7575,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_07_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_07_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2251] // SAR Ev,CL + (const void *)&gInstructions[ 2257] // SAR Ev,CL }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_07_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2242] // SAR Ev,CL + (const void *)&gInstructions[ 2248] // SAR Ev,CL }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_07_l_00_nd_00_nf = @@ -7449,13 +7616,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_07_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_06_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2226] // SAL Bv,Ev,CL + (const void *)&gInstructions[ 2232] // SAL Bv,Ev,CL }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_06_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2217] // SAL Bv,Ev,CL + (const void *)&gInstructions[ 2223] // SAL Bv,Ev,CL }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_06_l_00_nd_01_nf = @@ -7470,13 +7637,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_06_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_06_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2208] // SAL Ev,CL + (const void *)&gInstructions[ 2214] // SAL Ev,CL }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_06_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2199] // SAL Ev,CL + (const void *)&gInstructions[ 2205] // SAL Ev,CL }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_06_l_00_nd_00_nf = @@ -7511,13 +7678,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_06_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_05_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2463] // SHR Bv,Ev,CL + (const void *)&gInstructions[ 2469] // SHR Bv,Ev,CL }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_05_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2454] // SHR Bv,Ev,CL + (const void *)&gInstructions[ 2460] // SHR Bv,Ev,CL }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_05_l_00_nd_01_nf = @@ -7532,13 +7699,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_05_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_05_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2445] // SHR Ev,CL + (const void *)&gInstructions[ 2451] // SHR Ev,CL }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_05_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2436] // SHR Ev,CL + (const void *)&gInstructions[ 2442] // SHR Ev,CL }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_05_l_00_nd_00_nf = @@ -7573,13 +7740,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_05_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_04_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2401] // SHL Bv,Ev,CL + (const void *)&gInstructions[ 2407] // SHL Bv,Ev,CL }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_04_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2392] // SHL Bv,Ev,CL + (const void *)&gInstructions[ 2398] // SHL Bv,Ev,CL }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_04_l_00_nd_01_nf = @@ -7594,13 +7761,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_04_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_04_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2383] // SHL Ev,CL + (const void *)&gInstructions[ 2389] // SHL Ev,CL }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_04_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2374] // SHL Ev,CL + (const void *)&gInstructions[ 2380] // SHL Ev,CL }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_04_l_00_nd_00_nf = @@ -7635,13 +7802,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_04_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_03_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2065] // RCR Bv,Ev,CL + (const void *)&gInstructions[ 2069] // RCR Bv,Ev,CL }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_03_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2056] // RCR Bv,Ev,CL + (const void *)&gInstructions[ 2060] // RCR Bv,Ev,CL }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_03_l_00_nd_01_nf = @@ -7656,13 +7823,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_03_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_03_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2047] // RCR Ev,CL + (const void *)&gInstructions[ 2051] // RCR Ev,CL }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_03_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2038] // RCR Ev,CL + (const void *)&gInstructions[ 2042] // RCR Ev,CL }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_03_l_00_nd_00_nf = @@ -7697,13 +7864,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_03_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_02_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2021] // RCL Bv,Ev,CL + (const void *)&gInstructions[ 2025] // RCL Bv,Ev,CL }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_02_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2012] // RCL Bv,Ev,CL + (const void *)&gInstructions[ 2016] // RCL Bv,Ev,CL }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_02_l_00_nd_01_nf = @@ -7718,13 +7885,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_02_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_02_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2003] // RCL Ev,CL + (const void *)&gInstructions[ 2007] // RCL Ev,CL }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_02_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1994] // RCL Ev,CL + (const void *)&gInstructions[ 1998] // RCL Ev,CL }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_02_l_00_nd_00_nf = @@ -7759,13 +7926,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_02_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_01_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2173] // ROR Bv,Ev,CL + (const void *)&gInstructions[ 2179] // ROR Bv,Ev,CL }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_01_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2164] // ROR Bv,Ev,CL + (const void *)&gInstructions[ 2170] // ROR Bv,Ev,CL }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_01_l_00_nd_01_nf = @@ -7780,13 +7947,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_01_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_01_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2155] // ROR Ev,CL + (const void *)&gInstructions[ 2161] // ROR Ev,CL }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_01_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2146] // ROR Ev,CL + (const void *)&gInstructions[ 2152] // ROR Ev,CL }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_01_l_00_nd_00_nf = @@ -7821,13 +7988,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_01_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_00_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2131] // ROL Bv,Ev,CL + (const void *)&gInstructions[ 2137] // ROL Bv,Ev,CL }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_00_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2122] // ROL Bv,Ev,CL + (const void *)&gInstructions[ 2128] // ROL Bv,Ev,CL }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_00_l_00_nd_01_nf = @@ -7842,13 +8009,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_00_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_00_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2113] // ROL Ev,CL + (const void *)&gInstructions[ 2119] // ROL Ev,CL }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_00_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2104] // ROL Ev,CL + (const void *)&gInstructions[ 2110] // ROL Ev,CL }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg_00_l_00_nd_00_nf = @@ -7898,13 +8065,13 @@ const ND_TABLE_MODRM_REG gEvexMap_mmmmm_04_opcode_d3_pp_01_modrmreg = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_07_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2268] // SAR Bv,Ev,CL + (const void *)&gInstructions[ 2274] // SAR Bv,Ev,CL }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_07_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2259] // SAR Bv,Ev,CL + (const void *)&gInstructions[ 2265] // SAR Bv,Ev,CL }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_07_l_00_nd_01_nf = @@ -7919,13 +8086,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_07_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_07_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2250] // SAR Ev,CL + (const void *)&gInstructions[ 2256] // SAR Ev,CL }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_07_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2241] // SAR Ev,CL + (const void *)&gInstructions[ 2247] // SAR Ev,CL }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_07_l_00_nd_00_nf = @@ -7960,13 +8127,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_07_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_06_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2225] // SAL Bv,Ev,CL + (const void *)&gInstructions[ 2231] // SAL Bv,Ev,CL }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_06_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2216] // SAL Bv,Ev,CL + (const void *)&gInstructions[ 2222] // SAL Bv,Ev,CL }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_06_l_00_nd_01_nf = @@ -7981,13 +8148,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_06_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_06_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2207] // SAL Ev,CL + (const void *)&gInstructions[ 2213] // SAL Ev,CL }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_06_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2198] // SAL Ev,CL + (const void *)&gInstructions[ 2204] // SAL Ev,CL }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_06_l_00_nd_00_nf = @@ -8022,13 +8189,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_06_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_05_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2462] // SHR Bv,Ev,CL + (const void *)&gInstructions[ 2468] // SHR Bv,Ev,CL }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_05_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2453] // SHR Bv,Ev,CL + (const void *)&gInstructions[ 2459] // SHR Bv,Ev,CL }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_05_l_00_nd_01_nf = @@ -8043,13 +8210,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_05_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_05_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2444] // SHR Ev,CL + (const void *)&gInstructions[ 2450] // SHR Ev,CL }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_05_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2435] // SHR Ev,CL + (const void *)&gInstructions[ 2441] // SHR Ev,CL }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_05_l_00_nd_00_nf = @@ -8084,13 +8251,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_05_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_04_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2400] // SHL Bv,Ev,CL + (const void *)&gInstructions[ 2406] // SHL Bv,Ev,CL }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_04_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2391] // SHL Bv,Ev,CL + (const void *)&gInstructions[ 2397] // SHL Bv,Ev,CL }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_04_l_00_nd_01_nf = @@ -8105,13 +8272,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_04_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_04_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2382] // SHL Ev,CL + (const void *)&gInstructions[ 2388] // SHL Ev,CL }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_04_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2373] // SHL Ev,CL + (const void *)&gInstructions[ 2379] // SHL Ev,CL }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_04_l_00_nd_00_nf = @@ -8146,13 +8313,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_04_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_03_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2064] // RCR Bv,Ev,CL + (const void *)&gInstructions[ 2068] // RCR Bv,Ev,CL }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_03_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2055] // RCR Bv,Ev,CL + (const void *)&gInstructions[ 2059] // RCR Bv,Ev,CL }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_03_l_00_nd_01_nf = @@ -8167,13 +8334,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_03_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_03_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2046] // RCR Ev,CL + (const void *)&gInstructions[ 2050] // RCR Ev,CL }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_03_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2037] // RCR Ev,CL + (const void *)&gInstructions[ 2041] // RCR Ev,CL }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_03_l_00_nd_00_nf = @@ -8208,13 +8375,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_03_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_02_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2020] // RCL Bv,Ev,CL + (const void *)&gInstructions[ 2024] // RCL Bv,Ev,CL }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_02_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2011] // RCL Bv,Ev,CL + (const void *)&gInstructions[ 2015] // RCL Bv,Ev,CL }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_02_l_00_nd_01_nf = @@ -8229,13 +8396,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_02_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_02_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2002] // RCL Ev,CL + (const void *)&gInstructions[ 2006] // RCL Ev,CL }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_02_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1993] // RCL Ev,CL + (const void *)&gInstructions[ 1997] // RCL Ev,CL }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_02_l_00_nd_00_nf = @@ -8270,13 +8437,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_02_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_01_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2172] // ROR Bv,Ev,CL + (const void *)&gInstructions[ 2178] // ROR Bv,Ev,CL }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_01_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2163] // ROR Bv,Ev,CL + (const void *)&gInstructions[ 2169] // ROR Bv,Ev,CL }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_01_l_00_nd_01_nf = @@ -8291,13 +8458,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_01_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_01_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2154] // ROR Ev,CL + (const void *)&gInstructions[ 2160] // ROR Ev,CL }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_01_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2145] // ROR Ev,CL + (const void *)&gInstructions[ 2151] // ROR Ev,CL }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_01_l_00_nd_00_nf = @@ -8332,13 +8499,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_01_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_00_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2130] // ROL Bv,Ev,CL + (const void *)&gInstructions[ 2136] // ROL Bv,Ev,CL }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_00_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2121] // ROL Bv,Ev,CL + (const void *)&gInstructions[ 2127] // ROL Bv,Ev,CL }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_00_l_00_nd_01_nf = @@ -8353,13 +8520,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_00_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_00_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2112] // ROL Ev,CL + (const void *)&gInstructions[ 2118] // ROL Ev,CL }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_00_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2103] // ROL Ev,CL + (const void *)&gInstructions[ 2109] // ROL Ev,CL }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d3_pp_00_modrmreg_00_l_00_nd_00_nf = @@ -8420,13 +8587,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_04_opcode_d3_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_07_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2267] // SAR Bb,Eb,CL + (const void *)&gInstructions[ 2273] // SAR Bb,Eb,CL }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_07_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2258] // SAR Bb,Eb,CL + (const void *)&gInstructions[ 2264] // SAR Bb,Eb,CL }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_07_l_00_nd_01_nf = @@ -8441,13 +8608,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_07_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_07_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2249] // SAR Eb,CL + (const void *)&gInstructions[ 2255] // SAR Eb,CL }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_07_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2240] // SAR Eb,CL + (const void *)&gInstructions[ 2246] // SAR Eb,CL }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_07_l_00_nd_00_nf = @@ -8482,13 +8649,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_07_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_06_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2224] // SAL Bb,Eb,CL + (const void *)&gInstructions[ 2230] // SAL Bb,Eb,CL }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_06_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2215] // SAL Bb,Eb,CL + (const void *)&gInstructions[ 2221] // SAL Bb,Eb,CL }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_06_l_00_nd_01_nf = @@ -8503,13 +8670,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_06_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_06_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2206] // SAL Eb,CL + (const void *)&gInstructions[ 2212] // SAL Eb,CL }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_06_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2197] // SAL Eb,CL + (const void *)&gInstructions[ 2203] // SAL Eb,CL }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_06_l_00_nd_00_nf = @@ -8544,13 +8711,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_06_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_05_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2461] // SHR Bb,Eb,CL + (const void *)&gInstructions[ 2467] // SHR Bb,Eb,CL }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_05_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2452] // SHR Bb,Eb,CL + (const void *)&gInstructions[ 2458] // SHR Bb,Eb,CL }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_05_l_00_nd_01_nf = @@ -8565,13 +8732,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_05_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_05_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2443] // SHR Eb,CL + (const void *)&gInstructions[ 2449] // SHR Eb,CL }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_05_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2434] // SHR Eb,CL + (const void *)&gInstructions[ 2440] // SHR Eb,CL }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_05_l_00_nd_00_nf = @@ -8606,13 +8773,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_05_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_04_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2399] // SHL Bb,Eb,CL + (const void *)&gInstructions[ 2405] // SHL Bb,Eb,CL }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_04_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2390] // SHL Bb,Eb,CL + (const void *)&gInstructions[ 2396] // SHL Bb,Eb,CL }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_04_l_00_nd_01_nf = @@ -8627,13 +8794,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_04_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_04_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2381] // SHL Eb,CL + (const void *)&gInstructions[ 2387] // SHL Eb,CL }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_04_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2372] // SHL Eb,CL + (const void *)&gInstructions[ 2378] // SHL Eb,CL }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_04_l_00_nd_00_nf = @@ -8668,13 +8835,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_04_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_03_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2063] // RCR Bb,Eb,CL + (const void *)&gInstructions[ 2067] // RCR Bb,Eb,CL }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_03_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2054] // RCR Bb,Eb,CL + (const void *)&gInstructions[ 2058] // RCR Bb,Eb,CL }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_03_l_00_nd_01_nf = @@ -8689,13 +8856,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_03_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_03_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2045] // RCR Eb,CL + (const void *)&gInstructions[ 2049] // RCR Eb,CL }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_03_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2036] // RCR Eb,CL + (const void *)&gInstructions[ 2040] // RCR Eb,CL }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_03_l_00_nd_00_nf = @@ -8730,13 +8897,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_03_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_02_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2019] // RCL Bb,Eb,CL + (const void *)&gInstructions[ 2023] // RCL Bb,Eb,CL }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_02_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2010] // RCL Bb,Eb,CL + (const void *)&gInstructions[ 2014] // RCL Bb,Eb,CL }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_02_l_00_nd_01_nf = @@ -8751,13 +8918,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_02_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_02_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2001] // RCL Eb,CL + (const void *)&gInstructions[ 2005] // RCL Eb,CL }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_02_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1992] // RCL Eb,CL + (const void *)&gInstructions[ 1996] // RCL Eb,CL }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_02_l_00_nd_00_nf = @@ -8792,13 +8959,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_02_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_01_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2171] // ROR Bb,Eb,CL + (const void *)&gInstructions[ 2177] // ROR Bb,Eb,CL }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_01_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2162] // ROR Bb,Eb,CL + (const void *)&gInstructions[ 2168] // ROR Bb,Eb,CL }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_01_l_00_nd_01_nf = @@ -8813,13 +8980,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_01_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_01_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2153] // ROR Eb,CL + (const void *)&gInstructions[ 2159] // ROR Eb,CL }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_01_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2144] // ROR Eb,CL + (const void *)&gInstructions[ 2150] // ROR Eb,CL }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_01_l_00_nd_00_nf = @@ -8854,13 +9021,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_01_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_00_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2129] // ROL Bb,Eb,CL + (const void *)&gInstructions[ 2135] // ROL Bb,Eb,CL }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_00_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2120] // ROL Bb,Eb,CL + (const void *)&gInstructions[ 2126] // ROL Bb,Eb,CL }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_00_l_00_nd_01_nf = @@ -8875,13 +9042,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_00_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_00_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2111] // ROL Eb,CL + (const void *)&gInstructions[ 2117] // ROL Eb,CL }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_00_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2102] // ROL Eb,CL + (const void *)&gInstructions[ 2108] // ROL Eb,CL }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d2_pp_00_modrmreg_00_l_00_nd_00_nf = @@ -8942,13 +9109,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_04_opcode_d2_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_07_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2266] // SAR Bv,Ev,1 + (const void *)&gInstructions[ 2272] // SAR Bv,Ev,1 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_07_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2257] // SAR Bv,Ev,1 + (const void *)&gInstructions[ 2263] // SAR Bv,Ev,1 }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_07_l_00_nd_01_nf = @@ -8963,13 +9130,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_07_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_07_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2248] // SAR Ev,1 + (const void *)&gInstructions[ 2254] // SAR Ev,1 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_07_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2239] // SAR Ev,1 + (const void *)&gInstructions[ 2245] // SAR Ev,1 }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_07_l_00_nd_00_nf = @@ -9004,13 +9171,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_07_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_06_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2223] // SAL Bv,Ev,1 + (const void *)&gInstructions[ 2229] // SAL Bv,Ev,1 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_06_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2214] // SAL Bv,Ev,1 + (const void *)&gInstructions[ 2220] // SAL Bv,Ev,1 }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_06_l_00_nd_01_nf = @@ -9025,13 +9192,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_06_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_06_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2205] // SAL Ev,1 + (const void *)&gInstructions[ 2211] // SAL Ev,1 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_06_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2196] // SAL Ev,1 + (const void *)&gInstructions[ 2202] // SAL Ev,1 }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_06_l_00_nd_00_nf = @@ -9066,13 +9233,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_06_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_05_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2460] // SHR Bv,Ev,1 + (const void *)&gInstructions[ 2466] // SHR Bv,Ev,1 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_05_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2451] // SHR Bv,Ev,1 + (const void *)&gInstructions[ 2457] // SHR Bv,Ev,1 }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_05_l_00_nd_01_nf = @@ -9087,13 +9254,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_05_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_05_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2442] // SHR Ev,1 + (const void *)&gInstructions[ 2448] // SHR Ev,1 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_05_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2433] // SHR Ev,1 + (const void *)&gInstructions[ 2439] // SHR Ev,1 }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_05_l_00_nd_00_nf = @@ -9128,13 +9295,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_05_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_04_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2398] // SHL Bv,Ev,1 + (const void *)&gInstructions[ 2404] // SHL Bv,Ev,1 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_04_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2389] // SHL Bv,Ev,1 + (const void *)&gInstructions[ 2395] // SHL Bv,Ev,1 }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_04_l_00_nd_01_nf = @@ -9149,13 +9316,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_04_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_04_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2380] // SHL Ev,1 + (const void *)&gInstructions[ 2386] // SHL Ev,1 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_04_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2371] // SHL Ev,1 + (const void *)&gInstructions[ 2377] // SHL Ev,1 }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_04_l_00_nd_00_nf = @@ -9190,13 +9357,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_04_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_03_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2062] // RCR Bv,Ev,1 + (const void *)&gInstructions[ 2066] // RCR Bv,Ev,1 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_03_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2053] // RCR Bv,Ev,1 + (const void *)&gInstructions[ 2057] // RCR Bv,Ev,1 }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_03_l_00_nd_01_nf = @@ -9211,13 +9378,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_03_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_03_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2044] // RCR Ev,1 + (const void *)&gInstructions[ 2048] // RCR Ev,1 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_03_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2035] // RCR Ev,1 + (const void *)&gInstructions[ 2039] // RCR Ev,1 }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_03_l_00_nd_00_nf = @@ -9252,13 +9419,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_03_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_02_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2018] // RCL Bv,Ev,1 + (const void *)&gInstructions[ 2022] // RCL Bv,Ev,1 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_02_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2009] // RCL Bv,Ev,1 + (const void *)&gInstructions[ 2013] // RCL Bv,Ev,1 }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_02_l_00_nd_01_nf = @@ -9273,13 +9440,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_02_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_02_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2000] // RCL Ev,1 + (const void *)&gInstructions[ 2004] // RCL Ev,1 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_02_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1991] // RCL Ev,1 + (const void *)&gInstructions[ 1995] // RCL Ev,1 }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_02_l_00_nd_00_nf = @@ -9314,13 +9481,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_02_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_01_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2170] // ROR Bv,Ev,1 + (const void *)&gInstructions[ 2176] // ROR Bv,Ev,1 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_01_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2161] // ROR Bv,Ev,1 + (const void *)&gInstructions[ 2167] // ROR Bv,Ev,1 }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_01_l_00_nd_01_nf = @@ -9335,13 +9502,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_01_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_01_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2152] // ROR Ev,1 + (const void *)&gInstructions[ 2158] // ROR Ev,1 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_01_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2143] // ROR Ev,1 + (const void *)&gInstructions[ 2149] // ROR Ev,1 }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_01_l_00_nd_00_nf = @@ -9376,13 +9543,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_01_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_00_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2128] // ROL Bv,Ev,1 + (const void *)&gInstructions[ 2134] // ROL Bv,Ev,1 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_00_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2119] // ROL Bv,Ev,1 + (const void *)&gInstructions[ 2125] // ROL Bv,Ev,1 }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_00_l_00_nd_01_nf = @@ -9397,13 +9564,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_00_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_00_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2110] // ROL Ev,1 + (const void *)&gInstructions[ 2116] // ROL Ev,1 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_00_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2101] // ROL Ev,1 + (const void *)&gInstructions[ 2107] // ROL Ev,1 }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg_00_l_00_nd_00_nf = @@ -9453,13 +9620,13 @@ const ND_TABLE_MODRM_REG gEvexMap_mmmmm_04_opcode_d1_pp_01_modrmreg = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_07_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2265] // SAR Bv,Ev,1 + (const void *)&gInstructions[ 2271] // SAR Bv,Ev,1 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_07_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2256] // SAR Bv,Ev,1 + (const void *)&gInstructions[ 2262] // SAR Bv,Ev,1 }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_07_l_00_nd_01_nf = @@ -9474,13 +9641,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_07_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_07_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2247] // SAR Ev,1 + (const void *)&gInstructions[ 2253] // SAR Ev,1 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_07_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2238] // SAR Ev,1 + (const void *)&gInstructions[ 2244] // SAR Ev,1 }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_07_l_00_nd_00_nf = @@ -9515,13 +9682,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_07_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_06_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2222] // SAL Bv,Ev,1 + (const void *)&gInstructions[ 2228] // SAL Bv,Ev,1 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_06_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2213] // SAL Bv,Ev,1 + (const void *)&gInstructions[ 2219] // SAL Bv,Ev,1 }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_06_l_00_nd_01_nf = @@ -9536,13 +9703,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_06_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_06_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2204] // SAL Ev,1 + (const void *)&gInstructions[ 2210] // SAL Ev,1 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_06_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2195] // SAL Ev,1 + (const void *)&gInstructions[ 2201] // SAL Ev,1 }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_06_l_00_nd_00_nf = @@ -9577,13 +9744,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_06_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_05_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2459] // SHR Bv,Ev,1 + (const void *)&gInstructions[ 2465] // SHR Bv,Ev,1 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_05_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2450] // SHR Bv,Ev,1 + (const void *)&gInstructions[ 2456] // SHR Bv,Ev,1 }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_05_l_00_nd_01_nf = @@ -9598,13 +9765,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_05_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_05_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2441] // SHR Ev,1 + (const void *)&gInstructions[ 2447] // SHR Ev,1 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_05_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2432] // SHR Ev,1 + (const void *)&gInstructions[ 2438] // SHR Ev,1 }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_05_l_00_nd_00_nf = @@ -9639,13 +9806,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_05_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_04_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2397] // SHL Bv,Ev,1 + (const void *)&gInstructions[ 2403] // SHL Bv,Ev,1 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_04_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2388] // SHL Bv,Ev,1 + (const void *)&gInstructions[ 2394] // SHL Bv,Ev,1 }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_04_l_00_nd_01_nf = @@ -9660,13 +9827,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_04_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_04_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2379] // SHL Ev,1 + (const void *)&gInstructions[ 2385] // SHL Ev,1 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_04_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2370] // SHL Ev,1 + (const void *)&gInstructions[ 2376] // SHL Ev,1 }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_04_l_00_nd_00_nf = @@ -9701,13 +9868,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_04_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_03_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2061] // RCR Bv,Ev,1 + (const void *)&gInstructions[ 2065] // RCR Bv,Ev,1 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_03_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2052] // RCR Bv,Ev,1 + (const void *)&gInstructions[ 2056] // RCR Bv,Ev,1 }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_03_l_00_nd_01_nf = @@ -9722,13 +9889,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_03_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_03_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2043] // RCR Ev,1 + (const void *)&gInstructions[ 2047] // RCR Ev,1 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_03_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2034] // RCR Ev,1 + (const void *)&gInstructions[ 2038] // RCR Ev,1 }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_03_l_00_nd_00_nf = @@ -9763,13 +9930,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_03_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_02_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2017] // RCL Bv,Ev,1 + (const void *)&gInstructions[ 2021] // RCL Bv,Ev,1 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_02_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2008] // RCL Bv,Ev,1 + (const void *)&gInstructions[ 2012] // RCL Bv,Ev,1 }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_02_l_00_nd_01_nf = @@ -9784,13 +9951,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_02_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_02_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1999] // RCL Ev,1 + (const void *)&gInstructions[ 2003] // RCL Ev,1 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_02_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1990] // RCL Ev,1 + (const void *)&gInstructions[ 1994] // RCL Ev,1 }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_02_l_00_nd_00_nf = @@ -9825,13 +9992,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_02_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_01_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2169] // ROR Bv,Ev,1 + (const void *)&gInstructions[ 2175] // ROR Bv,Ev,1 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_01_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2160] // ROR Bv,Ev,1 + (const void *)&gInstructions[ 2166] // ROR Bv,Ev,1 }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_01_l_00_nd_01_nf = @@ -9846,13 +10013,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_01_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_01_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2151] // ROR Ev,1 + (const void *)&gInstructions[ 2157] // ROR Ev,1 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_01_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2142] // ROR Ev,1 + (const void *)&gInstructions[ 2148] // ROR Ev,1 }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_01_l_00_nd_00_nf = @@ -9887,13 +10054,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_01_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_00_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2127] // ROL Bv,Ev,1 + (const void *)&gInstructions[ 2133] // ROL Bv,Ev,1 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_00_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2118] // ROL Bv,Ev,1 + (const void *)&gInstructions[ 2124] // ROL Bv,Ev,1 }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_00_l_00_nd_01_nf = @@ -9908,13 +10075,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_00_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_00_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2109] // ROL Ev,1 + (const void *)&gInstructions[ 2115] // ROL Ev,1 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_00_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2100] // ROL Ev,1 + (const void *)&gInstructions[ 2106] // ROL Ev,1 }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d1_pp_00_modrmreg_00_l_00_nd_00_nf = @@ -9975,13 +10142,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_04_opcode_d1_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_07_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2264] // SAR Bb,Eb,1 + (const void *)&gInstructions[ 2270] // SAR Bb,Eb,1 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_07_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2255] // SAR Bb,Eb,1 + (const void *)&gInstructions[ 2261] // SAR Bb,Eb,1 }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_07_l_00_nd_01_nf = @@ -9996,13 +10163,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_07_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_07_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2246] // SAR Eb,1 + (const void *)&gInstructions[ 2252] // SAR Eb,1 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_07_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2237] // SAR Eb,1 + (const void *)&gInstructions[ 2243] // SAR Eb,1 }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_07_l_00_nd_00_nf = @@ -10037,13 +10204,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_07_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_06_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2221] // SAL Bb,Eb,1 + (const void *)&gInstructions[ 2227] // SAL Bb,Eb,1 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_06_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2212] // SAL Bb,Eb,1 + (const void *)&gInstructions[ 2218] // SAL Bb,Eb,1 }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_06_l_00_nd_01_nf = @@ -10058,13 +10225,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_06_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_06_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2203] // SAL Eb,1 + (const void *)&gInstructions[ 2209] // SAL Eb,1 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_06_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2194] // SAL Eb,1 + (const void *)&gInstructions[ 2200] // SAL Eb,1 }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_06_l_00_nd_00_nf = @@ -10099,13 +10266,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_06_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_05_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2458] // SHR Bb,Eb,1 + (const void *)&gInstructions[ 2464] // SHR Bb,Eb,1 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_05_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2449] // SHR Bb,Eb,1 + (const void *)&gInstructions[ 2455] // SHR Bb,Eb,1 }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_05_l_00_nd_01_nf = @@ -10120,13 +10287,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_05_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_05_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2440] // SHR Eb,1 + (const void *)&gInstructions[ 2446] // SHR Eb,1 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_05_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2431] // SHR Eb,1 + (const void *)&gInstructions[ 2437] // SHR Eb,1 }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_05_l_00_nd_00_nf = @@ -10161,13 +10328,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_05_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_04_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2396] // SHL Bb,Eb,1 + (const void *)&gInstructions[ 2402] // SHL Bb,Eb,1 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_04_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2387] // SHL Bb,Eb,1 + (const void *)&gInstructions[ 2393] // SHL Bb,Eb,1 }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_04_l_00_nd_01_nf = @@ -10182,13 +10349,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_04_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_04_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2378] // SHL Eb,1 + (const void *)&gInstructions[ 2384] // SHL Eb,1 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_04_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2369] // SHL Eb,1 + (const void *)&gInstructions[ 2375] // SHL Eb,1 }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_04_l_00_nd_00_nf = @@ -10223,13 +10390,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_04_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_03_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2060] // RCR Bb,Eb,1 + (const void *)&gInstructions[ 2064] // RCR Bb,Eb,1 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_03_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2051] // RCR Bb,Eb,1 + (const void *)&gInstructions[ 2055] // RCR Bb,Eb,1 }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_03_l_00_nd_01_nf = @@ -10244,13 +10411,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_03_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_03_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2042] // RCR Eb,1 + (const void *)&gInstructions[ 2046] // RCR Eb,1 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_03_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2033] // RCR Eb,1 + (const void *)&gInstructions[ 2037] // RCR Eb,1 }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_03_l_00_nd_00_nf = @@ -10285,13 +10452,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_03_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_02_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2016] // RCL Bb,Eb,1 + (const void *)&gInstructions[ 2020] // RCL Bb,Eb,1 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_02_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2007] // RCL Bb,Eb,1 + (const void *)&gInstructions[ 2011] // RCL Bb,Eb,1 }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_02_l_00_nd_01_nf = @@ -10306,13 +10473,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_02_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_02_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1998] // RCL Eb,1 + (const void *)&gInstructions[ 2002] // RCL Eb,1 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_02_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1989] // RCL Eb,1 + (const void *)&gInstructions[ 1993] // RCL Eb,1 }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_02_l_00_nd_00_nf = @@ -10347,13 +10514,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_02_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_01_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2168] // ROR Bb,Eb,1 + (const void *)&gInstructions[ 2174] // ROR Bb,Eb,1 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_01_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2159] // ROR Bb,Eb,1 + (const void *)&gInstructions[ 2165] // ROR Bb,Eb,1 }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_01_l_00_nd_01_nf = @@ -10368,13 +10535,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_01_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_01_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2150] // ROR Eb,1 + (const void *)&gInstructions[ 2156] // ROR Eb,1 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_01_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2141] // ROR Eb,1 + (const void *)&gInstructions[ 2147] // ROR Eb,1 }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_01_l_00_nd_00_nf = @@ -10409,13 +10576,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_01_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_00_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2126] // ROL Bb,Eb,1 + (const void *)&gInstructions[ 2132] // ROL Bb,Eb,1 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_00_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2117] // ROL Bb,Eb,1 + (const void *)&gInstructions[ 2123] // ROL Bb,Eb,1 }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_00_l_00_nd_01_nf = @@ -10430,13 +10597,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_00_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_00_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2108] // ROL Eb,1 + (const void *)&gInstructions[ 2114] // ROL Eb,1 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_00_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2099] // ROL Eb,1 + (const void *)&gInstructions[ 2105] // ROL Eb,1 }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_d0_pp_00_modrmreg_00_l_00_nd_00_nf = @@ -10497,13 +10664,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_04_opcode_d0_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_07_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2263] // SAR Bv,Ev,Ib + (const void *)&gInstructions[ 2269] // SAR Bv,Ev,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_07_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2254] // SAR Bv,Ev,Ib + (const void *)&gInstructions[ 2260] // SAR Bv,Ev,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_07_l_00_nd_01_nf = @@ -10518,13 +10685,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_07_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_07_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2245] // SAR Ev,Ib + (const void *)&gInstructions[ 2251] // SAR Ev,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_07_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2236] // SAR Ev,Ib + (const void *)&gInstructions[ 2242] // SAR Ev,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_07_l_00_nd_00_nf = @@ -10559,13 +10726,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_07_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_06_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2220] // SAL Bv,Ev,Ib + (const void *)&gInstructions[ 2226] // SAL Bv,Ev,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_06_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2211] // SAL Bv,Ev,Ib + (const void *)&gInstructions[ 2217] // SAL Bv,Ev,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_06_l_00_nd_01_nf = @@ -10580,13 +10747,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_06_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_06_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2202] // SAL Ev,Ib + (const void *)&gInstructions[ 2208] // SAL Ev,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_06_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2193] // SAL Ev,Ib + (const void *)&gInstructions[ 2199] // SAL Ev,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_06_l_00_nd_00_nf = @@ -10621,13 +10788,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_06_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_05_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2457] // SHR Bv,Ev,Ib + (const void *)&gInstructions[ 2463] // SHR Bv,Ev,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_05_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2448] // SHR Bv,Ev,Ib + (const void *)&gInstructions[ 2454] // SHR Bv,Ev,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_05_l_00_nd_01_nf = @@ -10642,13 +10809,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_05_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_05_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2439] // SHR Ev,Ib + (const void *)&gInstructions[ 2445] // SHR Ev,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_05_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2430] // SHR Ev,Ib + (const void *)&gInstructions[ 2436] // SHR Ev,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_05_l_00_nd_00_nf = @@ -10683,13 +10850,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_05_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_04_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2395] // SHL Bv,Ev,Ib + (const void *)&gInstructions[ 2401] // SHL Bv,Ev,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_04_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2386] // SHL Bv,Ev,Ib + (const void *)&gInstructions[ 2392] // SHL Bv,Ev,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_04_l_00_nd_01_nf = @@ -10704,13 +10871,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_04_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_04_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2377] // SHL Ev,Ib + (const void *)&gInstructions[ 2383] // SHL Ev,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_04_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2368] // SHL Ev,Ib + (const void *)&gInstructions[ 2374] // SHL Ev,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_04_l_00_nd_00_nf = @@ -10745,13 +10912,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_04_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_03_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2059] // RCR Bv,Ev,Ib + (const void *)&gInstructions[ 2063] // RCR Bv,Ev,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_03_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2050] // RCR Bv,Ev,Ib + (const void *)&gInstructions[ 2054] // RCR Bv,Ev,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_03_l_00_nd_01_nf = @@ -10766,13 +10933,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_03_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_03_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2041] // RCR Ev,Ib + (const void *)&gInstructions[ 2045] // RCR Ev,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_03_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2032] // RCR Ev,Ib + (const void *)&gInstructions[ 2036] // RCR Ev,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_03_l_00_nd_00_nf = @@ -10807,13 +10974,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_03_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_02_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2015] // RCL Bv,Ev,Ib + (const void *)&gInstructions[ 2019] // RCL Bv,Ev,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_02_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2006] // RCL Bv,Ev,Ib + (const void *)&gInstructions[ 2010] // RCL Bv,Ev,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_02_l_00_nd_01_nf = @@ -10828,13 +10995,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_02_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_02_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1997] // RCL Ev,Ib + (const void *)&gInstructions[ 2001] // RCL Ev,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_02_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1988] // RCL Ev,Ib + (const void *)&gInstructions[ 1992] // RCL Ev,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_02_l_00_nd_00_nf = @@ -10869,13 +11036,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_02_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_01_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2167] // ROR Bv,Ev,Ib + (const void *)&gInstructions[ 2173] // ROR Bv,Ev,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_01_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2158] // ROR Bv,Ev,Ib + (const void *)&gInstructions[ 2164] // ROR Bv,Ev,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_01_l_00_nd_01_nf = @@ -10890,13 +11057,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_01_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_01_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2149] // ROR Ev,Ib + (const void *)&gInstructions[ 2155] // ROR Ev,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_01_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2140] // ROR Ev,Ib + (const void *)&gInstructions[ 2146] // ROR Ev,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_01_l_00_nd_00_nf = @@ -10931,13 +11098,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_01_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_00_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2125] // ROL Bv,Ev,Ib + (const void *)&gInstructions[ 2131] // ROL Bv,Ev,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_00_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2116] // ROL Bv,Ev,Ib + (const void *)&gInstructions[ 2122] // ROL Bv,Ev,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_00_l_00_nd_01_nf = @@ -10952,13 +11119,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_00_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_00_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2107] // ROL Ev,Ib + (const void *)&gInstructions[ 2113] // ROL Ev,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_00_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2098] // ROL Ev,Ib + (const void *)&gInstructions[ 2104] // ROL Ev,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg_00_l_00_nd_00_nf = @@ -11008,13 +11175,13 @@ const ND_TABLE_MODRM_REG gEvexMap_mmmmm_04_opcode_c1_pp_01_modrmreg = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_07_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2262] // SAR Bv,Ev,Ib + (const void *)&gInstructions[ 2268] // SAR Bv,Ev,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_07_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2253] // SAR Bv,Ev,Ib + (const void *)&gInstructions[ 2259] // SAR Bv,Ev,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_07_l_00_nd_01_nf = @@ -11029,13 +11196,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_07_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_07_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2244] // SAR Ev,Ib + (const void *)&gInstructions[ 2250] // SAR Ev,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_07_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2235] // SAR Ev,Ib + (const void *)&gInstructions[ 2241] // SAR Ev,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_07_l_00_nd_00_nf = @@ -11070,13 +11237,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_07_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_06_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2219] // SAL Bv,Ev,Ib + (const void *)&gInstructions[ 2225] // SAL Bv,Ev,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_06_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2210] // SAL Bv,Ev,Ib + (const void *)&gInstructions[ 2216] // SAL Bv,Ev,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_06_l_00_nd_01_nf = @@ -11091,13 +11258,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_06_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_06_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2201] // SAL Ev,Ib + (const void *)&gInstructions[ 2207] // SAL Ev,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_06_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2192] // SAL Ev,Ib + (const void *)&gInstructions[ 2198] // SAL Ev,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_06_l_00_nd_00_nf = @@ -11132,13 +11299,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_06_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_05_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2456] // SHR Bv,Ev,Ib + (const void *)&gInstructions[ 2462] // SHR Bv,Ev,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_05_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2447] // SHR Bv,Ev,Ib + (const void *)&gInstructions[ 2453] // SHR Bv,Ev,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_05_l_00_nd_01_nf = @@ -11153,13 +11320,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_05_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_05_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2438] // SHR Ev,Ib + (const void *)&gInstructions[ 2444] // SHR Ev,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_05_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2429] // SHR Ev,Ib + (const void *)&gInstructions[ 2435] // SHR Ev,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_05_l_00_nd_00_nf = @@ -11194,13 +11361,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_05_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_04_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2394] // SHL Bv,Ev,Ib + (const void *)&gInstructions[ 2400] // SHL Bv,Ev,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_04_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2385] // SHL Bv,Ev,Ib + (const void *)&gInstructions[ 2391] // SHL Bv,Ev,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_04_l_00_nd_01_nf = @@ -11215,13 +11382,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_04_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_04_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2376] // SHL Ev,Ib + (const void *)&gInstructions[ 2382] // SHL Ev,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_04_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2367] // SHL Ev,Ib + (const void *)&gInstructions[ 2373] // SHL Ev,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_04_l_00_nd_00_nf = @@ -11256,13 +11423,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_04_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_03_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2058] // RCR Bv,Ev,Ib + (const void *)&gInstructions[ 2062] // RCR Bv,Ev,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_03_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2049] // RCR Bv,Ev,Ib + (const void *)&gInstructions[ 2053] // RCR Bv,Ev,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_03_l_00_nd_01_nf = @@ -11277,13 +11444,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_03_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_03_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2040] // RCR Ev,Ib + (const void *)&gInstructions[ 2044] // RCR Ev,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_03_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2031] // RCR Ev,Ib + (const void *)&gInstructions[ 2035] // RCR Ev,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_03_l_00_nd_00_nf = @@ -11318,13 +11485,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_03_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_02_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2014] // RCL Bv,Ev,Ib + (const void *)&gInstructions[ 2018] // RCL Bv,Ev,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_02_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2005] // RCL Bv,Ev,Ib + (const void *)&gInstructions[ 2009] // RCL Bv,Ev,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_02_l_00_nd_01_nf = @@ -11339,13 +11506,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_02_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_02_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1996] // RCL Ev,Ib + (const void *)&gInstructions[ 2000] // RCL Ev,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_02_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1987] // RCL Ev,Ib + (const void *)&gInstructions[ 1991] // RCL Ev,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_02_l_00_nd_00_nf = @@ -11380,13 +11547,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_02_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_01_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2166] // ROR Bv,Ev,Ib + (const void *)&gInstructions[ 2172] // ROR Bv,Ev,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_01_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2157] // ROR Bv,Ev,Ib + (const void *)&gInstructions[ 2163] // ROR Bv,Ev,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_01_l_00_nd_01_nf = @@ -11401,13 +11568,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_01_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_01_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2148] // ROR Ev,Ib + (const void *)&gInstructions[ 2154] // ROR Ev,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_01_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2139] // ROR Ev,Ib + (const void *)&gInstructions[ 2145] // ROR Ev,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_01_l_00_nd_00_nf = @@ -11442,13 +11609,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_01_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_00_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2124] // ROL Bv,Ev,Ib + (const void *)&gInstructions[ 2130] // ROL Bv,Ev,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_00_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2115] // ROL Bv,Ev,Ib + (const void *)&gInstructions[ 2121] // ROL Bv,Ev,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_00_l_00_nd_01_nf = @@ -11463,13 +11630,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_00_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_00_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2106] // ROL Ev,Ib + (const void *)&gInstructions[ 2112] // ROL Ev,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_00_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2097] // ROL Ev,Ib + (const void *)&gInstructions[ 2103] // ROL Ev,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c1_pp_00_modrmreg_00_l_00_nd_00_nf = @@ -11530,13 +11697,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_04_opcode_c1_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_07_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2261] // SAR Bb,Eb,Ib + (const void *)&gInstructions[ 2267] // SAR Bb,Eb,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_07_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2252] // SAR Bb,Eb,Ib + (const void *)&gInstructions[ 2258] // SAR Bb,Eb,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_07_l_00_nd_01_nf = @@ -11551,13 +11718,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_07_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_07_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2243] // SAR Eb,Ib + (const void *)&gInstructions[ 2249] // SAR Eb,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_07_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2234] // SAR Eb,Ib + (const void *)&gInstructions[ 2240] // SAR Eb,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_07_l_00_nd_00_nf = @@ -11592,13 +11759,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_07_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_06_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2218] // SAL Bb,Eb,Ib + (const void *)&gInstructions[ 2224] // SAL Bb,Eb,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_06_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2209] // SAL Bb,Eb,Ib + (const void *)&gInstructions[ 2215] // SAL Bb,Eb,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_06_l_00_nd_01_nf = @@ -11613,13 +11780,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_06_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_06_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2200] // SAL Eb,Ib + (const void *)&gInstructions[ 2206] // SAL Eb,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_06_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2191] // SAL Eb,Ib + (const void *)&gInstructions[ 2197] // SAL Eb,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_06_l_00_nd_00_nf = @@ -11654,13 +11821,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_06_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_05_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2455] // SHR Bb,Eb,Ib + (const void *)&gInstructions[ 2461] // SHR Bb,Eb,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_05_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2446] // SHR Bb,Eb,Ib + (const void *)&gInstructions[ 2452] // SHR Bb,Eb,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_05_l_00_nd_01_nf = @@ -11675,13 +11842,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_05_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_05_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2437] // SHR Eb,Ib + (const void *)&gInstructions[ 2443] // SHR Eb,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_05_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2428] // SHR Eb,Ib + (const void *)&gInstructions[ 2434] // SHR Eb,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_05_l_00_nd_00_nf = @@ -11716,13 +11883,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_05_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_04_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2393] // SHL Bb,Eb,Ib + (const void *)&gInstructions[ 2399] // SHL Bb,Eb,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_04_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2384] // SHL Bb,Eb,Ib + (const void *)&gInstructions[ 2390] // SHL Bb,Eb,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_04_l_00_nd_01_nf = @@ -11737,13 +11904,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_04_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_04_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2375] // SHL Eb,Ib + (const void *)&gInstructions[ 2381] // SHL Eb,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_04_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2366] // SHL Eb,Ib + (const void *)&gInstructions[ 2372] // SHL Eb,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_04_l_00_nd_00_nf = @@ -11778,13 +11945,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_04_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_03_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2057] // RCR Bb,Eb,Ib + (const void *)&gInstructions[ 2061] // RCR Bb,Eb,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_03_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2048] // RCR Bb,Eb,Ib + (const void *)&gInstructions[ 2052] // RCR Bb,Eb,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_03_l_00_nd_01_nf = @@ -11799,13 +11966,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_03_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_03_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2039] // RCR Eb,Ib + (const void *)&gInstructions[ 2043] // RCR Eb,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_03_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2030] // RCR Eb,Ib + (const void *)&gInstructions[ 2034] // RCR Eb,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_03_l_00_nd_00_nf = @@ -11840,13 +12007,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_03_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_02_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2013] // RCL Bb,Eb,Ib + (const void *)&gInstructions[ 2017] // RCL Bb,Eb,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_02_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2004] // RCL Bb,Eb,Ib + (const void *)&gInstructions[ 2008] // RCL Bb,Eb,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_02_l_00_nd_01_nf = @@ -11861,13 +12028,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_02_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_02_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1995] // RCL Eb,Ib + (const void *)&gInstructions[ 1999] // RCL Eb,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_02_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1986] // RCL Eb,Ib + (const void *)&gInstructions[ 1990] // RCL Eb,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_02_l_00_nd_00_nf = @@ -11902,13 +12069,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_02_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_01_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2165] // ROR Bb,Eb,Ib + (const void *)&gInstructions[ 2171] // ROR Bb,Eb,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_01_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2156] // ROR Bb,Eb,Ib + (const void *)&gInstructions[ 2162] // ROR Bb,Eb,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_01_l_00_nd_01_nf = @@ -11923,13 +12090,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_01_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_01_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2147] // ROR Eb,Ib + (const void *)&gInstructions[ 2153] // ROR Eb,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_01_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2138] // ROR Eb,Ib + (const void *)&gInstructions[ 2144] // ROR Eb,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_01_l_00_nd_00_nf = @@ -11964,13 +12131,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_01_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_00_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2123] // ROL Bb,Eb,Ib + (const void *)&gInstructions[ 2129] // ROL Bb,Eb,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_00_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2114] // ROL Bb,Eb,Ib + (const void *)&gInstructions[ 2120] // ROL Bb,Eb,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_00_l_00_nd_01_nf = @@ -11985,13 +12152,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_00_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_00_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2105] // ROL Eb,Ib + (const void *)&gInstructions[ 2111] // ROL Eb,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_00_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2096] // ROL Eb,Ib + (const void *)&gInstructions[ 2102] // ROL Eb,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_c0_pp_00_modrmreg_00_l_00_nd_00_nf = @@ -12187,13 +12354,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_04_opcode_af_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_ad_pp_01_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2485] // SHRD Bv,Ev,Gv,CL + (const void *)&gInstructions[ 2491] // SHRD Bv,Ev,Gv,CL }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_ad_pp_01_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2481] // SHRD Bv,Ev,Gv,CL + (const void *)&gInstructions[ 2487] // SHRD Bv,Ev,Gv,CL }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_ad_pp_01_l_00_nd_01_nf = @@ -12208,13 +12375,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_ad_pp_01_l_00_nd_01_nf = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_ad_pp_01_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2477] // SHRD Ev,Gv,CL + (const void *)&gInstructions[ 2483] // SHRD Ev,Gv,CL }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_ad_pp_01_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2473] // SHRD Ev,Gv,CL + (const void *)&gInstructions[ 2479] // SHRD Ev,Gv,CL }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_ad_pp_01_l_00_nd_00_nf = @@ -12249,13 +12416,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_ad_pp_01_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_ad_pp_00_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2483] // SHRD Bv,Ev,Gv,CL + (const void *)&gInstructions[ 2489] // SHRD Bv,Ev,Gv,CL }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_ad_pp_00_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2479] // SHRD Bv,Ev,Gv,CL + (const void *)&gInstructions[ 2485] // SHRD Bv,Ev,Gv,CL }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_ad_pp_00_l_00_nd_01_nf = @@ -12270,13 +12437,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_ad_pp_00_l_00_nd_01_nf = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_ad_pp_00_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2475] // SHRD Ev,Gv,CL + (const void *)&gInstructions[ 2481] // SHRD Ev,Gv,CL }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_ad_pp_00_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2471] // SHRD Ev,Gv,CL + (const void *)&gInstructions[ 2477] // SHRD Ev,Gv,CL }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_ad_pp_00_l_00_nd_00_nf = @@ -12322,13 +12489,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_04_opcode_ad_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_a5_pp_01_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2423] // SHLD Bv,Ev,Gv,CL + (const void *)&gInstructions[ 2429] // SHLD Bv,Ev,Gv,CL }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_a5_pp_01_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2419] // SHLD Bv,Ev,Gv,CL + (const void *)&gInstructions[ 2425] // SHLD Bv,Ev,Gv,CL }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_a5_pp_01_l_00_nd_01_nf = @@ -12343,13 +12510,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_a5_pp_01_l_00_nd_01_nf = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_a5_pp_01_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2415] // SHLD Ev,Gv,CL + (const void *)&gInstructions[ 2421] // SHLD Ev,Gv,CL }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_a5_pp_01_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2411] // SHLD Ev,Gv,CL + (const void *)&gInstructions[ 2417] // SHLD Ev,Gv,CL }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_a5_pp_01_l_00_nd_00_nf = @@ -12384,13 +12551,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_a5_pp_01_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_a5_pp_00_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2421] // SHLD Bv,Ev,Gv,CL + (const void *)&gInstructions[ 2427] // SHLD Bv,Ev,Gv,CL }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_a5_pp_00_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2417] // SHLD Bv,Ev,Gv,CL + (const void *)&gInstructions[ 2423] // SHLD Bv,Ev,Gv,CL }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_a5_pp_00_l_00_nd_01_nf = @@ -12405,13 +12572,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_a5_pp_00_l_00_nd_01_nf = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_a5_pp_00_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2413] // SHLD Ev,Gv,CL + (const void *)&gInstructions[ 2419] // SHLD Ev,Gv,CL }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_a5_pp_00_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2409] // SHLD Ev,Gv,CL + (const void *)&gInstructions[ 2415] // SHLD Ev,Gv,CL }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_a5_pp_00_l_00_nd_00_nf = @@ -12457,7 +12624,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_04_opcode_a5_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_8f_pp_00_modrmreg_00_modrmmod_01_l_00_w_01_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1830] // POP2P Bv,Rv + (const void *)&gInstructions[ 1832] // POP2P Bv,Rv }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_8f_pp_00_modrmreg_00_modrmmod_01_l_00_w_01_nd_01_nf = @@ -12481,7 +12648,7 @@ const ND_TABLE_EX_ND gEvexMap_mmmmm_04_opcode_8f_pp_00_modrmreg_00_modrmmod_01_l const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_8f_pp_00_modrmreg_00_modrmmod_01_l_00_w_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1829] // POP2 Bv,Rv + (const void *)&gInstructions[ 1831] // POP2 Bv,Rv }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_8f_pp_00_modrmreg_00_modrmmod_01_l_00_w_00_nd_01_nf = @@ -12560,13 +12727,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_04_opcode_8f_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_88_pp_01_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1836] // POPCNT Gv,Ev + (const void *)&gInstructions[ 1838] // POPCNT Gv,Ev }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_88_pp_01_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1834] // POPCNT Gv,Ev + (const void *)&gInstructions[ 1836] // POPCNT Gv,Ev }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_88_pp_01_l_00_nd_00_nf = @@ -12601,13 +12768,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_88_pp_01_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_88_pp_00_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1835] // POPCNT Gv,Ev + (const void *)&gInstructions[ 1837] // POPCNT Gv,Ev }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_88_pp_00_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1833] // POPCNT Gv,Ev + (const void *)&gInstructions[ 1835] // POPCNT Gv,Ev }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_88_pp_00_l_00_nd_00_nf = @@ -13231,13 +13398,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_83_pp_01_modrmreg_07_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_83_pp_01_modrmreg_06_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4128] // XOR Bv,Ev,Ib + (const void *)&gInstructions[ 4177] // XOR Bv,Ev,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_83_pp_01_modrmreg_06_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4117] // XOR Bv,Ev,Ib + (const void *)&gInstructions[ 4166] // XOR Bv,Ev,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_83_pp_01_modrmreg_06_l_00_nd_01_nf = @@ -13252,13 +13419,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_83_pp_01_modrmreg_06_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_83_pp_01_modrmreg_06_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4106] // XOR Ev,Ib + (const void *)&gInstructions[ 4155] // XOR Ev,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_83_pp_01_modrmreg_06_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4095] // XOR Ev,Ib + (const void *)&gInstructions[ 4144] // XOR Ev,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_83_pp_01_modrmreg_06_l_00_nd_00_nf = @@ -13293,13 +13460,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_83_pp_01_modrmreg_06_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_83_pp_01_modrmreg_05_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2566] // SUB Bv,Ev,Ib + (const void *)&gInstructions[ 2572] // SUB Bv,Ev,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_83_pp_01_modrmreg_05_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2555] // SUB Bv,Ev,Ib + (const void *)&gInstructions[ 2561] // SUB Bv,Ev,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_83_pp_01_modrmreg_05_l_00_nd_01_nf = @@ -13314,13 +13481,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_83_pp_01_modrmreg_05_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_83_pp_01_modrmreg_05_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2544] // SUB Ev,Ib + (const void *)&gInstructions[ 2550] // SUB Ev,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_83_pp_01_modrmreg_05_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2533] // SUB Ev,Ib + (const void *)&gInstructions[ 2539] // SUB Ev,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_83_pp_01_modrmreg_05_l_00_nd_00_nf = @@ -13417,7 +13584,7 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_83_pp_01_modrmreg_04_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_83_pp_01_modrmreg_03_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2300] // SBB Bv,Ev,Ib + (const void *)&gInstructions[ 2306] // SBB Bv,Ev,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_83_pp_01_modrmreg_03_l_00_nd_01_nf = @@ -13432,7 +13599,7 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_83_pp_01_modrmreg_03_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_83_pp_01_modrmreg_03_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2289] // SBB Ev,Ib + (const void *)&gInstructions[ 2295] // SBB Ev,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_83_pp_01_modrmreg_03_l_00_nd_00_nf = @@ -13517,13 +13684,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_83_pp_01_modrmreg_02_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_83_pp_01_modrmreg_01_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1623] // OR Bv,Ev,Ib + (const void *)&gInstructions[ 1625] // OR Bv,Ev,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_83_pp_01_modrmreg_01_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1612] // OR Bv,Ev,Ib + (const void *)&gInstructions[ 1614] // OR Bv,Ev,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_83_pp_01_modrmreg_01_l_00_nd_01_nf = @@ -13538,13 +13705,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_83_pp_01_modrmreg_01_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_83_pp_01_modrmreg_01_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1601] // OR Ev,Ib + (const void *)&gInstructions[ 1603] // OR Ev,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_83_pp_01_modrmreg_01_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1590] // OR Ev,Ib + (const void *)&gInstructions[ 1592] // OR Ev,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_83_pp_01_modrmreg_01_l_00_nd_00_nf = @@ -13795,13 +13962,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_83_pp_00_modrmreg_07_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_83_pp_00_modrmreg_06_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4127] // XOR Bv,Ev,Ib + (const void *)&gInstructions[ 4176] // XOR Bv,Ev,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_83_pp_00_modrmreg_06_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4116] // XOR Bv,Ev,Ib + (const void *)&gInstructions[ 4165] // XOR Bv,Ev,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_83_pp_00_modrmreg_06_l_00_nd_01_nf = @@ -13816,13 +13983,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_83_pp_00_modrmreg_06_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_83_pp_00_modrmreg_06_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4105] // XOR Ev,Ib + (const void *)&gInstructions[ 4154] // XOR Ev,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_83_pp_00_modrmreg_06_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4094] // XOR Ev,Ib + (const void *)&gInstructions[ 4143] // XOR Ev,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_83_pp_00_modrmreg_06_l_00_nd_00_nf = @@ -13857,13 +14024,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_83_pp_00_modrmreg_06_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_83_pp_00_modrmreg_05_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2565] // SUB Bv,Ev,Ib + (const void *)&gInstructions[ 2571] // SUB Bv,Ev,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_83_pp_00_modrmreg_05_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2554] // SUB Bv,Ev,Ib + (const void *)&gInstructions[ 2560] // SUB Bv,Ev,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_83_pp_00_modrmreg_05_l_00_nd_01_nf = @@ -13878,13 +14045,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_83_pp_00_modrmreg_05_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_83_pp_00_modrmreg_05_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2543] // SUB Ev,Ib + (const void *)&gInstructions[ 2549] // SUB Ev,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_83_pp_00_modrmreg_05_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2532] // SUB Ev,Ib + (const void *)&gInstructions[ 2538] // SUB Ev,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_83_pp_00_modrmreg_05_l_00_nd_00_nf = @@ -13981,7 +14148,7 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_83_pp_00_modrmreg_04_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_83_pp_00_modrmreg_03_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2299] // SBB Bv,Ev,Ib + (const void *)&gInstructions[ 2305] // SBB Bv,Ev,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_83_pp_00_modrmreg_03_l_00_nd_01_nf = @@ -13996,7 +14163,7 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_83_pp_00_modrmreg_03_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_83_pp_00_modrmreg_03_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2288] // SBB Ev,Ib + (const void *)&gInstructions[ 2294] // SBB Ev,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_83_pp_00_modrmreg_03_l_00_nd_00_nf = @@ -14081,13 +14248,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_83_pp_00_modrmreg_02_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_83_pp_00_modrmreg_01_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1622] // OR Bv,Ev,Ib + (const void *)&gInstructions[ 1624] // OR Bv,Ev,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_83_pp_00_modrmreg_01_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1611] // OR Bv,Ev,Ib + (const void *)&gInstructions[ 1613] // OR Bv,Ev,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_83_pp_00_modrmreg_01_l_00_nd_01_nf = @@ -14102,13 +14269,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_83_pp_00_modrmreg_01_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_83_pp_00_modrmreg_01_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1600] // OR Ev,Ib + (const void *)&gInstructions[ 1602] // OR Ev,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_83_pp_00_modrmreg_01_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1589] // OR Ev,Ib + (const void *)&gInstructions[ 1591] // OR Ev,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_83_pp_00_modrmreg_01_l_00_nd_00_nf = @@ -14370,13 +14537,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_81_pp_01_modrmreg_07_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_81_pp_01_modrmreg_06_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4126] // XOR Bv,Ev,Iz + (const void *)&gInstructions[ 4175] // XOR Bv,Ev,Iz }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_81_pp_01_modrmreg_06_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4115] // XOR Bv,Ev,Iz + (const void *)&gInstructions[ 4164] // XOR Bv,Ev,Iz }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_81_pp_01_modrmreg_06_l_00_nd_01_nf = @@ -14391,13 +14558,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_81_pp_01_modrmreg_06_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_81_pp_01_modrmreg_06_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4104] // XOR Ev,Iz + (const void *)&gInstructions[ 4153] // XOR Ev,Iz }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_81_pp_01_modrmreg_06_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4093] // XOR Ev,Iz + (const void *)&gInstructions[ 4142] // XOR Ev,Iz }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_81_pp_01_modrmreg_06_l_00_nd_00_nf = @@ -14432,13 +14599,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_81_pp_01_modrmreg_06_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_81_pp_01_modrmreg_05_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2564] // SUB Bv,Ev,Iz + (const void *)&gInstructions[ 2570] // SUB Bv,Ev,Iz }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_81_pp_01_modrmreg_05_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2553] // SUB Bv,Ev,Iz + (const void *)&gInstructions[ 2559] // SUB Bv,Ev,Iz }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_81_pp_01_modrmreg_05_l_00_nd_01_nf = @@ -14453,13 +14620,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_81_pp_01_modrmreg_05_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_81_pp_01_modrmreg_05_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2542] // SUB Ev,Iz + (const void *)&gInstructions[ 2548] // SUB Ev,Iz }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_81_pp_01_modrmreg_05_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2531] // SUB Ev,Iz + (const void *)&gInstructions[ 2537] // SUB Ev,Iz }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_81_pp_01_modrmreg_05_l_00_nd_00_nf = @@ -14556,7 +14723,7 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_81_pp_01_modrmreg_04_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_81_pp_01_modrmreg_03_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2298] // SBB Bv,Ev,Iz + (const void *)&gInstructions[ 2304] // SBB Bv,Ev,Iz }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_81_pp_01_modrmreg_03_l_00_nd_01_nf = @@ -14571,7 +14738,7 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_81_pp_01_modrmreg_03_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_81_pp_01_modrmreg_03_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2287] // SBB Ev,Iz + (const void *)&gInstructions[ 2293] // SBB Ev,Iz }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_81_pp_01_modrmreg_03_l_00_nd_00_nf = @@ -14656,13 +14823,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_81_pp_01_modrmreg_02_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_81_pp_01_modrmreg_01_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1621] // OR Bv,Ev,Iz + (const void *)&gInstructions[ 1623] // OR Bv,Ev,Iz }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_81_pp_01_modrmreg_01_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1610] // OR Bv,Ev,Iz + (const void *)&gInstructions[ 1612] // OR Bv,Ev,Iz }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_81_pp_01_modrmreg_01_l_00_nd_01_nf = @@ -14677,13 +14844,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_81_pp_01_modrmreg_01_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_81_pp_01_modrmreg_01_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1599] // OR Ev,Iz + (const void *)&gInstructions[ 1601] // OR Ev,Iz }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_81_pp_01_modrmreg_01_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1588] // OR Ev,Iz + (const void *)&gInstructions[ 1590] // OR Ev,Iz }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_81_pp_01_modrmreg_01_l_00_nd_00_nf = @@ -14934,13 +15101,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_81_pp_00_modrmreg_07_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_81_pp_00_modrmreg_06_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4125] // XOR Bv,Ev,Iz + (const void *)&gInstructions[ 4174] // XOR Bv,Ev,Iz }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_81_pp_00_modrmreg_06_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4114] // XOR Bv,Ev,Iz + (const void *)&gInstructions[ 4163] // XOR Bv,Ev,Iz }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_81_pp_00_modrmreg_06_l_00_nd_01_nf = @@ -14955,13 +15122,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_81_pp_00_modrmreg_06_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_81_pp_00_modrmreg_06_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4103] // XOR Ev,Iz + (const void *)&gInstructions[ 4152] // XOR Ev,Iz }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_81_pp_00_modrmreg_06_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4092] // XOR Ev,Iz + (const void *)&gInstructions[ 4141] // XOR Ev,Iz }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_81_pp_00_modrmreg_06_l_00_nd_00_nf = @@ -14996,13 +15163,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_81_pp_00_modrmreg_06_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_81_pp_00_modrmreg_05_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2563] // SUB Bv,Ev,Iz + (const void *)&gInstructions[ 2569] // SUB Bv,Ev,Iz }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_81_pp_00_modrmreg_05_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2552] // SUB Bv,Ev,Iz + (const void *)&gInstructions[ 2558] // SUB Bv,Ev,Iz }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_81_pp_00_modrmreg_05_l_00_nd_01_nf = @@ -15017,13 +15184,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_81_pp_00_modrmreg_05_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_81_pp_00_modrmreg_05_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2541] // SUB Ev,Iz + (const void *)&gInstructions[ 2547] // SUB Ev,Iz }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_81_pp_00_modrmreg_05_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2530] // SUB Ev,Iz + (const void *)&gInstructions[ 2536] // SUB Ev,Iz }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_81_pp_00_modrmreg_05_l_00_nd_00_nf = @@ -15120,7 +15287,7 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_81_pp_00_modrmreg_04_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_81_pp_00_modrmreg_03_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2297] // SBB Bv,Ev,Iz + (const void *)&gInstructions[ 2303] // SBB Bv,Ev,Iz }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_81_pp_00_modrmreg_03_l_00_nd_01_nf = @@ -15135,7 +15302,7 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_81_pp_00_modrmreg_03_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_81_pp_00_modrmreg_03_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2286] // SBB Ev,Iz + (const void *)&gInstructions[ 2292] // SBB Ev,Iz }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_81_pp_00_modrmreg_03_l_00_nd_00_nf = @@ -15220,13 +15387,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_81_pp_00_modrmreg_02_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_81_pp_00_modrmreg_01_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1620] // OR Bv,Ev,Iz + (const void *)&gInstructions[ 1622] // OR Bv,Ev,Iz }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_81_pp_00_modrmreg_01_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1609] // OR Bv,Ev,Iz + (const void *)&gInstructions[ 1611] // OR Bv,Ev,Iz }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_81_pp_00_modrmreg_01_l_00_nd_01_nf = @@ -15241,13 +15408,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_81_pp_00_modrmreg_01_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_81_pp_00_modrmreg_01_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1598] // OR Ev,Iz + (const void *)&gInstructions[ 1600] // OR Ev,Iz }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_81_pp_00_modrmreg_01_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1587] // OR Ev,Iz + (const void *)&gInstructions[ 1589] // OR Ev,Iz }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_81_pp_00_modrmreg_01_l_00_nd_00_nf = @@ -15509,13 +15676,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_80_pp_00_modrmreg_07_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_80_pp_00_modrmreg_06_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4124] // XOR Bb,Eb,Ib + (const void *)&gInstructions[ 4173] // XOR Bb,Eb,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_80_pp_00_modrmreg_06_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4113] // XOR Bb,Eb,Ib + (const void *)&gInstructions[ 4162] // XOR Bb,Eb,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_80_pp_00_modrmreg_06_l_00_nd_01_nf = @@ -15530,13 +15697,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_80_pp_00_modrmreg_06_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_80_pp_00_modrmreg_06_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4102] // XOR Eb,Ib + (const void *)&gInstructions[ 4151] // XOR Eb,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_80_pp_00_modrmreg_06_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4091] // XOR Eb,Ib + (const void *)&gInstructions[ 4140] // XOR Eb,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_80_pp_00_modrmreg_06_l_00_nd_00_nf = @@ -15571,13 +15738,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_80_pp_00_modrmreg_06_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_80_pp_00_modrmreg_05_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2562] // SUB Bb,Eb,Ib + (const void *)&gInstructions[ 2568] // SUB Bb,Eb,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_80_pp_00_modrmreg_05_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2551] // SUB Bb,Eb,Ib + (const void *)&gInstructions[ 2557] // SUB Bb,Eb,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_80_pp_00_modrmreg_05_l_00_nd_01_nf = @@ -15592,13 +15759,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_80_pp_00_modrmreg_05_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_80_pp_00_modrmreg_05_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2540] // SUB Eb,Ib + (const void *)&gInstructions[ 2546] // SUB Eb,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_80_pp_00_modrmreg_05_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2529] // SUB Eb,Ib + (const void *)&gInstructions[ 2535] // SUB Eb,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_80_pp_00_modrmreg_05_l_00_nd_00_nf = @@ -15695,7 +15862,7 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_80_pp_00_modrmreg_04_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_80_pp_00_modrmreg_03_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2296] // SBB Bb,Eb,Ib + (const void *)&gInstructions[ 2302] // SBB Bb,Eb,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_80_pp_00_modrmreg_03_l_00_nd_01_nf = @@ -15710,7 +15877,7 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_80_pp_00_modrmreg_03_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_80_pp_00_modrmreg_03_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2285] // SBB Eb,Ib + (const void *)&gInstructions[ 2291] // SBB Eb,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_80_pp_00_modrmreg_03_l_00_nd_00_nf = @@ -15795,13 +15962,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_80_pp_00_modrmreg_02_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_80_pp_00_modrmreg_01_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1619] // OR Bb,Eb,Ib + (const void *)&gInstructions[ 1621] // OR Bb,Eb,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_80_pp_00_modrmreg_01_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1608] // OR Bb,Eb,Ib + (const void *)&gInstructions[ 1610] // OR Bb,Eb,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_80_pp_00_modrmreg_01_l_00_nd_01_nf = @@ -15816,13 +15983,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_80_pp_00_modrmreg_01_l_00_nd_01_nf const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_80_pp_00_modrmreg_01_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1597] // OR Eb,Ib + (const void *)&gInstructions[ 1599] // OR Eb,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_80_pp_00_modrmreg_01_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1586] // OR Eb,Ib + (const void *)&gInstructions[ 1588] // OR Eb,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_80_pp_00_modrmreg_01_l_00_nd_00_nf = @@ -16315,7 +16482,7 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_66_pp_01_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_66_pp_00_modrmmod_00_l_00_w_01_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4062] // WRSSQ My,Gy + (const void *)&gInstructions[ 4111] // WRSSQ My,Gy }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_66_pp_00_modrmmod_00_l_00_w_01_nd_00_nf = @@ -16339,7 +16506,7 @@ const ND_TABLE_EX_ND gEvexMap_mmmmm_04_opcode_66_pp_00_modrmmod_00_l_00_w_01_nd const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_66_pp_00_modrmmod_00_l_00_w_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4060] // WRSSD My,Gy + (const void *)&gInstructions[ 4109] // WRSSD My,Gy }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_66_pp_00_modrmmod_00_l_00_w_00_nd_00_nf = @@ -16403,7 +16570,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_04_opcode_66_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_65_pp_01_modrmmod_00_l_00_w_01_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4066] // WRUSSQ My,Gy + (const void *)&gInstructions[ 4115] // WRUSSQ My,Gy }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_65_pp_01_modrmmod_00_l_00_w_01_nd_00_nf = @@ -16427,7 +16594,7 @@ const ND_TABLE_EX_ND gEvexMap_mmmmm_04_opcode_65_pp_01_modrmmod_00_l_00_w_01_nd const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_65_pp_01_modrmmod_00_l_00_w_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4064] // WRUSSD My,Gy + (const void *)&gInstructions[ 4113] // WRUSSD My,Gy }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_65_pp_01_modrmmod_00_l_00_w_00_nd_00_nf = @@ -16653,7 +16820,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_04_opcode_60_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_4f_pp_03_l_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2338] // SETNLE Eb + (const void *)&gInstructions[ 2344] // SETNLE Eb }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_4f_pp_03_l_00_nf = @@ -16844,7 +17011,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_04_opcode_4f_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_4e_pp_03_l_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2330] // SETLE Eb + (const void *)&gInstructions[ 2336] // SETLE Eb }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_4e_pp_03_l_00_nf = @@ -17035,7 +17202,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_04_opcode_4e_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_4d_pp_03_l_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2336] // SETNL Eb + (const void *)&gInstructions[ 2342] // SETNL Eb }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_4d_pp_03_l_00_nf = @@ -17226,7 +17393,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_04_opcode_4d_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_4c_pp_03_l_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2328] // SETL Eb + (const void *)&gInstructions[ 2334] // SETL Eb }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_4c_pp_03_l_00_nf = @@ -17417,7 +17584,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_04_opcode_4c_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_4b_pp_03_l_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2342] // SETNP Eb + (const void *)&gInstructions[ 2348] // SETNP Eb }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_4b_pp_03_l_00_nf = @@ -17608,7 +17775,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_04_opcode_4b_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_4a_pp_03_l_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2350] // SETP Eb + (const void *)&gInstructions[ 2356] // SETP Eb }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_4a_pp_03_l_00_nf = @@ -17799,7 +17966,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_04_opcode_4a_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_49_pp_03_l_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2344] // SETNS Eb + (const void *)&gInstructions[ 2350] // SETNS Eb }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_49_pp_03_l_00_nf = @@ -17990,7 +18157,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_04_opcode_49_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_48_pp_03_l_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2352] // SETS Eb + (const void *)&gInstructions[ 2358] // SETS Eb }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_48_pp_03_l_00_nf = @@ -18181,7 +18348,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_04_opcode_48_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_47_pp_03_l_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2332] // SETNBE Eb + (const void *)&gInstructions[ 2338] // SETNBE Eb }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_47_pp_03_l_00_nf = @@ -18372,7 +18539,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_04_opcode_47_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_46_pp_03_l_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2324] // SETBE Eb + (const void *)&gInstructions[ 2330] // SETBE Eb }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_46_pp_03_l_00_nf = @@ -18563,7 +18730,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_04_opcode_46_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_45_pp_03_l_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2346] // SETNZ Eb + (const void *)&gInstructions[ 2352] // SETNZ Eb }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_45_pp_03_l_00_nf = @@ -18754,7 +18921,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_04_opcode_45_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_44_pp_03_l_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2355] // SETZ Eb + (const void *)&gInstructions[ 2361] // SETZ Eb }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_44_pp_03_l_00_nf = @@ -18945,7 +19112,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_04_opcode_44_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_43_pp_03_l_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2334] // SETNC Eb + (const void *)&gInstructions[ 2340] // SETNC Eb }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_43_pp_03_l_00_nf = @@ -19136,7 +19303,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_04_opcode_43_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_42_pp_03_l_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2326] // SETC Eb + (const void *)&gInstructions[ 2332] // SETC Eb }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_42_pp_03_l_00_nf = @@ -19327,7 +19494,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_04_opcode_42_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_41_pp_03_l_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2340] // SETNO Eb + (const void *)&gInstructions[ 2346] // SETNO Eb }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_41_pp_03_l_00_nf = @@ -19518,7 +19685,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_04_opcode_41_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_40_pp_03_l_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2348] // SETO Eb + (const void *)&gInstructions[ 2354] // SETO Eb }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_40_pp_03_l_00_nf = @@ -20587,13 +20754,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_04_opcode_38_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_33_pp_01_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4123] // XOR Bv,Gv,Ev + (const void *)&gInstructions[ 4172] // XOR Bv,Gv,Ev }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_33_pp_01_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4112] // XOR Bv,Gv,Ev + (const void *)&gInstructions[ 4161] // XOR Bv,Gv,Ev }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_33_pp_01_l_00_nd_01_nf = @@ -20608,13 +20775,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_33_pp_01_l_00_nd_01_nf = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_33_pp_01_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4101] // XOR Gv,Ev + (const void *)&gInstructions[ 4150] // XOR Gv,Ev }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_33_pp_01_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4090] // XOR Gv,Ev + (const void *)&gInstructions[ 4139] // XOR Gv,Ev }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_33_pp_01_l_00_nd_00_nf = @@ -20649,13 +20816,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_33_pp_01_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_33_pp_00_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4122] // XOR Bv,Gv,Ev + (const void *)&gInstructions[ 4171] // XOR Bv,Gv,Ev }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_33_pp_00_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4111] // XOR Bv,Gv,Ev + (const void *)&gInstructions[ 4160] // XOR Bv,Gv,Ev }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_33_pp_00_l_00_nd_01_nf = @@ -20670,13 +20837,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_33_pp_00_l_00_nd_01_nf = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_33_pp_00_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4100] // XOR Gv,Ev + (const void *)&gInstructions[ 4149] // XOR Gv,Ev }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_33_pp_00_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4089] // XOR Gv,Ev + (const void *)&gInstructions[ 4138] // XOR Gv,Ev }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_33_pp_00_l_00_nd_00_nf = @@ -20722,13 +20889,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_04_opcode_33_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_32_pp_00_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4121] // XOR Bb,Gb,Eb + (const void *)&gInstructions[ 4170] // XOR Bb,Gb,Eb }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_32_pp_00_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4110] // XOR Bb,Gb,Eb + (const void *)&gInstructions[ 4159] // XOR Bb,Gb,Eb }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_32_pp_00_l_00_nd_01_nf = @@ -20743,13 +20910,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_32_pp_00_l_00_nd_01_nf = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_32_pp_00_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4099] // XOR Gb,Eb + (const void *)&gInstructions[ 4148] // XOR Gb,Eb }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_32_pp_00_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4088] // XOR Gb,Eb + (const void *)&gInstructions[ 4137] // XOR Gb,Eb }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_32_pp_00_l_00_nd_00_nf = @@ -20795,13 +20962,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_04_opcode_32_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_31_pp_01_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4120] // XOR Bv,Ev,Gv + (const void *)&gInstructions[ 4169] // XOR Bv,Ev,Gv }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_31_pp_01_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4109] // XOR Bv,Ev,Gv + (const void *)&gInstructions[ 4158] // XOR Bv,Ev,Gv }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_31_pp_01_l_00_nd_01_nf = @@ -20816,13 +20983,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_31_pp_01_l_00_nd_01_nf = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_31_pp_01_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4098] // XOR Ev,Gv + (const void *)&gInstructions[ 4147] // XOR Ev,Gv }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_31_pp_01_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4087] // XOR Ev,Gv + (const void *)&gInstructions[ 4136] // XOR Ev,Gv }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_31_pp_01_l_00_nd_00_nf = @@ -20857,13 +21024,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_31_pp_01_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_31_pp_00_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4119] // XOR Bv,Ev,Gv + (const void *)&gInstructions[ 4168] // XOR Bv,Ev,Gv }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_31_pp_00_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4108] // XOR Bv,Ev,Gv + (const void *)&gInstructions[ 4157] // XOR Bv,Ev,Gv }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_31_pp_00_l_00_nd_01_nf = @@ -20878,13 +21045,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_31_pp_00_l_00_nd_01_nf = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_31_pp_00_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4097] // XOR Ev,Gv + (const void *)&gInstructions[ 4146] // XOR Ev,Gv }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_31_pp_00_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4086] // XOR Ev,Gv + (const void *)&gInstructions[ 4135] // XOR Ev,Gv }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_31_pp_00_l_00_nd_00_nf = @@ -20930,13 +21097,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_04_opcode_31_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_30_pp_00_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4118] // XOR Bb,Eb,Gb + (const void *)&gInstructions[ 4167] // XOR Bb,Eb,Gb }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_30_pp_00_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4107] // XOR Bb,Eb,Gb + (const void *)&gInstructions[ 4156] // XOR Bb,Eb,Gb }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_30_pp_00_l_00_nd_01_nf = @@ -20951,13 +21118,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_30_pp_00_l_00_nd_01_nf = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_30_pp_00_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4096] // XOR Eb,Gb + (const void *)&gInstructions[ 4145] // XOR Eb,Gb }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_30_pp_00_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4085] // XOR Eb,Gb + (const void *)&gInstructions[ 4134] // XOR Eb,Gb }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_30_pp_00_l_00_nd_00_nf = @@ -21003,13 +21170,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_04_opcode_30_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_2c_pp_01_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2484] // SHRD Bv,Ev,Gv,Ib + (const void *)&gInstructions[ 2490] // SHRD Bv,Ev,Gv,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_2c_pp_01_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2480] // SHRD Bv,Ev,Gv,Ib + (const void *)&gInstructions[ 2486] // SHRD Bv,Ev,Gv,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_2c_pp_01_l_00_nd_01_nf = @@ -21024,13 +21191,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_2c_pp_01_l_00_nd_01_nf = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_2c_pp_01_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2476] // SHRD Ev,Gv,Ib + (const void *)&gInstructions[ 2482] // SHRD Ev,Gv,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_2c_pp_01_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2472] // SHRD Ev,Gv,Ib + (const void *)&gInstructions[ 2478] // SHRD Ev,Gv,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_2c_pp_01_l_00_nd_00_nf = @@ -21065,13 +21232,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_2c_pp_01_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_2c_pp_00_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2482] // SHRD Bv,Ev,Gv,Ib + (const void *)&gInstructions[ 2488] // SHRD Bv,Ev,Gv,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_2c_pp_00_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2478] // SHRD Bv,Ev,Gv,Ib + (const void *)&gInstructions[ 2484] // SHRD Bv,Ev,Gv,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_2c_pp_00_l_00_nd_01_nf = @@ -21086,13 +21253,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_2c_pp_00_l_00_nd_01_nf = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_2c_pp_00_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2474] // SHRD Ev,Gv,Ib + (const void *)&gInstructions[ 2480] // SHRD Ev,Gv,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_2c_pp_00_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2470] // SHRD Ev,Gv,Ib + (const void *)&gInstructions[ 2476] // SHRD Ev,Gv,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_2c_pp_00_l_00_nd_00_nf = @@ -21138,13 +21305,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_04_opcode_2c_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_2b_pp_01_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2561] // SUB Bv,Gv,Ev + (const void *)&gInstructions[ 2567] // SUB Bv,Gv,Ev }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_2b_pp_01_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2550] // SUB Bv,Gv,Ev + (const void *)&gInstructions[ 2556] // SUB Bv,Gv,Ev }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_2b_pp_01_l_00_nd_01_nf = @@ -21159,13 +21326,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_2b_pp_01_l_00_nd_01_nf = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_2b_pp_01_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2539] // SUB Gv,Ev + (const void *)&gInstructions[ 2545] // SUB Gv,Ev }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_2b_pp_01_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2528] // SUB Gv,Ev + (const void *)&gInstructions[ 2534] // SUB Gv,Ev }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_2b_pp_01_l_00_nd_00_nf = @@ -21200,13 +21367,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_2b_pp_01_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_2b_pp_00_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2560] // SUB Bv,Gv,Ev + (const void *)&gInstructions[ 2566] // SUB Bv,Gv,Ev }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_2b_pp_00_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2549] // SUB Bv,Gv,Ev + (const void *)&gInstructions[ 2555] // SUB Bv,Gv,Ev }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_2b_pp_00_l_00_nd_01_nf = @@ -21221,13 +21388,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_2b_pp_00_l_00_nd_01_nf = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_2b_pp_00_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2538] // SUB Gv,Ev + (const void *)&gInstructions[ 2544] // SUB Gv,Ev }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_2b_pp_00_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2527] // SUB Gv,Ev + (const void *)&gInstructions[ 2533] // SUB Gv,Ev }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_2b_pp_00_l_00_nd_00_nf = @@ -21273,13 +21440,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_04_opcode_2b_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_2a_pp_00_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2559] // SUB Bb,Gb,Eb + (const void *)&gInstructions[ 2565] // SUB Bb,Gb,Eb }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_2a_pp_00_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2548] // SUB Bb,Gb,Eb + (const void *)&gInstructions[ 2554] // SUB Bb,Gb,Eb }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_2a_pp_00_l_00_nd_01_nf = @@ -21294,13 +21461,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_2a_pp_00_l_00_nd_01_nf = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_2a_pp_00_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2537] // SUB Gb,Eb + (const void *)&gInstructions[ 2543] // SUB Gb,Eb }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_2a_pp_00_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2526] // SUB Gb,Eb + (const void *)&gInstructions[ 2532] // SUB Gb,Eb }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_2a_pp_00_l_00_nd_00_nf = @@ -21346,13 +21513,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_04_opcode_2a_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_29_pp_01_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2558] // SUB Bv,Ev,Gv + (const void *)&gInstructions[ 2564] // SUB Bv,Ev,Gv }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_29_pp_01_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2547] // SUB Bv,Ev,Gv + (const void *)&gInstructions[ 2553] // SUB Bv,Ev,Gv }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_29_pp_01_l_00_nd_01_nf = @@ -21367,13 +21534,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_29_pp_01_l_00_nd_01_nf = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_29_pp_01_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2536] // SUB Ev,Gv + (const void *)&gInstructions[ 2542] // SUB Ev,Gv }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_29_pp_01_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2525] // SUB Ev,Gv + (const void *)&gInstructions[ 2531] // SUB Ev,Gv }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_29_pp_01_l_00_nd_00_nf = @@ -21408,13 +21575,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_29_pp_01_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_29_pp_00_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2557] // SUB Bv,Ev,Gv + (const void *)&gInstructions[ 2563] // SUB Bv,Ev,Gv }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_29_pp_00_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2546] // SUB Bv,Ev,Gv + (const void *)&gInstructions[ 2552] // SUB Bv,Ev,Gv }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_29_pp_00_l_00_nd_01_nf = @@ -21429,13 +21596,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_29_pp_00_l_00_nd_01_nf = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_29_pp_00_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2535] // SUB Ev,Gv + (const void *)&gInstructions[ 2541] // SUB Ev,Gv }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_29_pp_00_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2524] // SUB Ev,Gv + (const void *)&gInstructions[ 2530] // SUB Ev,Gv }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_29_pp_00_l_00_nd_00_nf = @@ -21481,13 +21648,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_04_opcode_29_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_28_pp_00_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2556] // SUB Bb,Eb,Gb + (const void *)&gInstructions[ 2562] // SUB Bb,Eb,Gb }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_28_pp_00_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2545] // SUB Bb,Eb,Gb + (const void *)&gInstructions[ 2551] // SUB Bb,Eb,Gb }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_28_pp_00_l_00_nd_01_nf = @@ -21502,13 +21669,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_28_pp_00_l_00_nd_01_nf = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_28_pp_00_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2534] // SUB Eb,Gb + (const void *)&gInstructions[ 2540] // SUB Eb,Gb }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_28_pp_00_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2523] // SUB Eb,Gb + (const void *)&gInstructions[ 2529] // SUB Eb,Gb }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_28_pp_00_l_00_nd_00_nf = @@ -21554,13 +21721,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_04_opcode_28_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_24_pp_01_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2422] // SHLD Bv,Ev,Gv,Ib + (const void *)&gInstructions[ 2428] // SHLD Bv,Ev,Gv,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_24_pp_01_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2418] // SHLD Bv,Ev,Gv,Ib + (const void *)&gInstructions[ 2424] // SHLD Bv,Ev,Gv,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_24_pp_01_l_00_nd_01_nf = @@ -21575,13 +21742,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_24_pp_01_l_00_nd_01_nf = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_24_pp_01_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2414] // SHLD Ev,Gv,Ib + (const void *)&gInstructions[ 2420] // SHLD Ev,Gv,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_24_pp_01_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2410] // SHLD Ev,Gv,Ib + (const void *)&gInstructions[ 2416] // SHLD Ev,Gv,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_24_pp_01_l_00_nd_00_nf = @@ -21616,13 +21783,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_24_pp_01_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_24_pp_00_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2420] // SHLD Bv,Ev,Gv,Ib + (const void *)&gInstructions[ 2426] // SHLD Bv,Ev,Gv,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_24_pp_00_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2416] // SHLD Bv,Ev,Gv,Ib + (const void *)&gInstructions[ 2422] // SHLD Bv,Ev,Gv,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_24_pp_00_l_00_nd_01_nf = @@ -21637,13 +21804,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_24_pp_00_l_00_nd_01_nf = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_24_pp_00_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2412] // SHLD Ev,Gv,Ib + (const void *)&gInstructions[ 2418] // SHLD Ev,Gv,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_24_pp_00_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2408] // SHLD Ev,Gv,Ib + (const void *)&gInstructions[ 2414] // SHLD Ev,Gv,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_24_pp_00_l_00_nd_00_nf = @@ -22105,7 +22272,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_04_opcode_20_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_1b_pp_01_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2295] // SBB Bv,Gv,Ev + (const void *)&gInstructions[ 2301] // SBB Bv,Gv,Ev }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_1b_pp_01_l_00_nd_01_nf = @@ -22120,7 +22287,7 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_1b_pp_01_l_00_nd_01_nf = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_1b_pp_01_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2284] // SBB Gv,Ev + (const void *)&gInstructions[ 2290] // SBB Gv,Ev }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_1b_pp_01_l_00_nd_00_nf = @@ -22155,7 +22322,7 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_1b_pp_01_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_1b_pp_00_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2294] // SBB Bv,Gv,Ev + (const void *)&gInstructions[ 2300] // SBB Bv,Gv,Ev }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_1b_pp_00_l_00_nd_01_nf = @@ -22170,7 +22337,7 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_1b_pp_00_l_00_nd_01_nf = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_1b_pp_00_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2283] // SBB Gv,Ev + (const void *)&gInstructions[ 2289] // SBB Gv,Ev }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_1b_pp_00_l_00_nd_00_nf = @@ -22216,7 +22383,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_04_opcode_1b_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_1a_pp_00_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2293] // SBB Bb,Gb,Eb + (const void *)&gInstructions[ 2299] // SBB Bb,Gb,Eb }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_1a_pp_00_l_00_nd_01_nf = @@ -22231,7 +22398,7 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_1a_pp_00_l_00_nd_01_nf = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_1a_pp_00_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2282] // SBB Gb,Eb + (const void *)&gInstructions[ 2288] // SBB Gb,Eb }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_1a_pp_00_l_00_nd_00_nf = @@ -22277,7 +22444,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_04_opcode_1a_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_19_pp_01_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2292] // SBB Bv,Ev,Gv + (const void *)&gInstructions[ 2298] // SBB Bv,Ev,Gv }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_19_pp_01_l_00_nd_01_nf = @@ -22292,7 +22459,7 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_19_pp_01_l_00_nd_01_nf = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_19_pp_01_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2281] // SBB Ev,Gv + (const void *)&gInstructions[ 2287] // SBB Ev,Gv }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_19_pp_01_l_00_nd_00_nf = @@ -22327,7 +22494,7 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_19_pp_01_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_19_pp_00_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2291] // SBB Bv,Ev,Gv + (const void *)&gInstructions[ 2297] // SBB Bv,Ev,Gv }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_19_pp_00_l_00_nd_01_nf = @@ -22342,7 +22509,7 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_19_pp_00_l_00_nd_01_nf = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_19_pp_00_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2280] // SBB Ev,Gv + (const void *)&gInstructions[ 2286] // SBB Ev,Gv }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_19_pp_00_l_00_nd_00_nf = @@ -22388,7 +22555,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_04_opcode_19_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_18_pp_00_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2290] // SBB Bb,Eb,Gb + (const void *)&gInstructions[ 2296] // SBB Bb,Eb,Gb }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_18_pp_00_l_00_nd_01_nf = @@ -22403,7 +22570,7 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_18_pp_00_l_00_nd_01_nf = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_18_pp_00_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2279] // SBB Eb,Gb + (const void *)&gInstructions[ 2285] // SBB Eb,Gb }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_18_pp_00_l_00_nd_00_nf = @@ -22793,13 +22960,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_04_opcode_10_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_0b_pp_01_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1618] // OR Bv,Gv,Ev + (const void *)&gInstructions[ 1620] // OR Bv,Gv,Ev }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_0b_pp_01_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1607] // OR Bv,Gv,Ev + (const void *)&gInstructions[ 1609] // OR Bv,Gv,Ev }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_0b_pp_01_l_00_nd_01_nf = @@ -22814,13 +22981,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_0b_pp_01_l_00_nd_01_nf = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_0b_pp_01_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1596] // OR Gv,Ev + (const void *)&gInstructions[ 1598] // OR Gv,Ev }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_0b_pp_01_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1585] // OR Gv,Ev + (const void *)&gInstructions[ 1587] // OR Gv,Ev }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_0b_pp_01_l_00_nd_00_nf = @@ -22855,13 +23022,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_0b_pp_01_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_0b_pp_00_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1617] // OR Bv,Gv,Ev + (const void *)&gInstructions[ 1619] // OR Bv,Gv,Ev }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_0b_pp_00_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1606] // OR Bv,Gv,Ev + (const void *)&gInstructions[ 1608] // OR Bv,Gv,Ev }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_0b_pp_00_l_00_nd_01_nf = @@ -22876,13 +23043,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_0b_pp_00_l_00_nd_01_nf = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_0b_pp_00_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1595] // OR Gv,Ev + (const void *)&gInstructions[ 1597] // OR Gv,Ev }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_0b_pp_00_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1584] // OR Gv,Ev + (const void *)&gInstructions[ 1586] // OR Gv,Ev }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_0b_pp_00_l_00_nd_00_nf = @@ -22928,13 +23095,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_04_opcode_0b_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_0a_pp_00_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1616] // OR Bb,Gb,Eb + (const void *)&gInstructions[ 1618] // OR Bb,Gb,Eb }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_0a_pp_00_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1605] // OR Bb,Gb,Eb + (const void *)&gInstructions[ 1607] // OR Bb,Gb,Eb }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_0a_pp_00_l_00_nd_01_nf = @@ -22949,13 +23116,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_0a_pp_00_l_00_nd_01_nf = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_0a_pp_00_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1594] // OR Gb,Eb + (const void *)&gInstructions[ 1596] // OR Gb,Eb }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_0a_pp_00_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1583] // OR Gb,Eb + (const void *)&gInstructions[ 1585] // OR Gb,Eb }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_0a_pp_00_l_00_nd_00_nf = @@ -23001,13 +23168,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_04_opcode_0a_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_09_pp_01_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1615] // OR Bv,Ev,Gv + (const void *)&gInstructions[ 1617] // OR Bv,Ev,Gv }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_09_pp_01_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1604] // OR Bv,Ev,Gv + (const void *)&gInstructions[ 1606] // OR Bv,Ev,Gv }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_09_pp_01_l_00_nd_01_nf = @@ -23022,13 +23189,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_09_pp_01_l_00_nd_01_nf = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_09_pp_01_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1593] // OR Ev,Gv + (const void *)&gInstructions[ 1595] // OR Ev,Gv }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_09_pp_01_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1582] // OR Ev,Gv + (const void *)&gInstructions[ 1584] // OR Ev,Gv }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_09_pp_01_l_00_nd_00_nf = @@ -23063,13 +23230,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_04_opcode_09_pp_01_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_09_pp_00_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1614] // OR Bv,Ev,Gv + (const void *)&gInstructions[ 1616] // OR Bv,Ev,Gv }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_09_pp_00_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1603] // OR Bv,Ev,Gv + (const void *)&gInstructions[ 1605] // OR Bv,Ev,Gv }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_09_pp_00_l_00_nd_01_nf = @@ -23084,13 +23251,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_09_pp_00_l_00_nd_01_nf = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_09_pp_00_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1592] // OR Ev,Gv + (const void *)&gInstructions[ 1594] // OR Ev,Gv }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_09_pp_00_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1581] // OR Ev,Gv + (const void *)&gInstructions[ 1583] // OR Ev,Gv }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_09_pp_00_l_00_nd_00_nf = @@ -23136,13 +23303,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_04_opcode_09_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_08_pp_00_l_00_nd_01_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1613] // OR Bb,Eb,Gb + (const void *)&gInstructions[ 1615] // OR Bb,Eb,Gb }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_08_pp_00_l_00_nd_01_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1602] // OR Bb,Eb,Gb + (const void *)&gInstructions[ 1604] // OR Bb,Eb,Gb }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_08_pp_00_l_00_nd_01_nf = @@ -23157,13 +23324,13 @@ const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_08_pp_00_l_00_nd_01_nf = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_08_pp_00_l_00_nd_00_nf_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1591] // OR Eb,Gb + (const void *)&gInstructions[ 1593] // OR Eb,Gb }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_04_opcode_08_pp_00_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1580] // OR Eb,Gb + (const void *)&gInstructions[ 1582] // OR Eb,Gb }; const ND_TABLE_EX_NF gEvexMap_mmmmm_04_opcode_08_pp_00_l_00_nd_00_nf = @@ -23888,7 +24055,7 @@ const ND_TABLE_OPCODE gEvexMap_mmmmm_04_opcode = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_f0_pp_03_l_00_nd_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2180] // RORX Gy,Ey,Ib + (const void *)&gInstructions[ 2186] // RORX Gy,Ey,Ib }; const ND_TABLE_EX_NF gEvexMap_mmmmm_03_opcode_f0_pp_03_l_00_nd_00_nf = @@ -23934,7 +24101,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_f0_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_cf_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3159] // VGF2P8AFFINEINVQB Vfv{K}{z},aKq,Hfv,Wfv|B64,Ib + (const void *)&gInstructions[ 3200] // VGF2P8AFFINEINVQB Vfv{K}{z},aKq,Hfv,Wfv|B64,Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_cf_pp_01_w = @@ -23960,7 +24127,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_cf_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_ce_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3161] // VGF2P8AFFINEQB Vfv{K}{z},aKq,Hfv,Wfv|B64,Ib + (const void *)&gInstructions[ 3202] // VGF2P8AFFINEQB Vfv{K}{z},aKq,Hfv,Wfv|B64,Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_ce_pp_01_w = @@ -23986,7 +24153,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_ce_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_c2_pp_03_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2702] // VCMPPBF16 rK{K},aKq,Hfv,Wfv|B16,Ib + (const void *)&gInstructions[ 2743] // VCMPPBF16 rK{K},aKq,Hfv,Wfv|B16,Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_c2_pp_03_w = @@ -24001,7 +24168,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_c2_pp_03_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_c2_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2710] // VCMPSH rK{K},aKq,Hfv,Wsh{sae},Ib + (const void *)&gInstructions[ 2751] // VCMPSH rK{K},aKq,Hfv,Wsh{sae},Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_c2_pp_02_w = @@ -24016,7 +24183,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_c2_pp_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_c2_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2705] // VCMPPH rK{K},aKq,Hfv,Wfv|B16{sae},Ib + (const void *)&gInstructions[ 2746] // VCMPPH rK{K},aKq,Hfv,Wfv|B16{sae},Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_c2_pp_00_w = @@ -24039,16 +24206,97 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_c2_pp = } }; +const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_77_pp_03_modrmmod_01_l_02_w_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 2614] // TCVTROWPS2PHL Voq,mTt,Ib +}; + +const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_77_pp_03_modrmmod_01_l_02_w = +{ + ND_ILUT_EX_W, + { + /* 00 */ (const void *)&gEvexMap_mmmmm_03_opcode_77_pp_03_modrmmod_01_l_02_w_00_leaf, + /* 01 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_L gEvexMap_mmmmm_03_opcode_77_pp_03_modrmmod_01_l = +{ + ND_ILUT_EX_L, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)&gEvexMap_mmmmm_03_opcode_77_pp_03_modrmmod_01_l_02_w, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_MODRM_MOD gEvexMap_mmmmm_03_opcode_77_pp_03_modrmmod = +{ + ND_ILUT_MODRM_MOD, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gEvexMap_mmmmm_03_opcode_77_pp_03_modrmmod_01_l, + } +}; + +const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_77_pp_02_modrmmod_01_l_02_w_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 2610] // TCVTROWPS2PBF16L Voq,mTt,Ib +}; + +const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_77_pp_02_modrmmod_01_l_02_w = +{ + ND_ILUT_EX_W, + { + /* 00 */ (const void *)&gEvexMap_mmmmm_03_opcode_77_pp_02_modrmmod_01_l_02_w_00_leaf, + /* 01 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_L gEvexMap_mmmmm_03_opcode_77_pp_02_modrmmod_01_l = +{ + ND_ILUT_EX_L, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)&gEvexMap_mmmmm_03_opcode_77_pp_02_modrmmod_01_l_02_w, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_MODRM_MOD gEvexMap_mmmmm_03_opcode_77_pp_02_modrmmod = +{ + ND_ILUT_MODRM_MOD, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gEvexMap_mmmmm_03_opcode_77_pp_02_modrmmod_01_l, + } +}; + +const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_77_pp = +{ + ND_ILUT_EX_PP, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)&gEvexMap_mmmmm_03_opcode_77_pp_02_modrmmod, + /* 03 */ (const void *)&gEvexMap_mmmmm_03_opcode_77_pp_03_modrmmod, + } +}; + const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_73_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3806] // VPSHRDQ Vfv{K}{z},aKq,Hfv,Wfv|B64,Ib + (const void *)&gInstructions[ 3851] // VPSHRDQ Vfv{K}{z},aKq,Hfv,Wfv|B64,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_73_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3805] // VPSHRDD Vfv{K}{z},aKq,Hfv,Wfv|B32,Ib + (const void *)&gInstructions[ 3850] // VPSHRDD Vfv{K}{z},aKq,Hfv,Wfv|B32,Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_73_pp_01_w = @@ -24074,7 +24322,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_73_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_72_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3810] // VPSHRDW Vfv{K}{z},aKq,Hfv,Wfv,Ib + (const void *)&gInstructions[ 3855] // VPSHRDW Vfv{K}{z},aKq,Hfv,Wfv,Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_72_pp_01_w = @@ -24100,13 +24348,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_72_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_71_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3797] // VPSHLDQ Vfv{K}{z},aKq,Hfv,Wfv|B64,Ib + (const void *)&gInstructions[ 3842] // VPSHLDQ Vfv{K}{z},aKq,Hfv,Wfv|B64,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_71_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3796] // VPSHLDD Vfv{K}{z},aKq,Hfv,Wfv|B32,Ib + (const void *)&gInstructions[ 3841] // VPSHLDD Vfv{K}{z},aKq,Hfv,Wfv|B32,Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_71_pp_01_w = @@ -24132,7 +24380,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_71_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_70_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3801] // VPSHLDW Vfv{K}{z},aKq,Hfv,Wfv,Ib + (const void *)&gInstructions[ 3846] // VPSHLDW Vfv{K}{z},aKq,Hfv,Wfv,Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_70_pp_01_w = @@ -24158,13 +24406,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_70_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_67_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3122] // VFPCLASSSD rKq{K},aKq,Wsd,Ib + (const void *)&gInstructions[ 3163] // VFPCLASSSD rKq{K},aKq,Wsd,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_67_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3124] // VFPCLASSSS rKq{K},aKq,Wss,Ib + (const void *)&gInstructions[ 3165] // VFPCLASSSS rKq{K},aKq,Wss,Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_67_pp_01_w = @@ -24179,7 +24427,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_67_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_67_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3123] // VFPCLASSSH rKq{K},aKq,Wsh,Ib + (const void *)&gInstructions[ 3164] // VFPCLASSSH rKq{K},aKq,Wsh,Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_67_pp_00_w = @@ -24205,7 +24453,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_67_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_66_pp_03_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3118] // VFPCLASSPBF16 rKq{K},aKq,Wfv|B16,Ib + (const void *)&gInstructions[ 3159] // VFPCLASSPBF16 rKq{K},aKq,Wfv|B16,Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_66_pp_03_w = @@ -24220,13 +24468,13 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_66_pp_03_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_66_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3119] // VFPCLASSPD rKq{K},aKq,Wfv|B64,Ib + (const void *)&gInstructions[ 3160] // VFPCLASSPD rKq{K},aKq,Wfv|B64,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_66_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3121] // VFPCLASSPS rKq{K},aKq,Wfv|B32,Ib + (const void *)&gInstructions[ 3162] // VFPCLASSPS rKq{K},aKq,Wfv|B32,Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_66_pp_01_w = @@ -24241,7 +24489,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_66_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_66_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3120] // VFPCLASSPH rKq{K},aKq,Wfv|B16,Ib + (const void *)&gInstructions[ 3161] // VFPCLASSPH rKq{K},aKq,Wfv|B16,Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_66_pp_00_w = @@ -24267,13 +24515,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_66_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_57_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3942] // VREDUCESD Vdq{K}{z},aKq,Hdq,Wsd{sae},Ib + (const void *)&gInstructions[ 3987] // VREDUCESD Vdq{K}{z},aKq,Hdq,Wsd{sae},Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_57_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3944] // VREDUCESS Vdq{K}{z},aKq,Hdq,Wss{sae},Ib + (const void *)&gInstructions[ 3989] // VREDUCESS Vdq{K}{z},aKq,Hdq,Wss{sae},Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_57_pp_01_w = @@ -24288,7 +24536,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_57_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_57_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3943] // VREDUCESH Vdq{K}{z},aKq,Hdq,Wsh{sae},Ib + (const void *)&gInstructions[ 3988] // VREDUCESH Vdq{K}{z},aKq,Hdq,Wsh{sae},Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_57_pp_00_w = @@ -24314,7 +24562,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_57_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_56_pp_03_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3938] // VREDUCENEPBF16 Vfv{K}{z},aKq,Wfv|B16,Ib + (const void *)&gInstructions[ 3983] // VREDUCENEPBF16 Vfv{K}{z},aKq,Wfv|B16,Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_56_pp_03_w = @@ -24329,13 +24577,13 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_56_pp_03_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_56_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3939] // VREDUCEPD Vfv{K}{z},aKq,Wfv|B64{sae},Ib + (const void *)&gInstructions[ 3984] // VREDUCEPD Vfv{K}{z},aKq,Wfv|B64{sae},Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_56_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3941] // VREDUCEPS Vfv{K}{z},aKq,Wfv|B32{sae},Ib + (const void *)&gInstructions[ 3986] // VREDUCEPS Vfv{K}{z},aKq,Wfv|B32{sae},Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_56_pp_01_w = @@ -24350,7 +24598,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_56_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_56_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3940] // VREDUCEPH Vfv{K}{z},aKq,Wfv|B16{sae},Ib + (const void *)&gInstructions[ 3985] // VREDUCEPH Vfv{K}{z},aKq,Wfv|B16{sae},Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_56_pp_00_w = @@ -24376,13 +24624,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_56_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_55_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2910] // VFIXUPIMMSD Vdq{K}{z},aKq,Hdq,Wsd{sae},Ib + (const void *)&gInstructions[ 2951] // VFIXUPIMMSD Vdq{K}{z},aKq,Hdq,Wsd{sae},Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_55_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2911] // VFIXUPIMMSS Vdq{K}{z},aKq,Hdq,Wss{sae},Ib + (const void *)&gInstructions[ 2952] // VFIXUPIMMSS Vdq{K}{z},aKq,Hdq,Wss{sae},Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_55_pp_01_w = @@ -24408,13 +24656,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_55_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_54_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2908] // VFIXUPIMMPD Vfv{K}{z},aKq,Hfv,Wfv|B64{sae},Ib + (const void *)&gInstructions[ 2949] // VFIXUPIMMPD Vfv{K}{z},aKq,Hfv,Wfv|B64{sae},Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_54_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2909] // VFIXUPIMMPS Vfv{K}{z},aKq,Hfv,Wfv|B32{sae},Ib + (const void *)&gInstructions[ 2950] // VFIXUPIMMPS Vfv{K}{z},aKq,Hfv,Wfv|B32{sae},Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_54_pp_01_w = @@ -24440,13 +24688,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_54_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_53_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3210] // VMINMAXSD Vdq{K}{z},aKq,Hdq,Wsd{sae},Ib + (const void *)&gInstructions[ 3251] // VMINMAXSD Vdq{K}{z},aKq,Hdq,Wsd{sae},Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_53_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3212] // VMINMAXSS Vdq{K}{z},aKq,Hdq,Wss{sae},Ib + (const void *)&gInstructions[ 3253] // VMINMAXSS Vdq{K}{z},aKq,Hdq,Wss{sae},Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_53_pp_01_w = @@ -24461,7 +24709,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_53_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_53_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3211] // VMINMAXSH Vdq{K}{z},aKq,Hdq,Wsh{sae},Ib + (const void *)&gInstructions[ 3252] // VMINMAXSH Vdq{K}{z},aKq,Hdq,Wsh{sae},Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_53_pp_00_w = @@ -24487,7 +24735,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_53_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_52_pp_03_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3206] // VMINMAXNEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16,Ib + (const void *)&gInstructions[ 3247] // VMINMAXNEPBF16 Vfv{K}{z},aKq,Hfv,Wfv|B16,Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_52_pp_03_w = @@ -24502,13 +24750,13 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_52_pp_03_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_52_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3207] // VMINMAXPD Vfv{K}{z},aKq,Hfv,Wfv|B64{sae},Ib + (const void *)&gInstructions[ 3248] // VMINMAXPD Vfv{K}{z},aKq,Hfv,Wfv|B64{sae},Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_52_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3209] // VMINMAXPS Vfv{K}{z},aKq,Hfv,Wfv|B32{sae},Ib + (const void *)&gInstructions[ 3250] // VMINMAXPS Vfv{K}{z},aKq,Hfv,Wfv|B32{sae},Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_52_pp_01_w = @@ -24523,7 +24771,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_52_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_52_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3208] // VMINMAXPH Vfv{K}{z},aKq,Hfv,Wfv|B16{sae},Ib + (const void *)&gInstructions[ 3249] // VMINMAXPH Vfv{K}{z},aKq,Hfv,Wfv|B16{sae},Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_52_pp_00_w = @@ -24549,13 +24797,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_52_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_51_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3923] // VRANGESD Vdq{K}{z},aKq,Hdq,Wsd{sae},Ib + (const void *)&gInstructions[ 3968] // VRANGESD Vdq{K}{z},aKq,Hdq,Wsd{sae},Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_51_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3924] // VRANGESS Vdq{K}{z},aKq,Hdq,Wss{sae},Ib + (const void *)&gInstructions[ 3969] // VRANGESS Vdq{K}{z},aKq,Hdq,Wss{sae},Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_51_pp_01_w = @@ -24581,13 +24829,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_51_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_50_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3921] // VRANGEPD Vfv{K}{z},aKq,Hfv,Wfv|B64{sae},Ib + (const void *)&gInstructions[ 3966] // VRANGEPD Vfv{K}{z},aKq,Hfv,Wfv|B64{sae},Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_50_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3922] // VRANGEPS Vfv{K}{z},aKq,Hfv,Wfv|B32{sae},Ib + (const void *)&gInstructions[ 3967] // VRANGEPS Vfv{K}{z},aKq,Hfv,Wfv|B32{sae},Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_50_pp_01_w = @@ -24613,7 +24861,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_50_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_44_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3433] // VPCLMULQDQ Vfv,Hfv,Wfv,Ib + (const void *)&gInstructions[ 3478] // VPCLMULQDQ Vfv,Hfv,Wfv,Ib }; const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_44_pp = @@ -24630,13 +24878,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_44_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_43_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3994] // VSHUFI64X2 Vuv{K}{z},aKq,Huv,Wuv|B64,Ib + (const void *)&gInstructions[ 4039] // VSHUFI64X2 Vuv{K}{z},aKq,Huv,Wuv|B64,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_43_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3993] // VSHUFI32X4 Vuv{K}{z},aKq,Huv,Wuv|B32,Ib + (const void *)&gInstructions[ 4038] // VSHUFI32X4 Vuv{K}{z},aKq,Huv,Wuv|B32,Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_43_pp_01_w = @@ -24662,7 +24910,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_43_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_42_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3339] // VMPSADBW Vfv{K}{z},aKq,Hfv,Wfv,Ib + (const void *)&gInstructions[ 3384] // VMPSADBW Vfv{K}{z},aKq,Hfv,Wfv,Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_42_pp_02_w = @@ -24677,7 +24925,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_42_pp_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_42_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2868] // VDBPSADBW Vfv{K}{z},aKq,Hfv,Wfv,Ib + (const void *)&gInstructions[ 2909] // VDBPSADBW Vfv{K}{z},aKq,Hfv,Wfv,Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_42_pp_01_w = @@ -24703,13 +24951,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_42_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_3f_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3464] // VPCMPW rKq{K},aKq,Hfv,Wfv,Ib + (const void *)&gInstructions[ 3509] // VPCMPW rKq{K},aKq,Hfv,Wfv,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_3f_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3437] // VPCMPB rKq{K},aKq,Hfv,Wfv,Ib + (const void *)&gInstructions[ 3482] // VPCMPB rKq{K},aKq,Hfv,Wfv,Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_3f_pp_01_w = @@ -24735,13 +24983,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_3f_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_3e_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3463] // VPCMPUW rKq{K},aKq,Hfv,Wfv,Ib + (const void *)&gInstructions[ 3508] // VPCMPUW rKq{K},aKq,Hfv,Wfv,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_3e_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3460] // VPCMPUB rKq{K},aKq,Hfv,Wfv,Ib + (const void *)&gInstructions[ 3505] // VPCMPUB rKq{K},aKq,Hfv,Wfv,Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_3e_pp_01_w = @@ -24767,13 +25015,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_3e_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_3b_pp_01_l_02_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2899] // VEXTRACTI64X4 Wqq{K}{z},aKq,Voq,Ib + (const void *)&gInstructions[ 2940] // VEXTRACTI64X4 Wqq{K}{z},aKq,Voq,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_3b_pp_01_l_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2897] // VEXTRACTI32X8 Wqq{K}{z},aKq,Voq,Ib + (const void *)&gInstructions[ 2938] // VEXTRACTI32X8 Wqq{K}{z},aKq,Voq,Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_3b_pp_01_l_02_w = @@ -24810,13 +25058,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_3b_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_3a_pp_01_l_02_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3178] // VINSERTI64X4 Voq{K}{z},aKq,Hoq,Wqq,Ib + (const void *)&gInstructions[ 3219] // VINSERTI64X4 Voq{K}{z},aKq,Hoq,Wqq,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_3a_pp_01_l_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3176] // VINSERTI32X8 Voq{K}{z},aKq,Hoq,Wqq,Ib + (const void *)&gInstructions[ 3217] // VINSERTI32X8 Voq{K}{z},aKq,Hoq,Wqq,Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_3a_pp_01_l_02_w = @@ -24853,13 +25101,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_3a_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_39_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2898] // VEXTRACTI64X2 Wdq{K}{z},aKq,Vuv,Ib + (const void *)&gInstructions[ 2939] // VEXTRACTI64X2 Wdq{K}{z},aKq,Vuv,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_39_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2896] // VEXTRACTI32X4 Wdq{K}{z},aKq,Vuv,Ib + (const void *)&gInstructions[ 2937] // VEXTRACTI32X4 Wdq{K}{z},aKq,Vuv,Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_39_pp_01_w = @@ -24885,13 +25133,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_39_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_38_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3177] // VINSERTI64X2 Vuv{K}{z},aKq,Huv,Wdq,Ib + (const void *)&gInstructions[ 3218] // VINSERTI64X2 Vuv{K}{z},aKq,Huv,Wdq,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_38_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3175] // VINSERTI32X4 Vuv{K}{z},aKq,Huv,Wdq,Ib + (const void *)&gInstructions[ 3216] // VINSERTI32X4 Vuv{K}{z},aKq,Huv,Wdq,Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_38_pp_01_w = @@ -24917,13 +25165,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_38_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_27_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3156] // VGETMANTSD Vdq{K}{z},aKq,Hdq,Wsd{sae},Ib + (const void *)&gInstructions[ 3197] // VGETMANTSD Vdq{K}{z},aKq,Hdq,Wsd{sae},Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_27_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3158] // VGETMANTSS Vdq{K}{z},aKq,Hdq,Wss{sae},Ib + (const void *)&gInstructions[ 3199] // VGETMANTSS Vdq{K}{z},aKq,Hdq,Wss{sae},Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_27_pp_01_w = @@ -24938,7 +25186,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_27_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_27_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3157] // VGETMANTSH Vdq{K}{z},aKq,Hdq,Wsh{sae},Ib + (const void *)&gInstructions[ 3198] // VGETMANTSH Vdq{K}{z},aKq,Hdq,Wsh{sae},Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_27_pp_00_w = @@ -24964,7 +25212,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_27_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_26_pp_03_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3152] // VGETMANTPBF16 Vfv{K}{z},aKq,Wfv|B16,Ib + (const void *)&gInstructions[ 3193] // VGETMANTPBF16 Vfv{K}{z},aKq,Wfv|B16,Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_26_pp_03_w = @@ -24979,13 +25227,13 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_26_pp_03_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_26_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3153] // VGETMANTPD Vfv{K}{z},aKq,Wfv|B64{sae},Ib + (const void *)&gInstructions[ 3194] // VGETMANTPD Vfv{K}{z},aKq,Wfv|B64{sae},Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_26_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3155] // VGETMANTPS Vfv{K}{z},aKq,Wfv|B32{sae},Ib + (const void *)&gInstructions[ 3196] // VGETMANTPS Vfv{K}{z},aKq,Wfv|B32{sae},Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_26_pp_01_w = @@ -25000,7 +25248,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_26_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_26_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3154] // VGETMANTPH Vfv{K}{z},aKq,Wfv|B16{sae},Ib + (const void *)&gInstructions[ 3195] // VGETMANTPH Vfv{K}{z},aKq,Wfv|B16{sae},Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_26_pp_00_w = @@ -25026,13 +25274,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_26_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_25_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3892] // VPTERNLOGQ Vfv{K}{z},aKq,Hfv,Wfv|B64,Ib + (const void *)&gInstructions[ 3937] // VPTERNLOGQ Vfv{K}{z},aKq,Hfv,Wfv|B64,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_25_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3891] // VPTERNLOGD Vfv{K}{z},aKq,Hfv,Wfv|B32,Ib + (const void *)&gInstructions[ 3936] // VPTERNLOGD Vfv{K}{z},aKq,Hfv,Wfv|B32,Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_25_pp_01_w = @@ -25058,13 +25306,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_25_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_23_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3992] // VSHUFF64X2 Vuv{K}{z},aKq,Huv,Wuv|B64,Ib + (const void *)&gInstructions[ 4037] // VSHUFF64X2 Vuv{K}{z},aKq,Huv,Wuv|B64,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_23_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3991] // VSHUFF32X4 Vuv{K}{z},aKq,Huv,Wuv|B32,Ib + (const void *)&gInstructions[ 4036] // VSHUFF32X4 Vuv{K}{z},aKq,Huv,Wuv|B32,Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_23_pp_01_w = @@ -25090,13 +25338,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_23_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_22_pp_01_l_00_wi_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3609] // VPINSRQ Vdq,Hdq,Eq,Ib + (const void *)&gInstructions[ 3654] // VPINSRQ Vdq,Hdq,Eq,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_22_pp_01_l_00_wi_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3607] // VPINSRD Vdq,Hdq,Ed,Ib + (const void *)&gInstructions[ 3652] // VPINSRD Vdq,Hdq,Ed,Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_22_pp_01_l_00_wi = @@ -25133,7 +25381,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_22_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_21_pp_01_modrmmod_01_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3180] // VINSERTPS Vdq,Hdq,Udq,Ib + (const void *)&gInstructions[ 3221] // VINSERTPS Vdq,Hdq,Udq,Ib }; const ND_TABLE_EX_L gEvexMap_mmmmm_03_opcode_21_pp_01_modrmmod_01_l = @@ -25150,7 +25398,7 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_03_opcode_21_pp_01_modrmmod_01_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_21_pp_01_modrmmod_00_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3179] // VINSERTPS Vdq,Hdq,Md,Ib + (const void *)&gInstructions[ 3220] // VINSERTPS Vdq,Hdq,Md,Ib }; const ND_TABLE_EX_L gEvexMap_mmmmm_03_opcode_21_pp_01_modrmmod_00_l = @@ -25187,7 +25435,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_21_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_20_pp_01_modrmmod_01_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3604] // VPINSRB Vdq,Hdq,Rd,Ib + (const void *)&gInstructions[ 3649] // VPINSRB Vdq,Hdq,Rd,Ib }; const ND_TABLE_EX_L gEvexMap_mmmmm_03_opcode_20_pp_01_modrmmod_01_l = @@ -25204,7 +25452,7 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_03_opcode_20_pp_01_modrmmod_01_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_20_pp_01_modrmmod_00_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3603] // VPINSRB Vdq,Hdq,Mb,Ib + (const void *)&gInstructions[ 3648] // VPINSRB Vdq,Hdq,Mb,Ib }; const ND_TABLE_EX_L gEvexMap_mmmmm_03_opcode_20_pp_01_modrmmod_00_l = @@ -25241,13 +25489,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_20_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_1f_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3459] // VPCMPQ rKq{K},aKq,Hfv,Wfv|B64,Ib + (const void *)&gInstructions[ 3504] // VPCMPQ rKq{K},aKq,Hfv,Wfv|B64,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_1f_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3438] // VPCMPD rKq{K},aKq,Hfv,Wfv|B32,Ib + (const void *)&gInstructions[ 3483] // VPCMPD rKq{K},aKq,Hfv,Wfv|B32,Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_1f_pp_01_w = @@ -25273,13 +25521,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_1f_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_1e_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3462] // VPCMPUQ rKq{K},aKq,Hfv,Wfv|B64,Ib + (const void *)&gInstructions[ 3507] // VPCMPUQ rKq{K},aKq,Hfv,Wfv|B64,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_1e_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3461] // VPCMPUD rKq{K},aKq,Hfv,Wfv|B32,Ib + (const void *)&gInstructions[ 3506] // VPCMPUD rKq{K},aKq,Hfv,Wfv|B32,Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_1e_pp_01_w = @@ -25305,7 +25553,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_1e_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_1d_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2782] // VCVTPS2PH Whv{K}{z},aKq,Vfv{sae},Ib + (const void *)&gInstructions[ 2823] // VCVTPS2PH Whv{K}{z},aKq,Vfv{sae},Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_1d_pp_01_w = @@ -25331,13 +25579,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_1d_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_1b_pp_01_l_02_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2894] // VEXTRACTF64X4 Wqq{K}{z},aKq,Voq,Ib + (const void *)&gInstructions[ 2935] // VEXTRACTF64X4 Wqq{K}{z},aKq,Voq,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_1b_pp_01_l_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2892] // VEXTRACTF32X8 Wqq{K}{z},aKq,Voq,Ib + (const void *)&gInstructions[ 2933] // VEXTRACTF32X8 Wqq{K}{z},aKq,Voq,Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_1b_pp_01_l_02_w = @@ -25374,13 +25622,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_1b_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_1a_pp_01_l_02_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3173] // VINSERTF64X4 Voq{K}{z},aKq,Hoq,Wqq,Ib + (const void *)&gInstructions[ 3214] // VINSERTF64X4 Voq{K}{z},aKq,Hoq,Wqq,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_1a_pp_01_l_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3171] // VINSERTF32X8 Voq{K}{z},aKq,Hoq,Wqq,Ib + (const void *)&gInstructions[ 3212] // VINSERTF32X8 Voq{K}{z},aKq,Hoq,Wqq,Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_1a_pp_01_l_02_w = @@ -25417,13 +25665,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_1a_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_19_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2893] // VEXTRACTF64X2 Wdq{K}{z},aKq,Vuv,Ib + (const void *)&gInstructions[ 2934] // VEXTRACTF64X2 Wdq{K}{z},aKq,Vuv,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_19_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2891] // VEXTRACTF32X4 Wdq{K}{z},aKq,Vuv,Ib + (const void *)&gInstructions[ 2932] // VEXTRACTF32X4 Wdq{K}{z},aKq,Vuv,Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_19_pp_01_w = @@ -25449,13 +25697,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_19_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_18_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3172] // VINSERTF64X2 Vuv{K}{z},aKq,Huv,Wdq,Ib + (const void *)&gInstructions[ 3213] // VINSERTF64X2 Vuv{K}{z},aKq,Huv,Wdq,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_18_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3170] // VINSERTF32X4 Vuv{K}{z},aKq,Huv,Wdq,Ib + (const void *)&gInstructions[ 3211] // VINSERTF32X4 Vuv{K}{z},aKq,Huv,Wdq,Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_18_pp_01_w = @@ -25481,7 +25729,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_18_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_17_pp_01_modrmmod_01_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2901] // VEXTRACTPS Ry,Vdq,Ib + (const void *)&gInstructions[ 2942] // VEXTRACTPS Ry,Vdq,Ib }; const ND_TABLE_EX_L gEvexMap_mmmmm_03_opcode_17_pp_01_modrmmod_01_l = @@ -25498,7 +25746,7 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_03_opcode_17_pp_01_modrmmod_01_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_17_pp_01_modrmmod_00_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2900] // VEXTRACTPS Md,Vdq,Ib + (const void *)&gInstructions[ 2941] // VEXTRACTPS Md,Vdq,Ib }; const ND_TABLE_EX_L gEvexMap_mmmmm_03_opcode_17_pp_01_modrmmod_00_l = @@ -25535,13 +25783,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_17_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_16_pp_01_modrmmod_01_l_00_wi_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3564] // VPEXTRQ Ry,Vdq,Ib + (const void *)&gInstructions[ 3609] // VPEXTRQ Ry,Vdq,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_16_pp_01_modrmmod_01_l_00_wi_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3560] // VPEXTRD Ry,Vdq,Ib + (const void *)&gInstructions[ 3605] // VPEXTRD Ry,Vdq,Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_16_pp_01_modrmmod_01_l_00_wi = @@ -25567,13 +25815,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_03_opcode_16_pp_01_modrmmod_01_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_16_pp_01_modrmmod_00_l_00_wi_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3563] // VPEXTRQ Mq,Vdq,Ib + (const void *)&gInstructions[ 3608] // VPEXTRQ Mq,Vdq,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_16_pp_01_modrmmod_00_l_00_wi_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3559] // VPEXTRD Md,Vdq,Ib + (const void *)&gInstructions[ 3604] // VPEXTRD Md,Vdq,Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_16_pp_01_modrmmod_00_l_00_wi = @@ -25619,7 +25867,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_16_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_15_pp_01_modrmmod_01_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3569] // VPEXTRW Ry,Vdq,Ib + (const void *)&gInstructions[ 3614] // VPEXTRW Ry,Vdq,Ib }; const ND_TABLE_EX_L gEvexMap_mmmmm_03_opcode_15_pp_01_modrmmod_01_l = @@ -25636,7 +25884,7 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_03_opcode_15_pp_01_modrmmod_01_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_15_pp_01_modrmmod_00_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3568] // VPEXTRW Mw,Vdq,Ib + (const void *)&gInstructions[ 3613] // VPEXTRW Mw,Vdq,Ib }; const ND_TABLE_EX_L gEvexMap_mmmmm_03_opcode_15_pp_01_modrmmod_00_l = @@ -25673,7 +25921,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_15_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_14_pp_01_modrmmod_01_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3556] // VPEXTRB Ry,Vdq,Ib + (const void *)&gInstructions[ 3601] // VPEXTRB Ry,Vdq,Ib }; const ND_TABLE_EX_L gEvexMap_mmmmm_03_opcode_14_pp_01_modrmmod_01_l = @@ -25690,7 +25938,7 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_03_opcode_14_pp_01_modrmmod_01_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_14_pp_01_modrmmod_00_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3555] // VPEXTRB Mb,Vdq,Ib + (const void *)&gInstructions[ 3600] // VPEXTRB Mb,Vdq,Ib }; const ND_TABLE_EX_L gEvexMap_mmmmm_03_opcode_14_pp_01_modrmmod_00_l = @@ -25727,7 +25975,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_14_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_0f_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3400] // VPALIGNR Vfv{K}{z},aKq,Hfv,Wfv,Ib + (const void *)&gInstructions[ 3445] // VPALIGNR Vfv{K}{z},aKq,Hfv,Wfv,Ib }; const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_0f_pp = @@ -25744,7 +25992,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_0f_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_0b_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3949] // VRNDSCALESD Vdq{K}{z},aKq,Hdq,Wsd{sae},Ib + (const void *)&gInstructions[ 3994] // VRNDSCALESD Vdq{K}{z},aKq,Hdq,Wsd{sae},Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_0b_pp_01_w = @@ -25770,7 +26018,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_0b_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_0a_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3951] // VRNDSCALESS Vdq{K}{z},aKq,Hdq,Wss{sae},Ib + (const void *)&gInstructions[ 3996] // VRNDSCALESS Vdq{K}{z},aKq,Hdq,Wss{sae},Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_0a_pp_01_w = @@ -25785,7 +26033,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_0a_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_0a_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3950] // VRNDSCALESH Vdq{K}{z},aKq,Hdq,Wsh{sae},Ib + (const void *)&gInstructions[ 3995] // VRNDSCALESH Vdq{K}{z},aKq,Hdq,Wsh{sae},Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_0a_pp_00_w = @@ -25811,7 +26059,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_0a_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_09_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3946] // VRNDSCALEPD Vfv{K}{z},aKq,Wfv|B64{sae},Ib + (const void *)&gInstructions[ 3991] // VRNDSCALEPD Vfv{K}{z},aKq,Wfv|B64{sae},Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_09_pp_01_w = @@ -25837,7 +26085,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_09_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_08_pp_03_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3945] // VRNDSCALENEPBF16 Vfv{K}{z},aKq,Wfv|B16,Ib + (const void *)&gInstructions[ 3990] // VRNDSCALENEPBF16 Vfv{K}{z},aKq,Wfv|B16,Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_08_pp_03_w = @@ -25852,7 +26100,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_08_pp_03_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_08_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3948] // VRNDSCALEPS Vfv{K}{z},aKq,Wfv|B32{sae},Ib + (const void *)&gInstructions[ 3993] // VRNDSCALEPS Vfv{K}{z},aKq,Wfv|B32{sae},Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_08_pp_01_w = @@ -25867,7 +26115,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_08_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_08_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3947] // VRNDSCALEPH Vfv{K}{z},aKq,Wfv|B16{sae},Ib + (const void *)&gInstructions[ 3992] // VRNDSCALEPH Vfv{K}{z},aKq,Wfv|B16{sae},Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_08_pp_00_w = @@ -25890,10 +26138,161 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_08_pp = } }; +const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_07_pp_03_modrmmod_01_l_02_w_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 2608] // TCVTROWPS2PBF16H Voq,mTt,Ib +}; + +const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_07_pp_03_modrmmod_01_l_02_w = +{ + ND_ILUT_EX_W, + { + /* 00 */ (const void *)&gEvexMap_mmmmm_03_opcode_07_pp_03_modrmmod_01_l_02_w_00_leaf, + /* 01 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_L gEvexMap_mmmmm_03_opcode_07_pp_03_modrmmod_01_l = +{ + ND_ILUT_EX_L, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)&gEvexMap_mmmmm_03_opcode_07_pp_03_modrmmod_01_l_02_w, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_MODRM_MOD gEvexMap_mmmmm_03_opcode_07_pp_03_modrmmod = +{ + ND_ILUT_MODRM_MOD, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gEvexMap_mmmmm_03_opcode_07_pp_03_modrmmod_01_l, + } +}; + +const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_07_pp_02_modrmmod_01_l_02_w_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 2606] // TCVTROWD2PS Voq,mTt,Ib +}; + +const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_07_pp_02_modrmmod_01_l_02_w = +{ + ND_ILUT_EX_W, + { + /* 00 */ (const void *)&gEvexMap_mmmmm_03_opcode_07_pp_02_modrmmod_01_l_02_w_00_leaf, + /* 01 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_L gEvexMap_mmmmm_03_opcode_07_pp_02_modrmmod_01_l = +{ + ND_ILUT_EX_L, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)&gEvexMap_mmmmm_03_opcode_07_pp_02_modrmmod_01_l_02_w, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_MODRM_MOD gEvexMap_mmmmm_03_opcode_07_pp_02_modrmmod = +{ + ND_ILUT_MODRM_MOD, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gEvexMap_mmmmm_03_opcode_07_pp_02_modrmmod_01_l, + } +}; + +const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_07_pp_01_modrmmod_01_l_02_w_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 2642] // TILEMOVROW Voq,mTt,Ib +}; + +const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_07_pp_01_modrmmod_01_l_02_w = +{ + ND_ILUT_EX_W, + { + /* 00 */ (const void *)&gEvexMap_mmmmm_03_opcode_07_pp_01_modrmmod_01_l_02_w_00_leaf, + /* 01 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_L gEvexMap_mmmmm_03_opcode_07_pp_01_modrmmod_01_l = +{ + ND_ILUT_EX_L, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)&gEvexMap_mmmmm_03_opcode_07_pp_01_modrmmod_01_l_02_w, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_MODRM_MOD gEvexMap_mmmmm_03_opcode_07_pp_01_modrmmod = +{ + ND_ILUT_MODRM_MOD, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gEvexMap_mmmmm_03_opcode_07_pp_01_modrmmod_01_l, + } +}; + +const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_07_pp_00_modrmmod_01_l_02_w_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 2612] // TCVTROWPS2PHH Voq,mTt,Ib +}; + +const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_07_pp_00_modrmmod_01_l_02_w = +{ + ND_ILUT_EX_W, + { + /* 00 */ (const void *)&gEvexMap_mmmmm_03_opcode_07_pp_00_modrmmod_01_l_02_w_00_leaf, + /* 01 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_L gEvexMap_mmmmm_03_opcode_07_pp_00_modrmmod_01_l = +{ + ND_ILUT_EX_L, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)&gEvexMap_mmmmm_03_opcode_07_pp_00_modrmmod_01_l_02_w, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_MODRM_MOD gEvexMap_mmmmm_03_opcode_07_pp_00_modrmmod = +{ + ND_ILUT_MODRM_MOD, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gEvexMap_mmmmm_03_opcode_07_pp_00_modrmmod_01_l, + } +}; + +const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_07_pp = +{ + ND_ILUT_EX_PP, + { + /* 00 */ (const void *)&gEvexMap_mmmmm_03_opcode_07_pp_00_modrmmod, + /* 01 */ (const void *)&gEvexMap_mmmmm_03_opcode_07_pp_01_modrmmod, + /* 02 */ (const void *)&gEvexMap_mmmmm_03_opcode_07_pp_02_modrmmod, + /* 03 */ (const void *)&gEvexMap_mmmmm_03_opcode_07_pp_03_modrmmod, + } +}; + const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_05_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3527] // VPERMILPD Vfv{K}{z},aKq,Wfv|B64,Ib + (const void *)&gInstructions[ 3572] // VPERMILPD Vfv{K}{z},aKq,Wfv|B64,Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_05_pp_01_w = @@ -25919,7 +26318,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_05_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_04_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3531] // VPERMILPS Vfv{K}{z},aKq,Wfv|B32,Ib + (const void *)&gInstructions[ 3576] // VPERMILPS Vfv{K}{z},aKq,Wfv|B32,Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_04_pp_01_w = @@ -25945,13 +26344,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_04_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_03_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2669] // VALIGNQ Vfv{K}{z},aKq,Hfv,Wfv|B64,Ib + (const void *)&gInstructions[ 2710] // VALIGNQ Vfv{K}{z},aKq,Hfv,Wfv|B64,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_03_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2668] // VALIGND Vfv{K}{z},aKq,Hfv,Wfv|B32,Ib + (const void *)&gInstructions[ 2709] // VALIGND Vfv{K}{z},aKq,Hfv,Wfv|B32,Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_03_pp_01_w = @@ -25977,7 +26376,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_03_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_01_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3536] // VPERMPD Vuv{K}{z},aKq,Wuv|B64,Ib + (const void *)&gInstructions[ 3581] // VPERMPD Vuv{K}{z},aKq,Wuv|B64,Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_01_pp_01_w = @@ -26003,7 +26402,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_03_opcode_01_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_03_opcode_00_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3542] // VPERMQ Vuv{K}{z},aKq,Wuv|B64,Ib + (const void *)&gInstructions[ 3587] // VPERMQ Vuv{K}{z},aKq,Wuv|B64,Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_03_opcode_00_pp_01_w = @@ -26037,7 +26436,7 @@ const ND_TABLE_OPCODE gEvexMap_mmmmm_03_opcode = /* 04 */ (const void *)&gEvexMap_mmmmm_03_opcode_04_pp, /* 05 */ (const void *)&gEvexMap_mmmmm_03_opcode_05_pp, /* 06 */ (const void *)ND_NULL, - /* 07 */ (const void *)ND_NULL, + /* 07 */ (const void *)&gEvexMap_mmmmm_03_opcode_07_pp, /* 08 */ (const void *)&gEvexMap_mmmmm_03_opcode_08_pp, /* 09 */ (const void *)&gEvexMap_mmmmm_03_opcode_09_pp, /* 0a */ (const void *)&gEvexMap_mmmmm_03_opcode_0a_pp, @@ -26149,7 +26548,7 @@ const ND_TABLE_OPCODE gEvexMap_mmmmm_03_opcode = /* 74 */ (const void *)ND_NULL, /* 75 */ (const void *)ND_NULL, /* 76 */ (const void *)ND_NULL, - /* 77 */ (const void *)ND_NULL, + /* 77 */ (const void *)&gEvexMap_mmmmm_03_opcode_77_pp, /* 78 */ (const void *)ND_NULL, /* 79 */ (const void *)ND_NULL, /* 7a */ (const void *)ND_NULL, @@ -26292,7 +26691,7 @@ const ND_TABLE_OPCODE gEvexMap_mmmmm_03_opcode = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_f7_pp_03_l_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2488] // SHRX Gy,Ey,By + (const void *)&gInstructions[ 2494] // SHRX Gy,Ey,By }; const ND_TABLE_EX_NF gEvexMap_mmmmm_02_opcode_f7_pp_03_l_00_nf = @@ -26318,7 +26717,7 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_02_opcode_f7_pp_03_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_f7_pp_02_l_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2276] // SARX Gy,Ey,By + (const void *)&gInstructions[ 2282] // SARX Gy,Ey,By }; const ND_TABLE_EX_NF gEvexMap_mmmmm_02_opcode_f7_pp_02_l_00_nf = @@ -26344,7 +26743,7 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_02_opcode_f7_pp_02_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_f7_pp_01_l_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2426] // SHLX Gy,Ey,By + (const void *)&gInstructions[ 2432] // SHLX Gy,Ey,By }; const ND_TABLE_EX_NF gEvexMap_mmmmm_02_opcode_f7_pp_01_l_00_nf = @@ -26413,7 +26812,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_f7_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_f6_pp_03_l_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1483] // MULX Gy,By,Ey + (const void *)&gInstructions[ 1485] // MULX Gy,By,Ey }; const ND_TABLE_EX_NF gEvexMap_mmmmm_02_opcode_f6_pp_03_l_00_nf = @@ -26450,7 +26849,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_f6_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_f5_pp_03_l_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1710] // PDEP Gy,By,Ey + (const void *)&gInstructions[ 1712] // PDEP Gy,By,Ey }; const ND_TABLE_EX_NF gEvexMap_mmmmm_02_opcode_f5_pp_03_l_00_nf = @@ -26476,7 +26875,7 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_02_opcode_f5_pp_03_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_f5_pp_02_l_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1712] // PEXT Gy,By,Ey + (const void *)&gInstructions[ 1714] // PEXT Gy,By,Ey }; const ND_TABLE_EX_NF gEvexMap_mmmmm_02_opcode_f5_pp_02_l_00_nf = @@ -27446,7 +27845,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_e0_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_df_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2660] // VAESDECLAST Vfv,Hfv,Wfv + (const void *)&gInstructions[ 2701] // VAESDECLAST Vfv,Hfv,Wfv }; const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_df_pp = @@ -27463,7 +27862,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_df_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_de_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2658] // VAESDEC Vfv,Hfv,Wfv + (const void *)&gInstructions[ 2699] // VAESDEC Vfv,Hfv,Wfv }; const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_de_pp = @@ -27480,7 +27879,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_de_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_dd_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2664] // VAESENCLAST Vfv,Hfv,Wfv + (const void *)&gInstructions[ 2705] // VAESENCLAST Vfv,Hfv,Wfv }; const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_dd_pp = @@ -27497,7 +27896,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_dd_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_dc_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2662] // VAESENC Vfv,Hfv,Wfv + (const void *)&gInstructions[ 2703] // VAESENC Vfv,Hfv,Wfv }; const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_dc_pp = @@ -27511,10 +27910,51 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_dc_pp = } }; +const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_da_pp_03_w_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 4049] // VSM4RNDS4 Vfv,Hfv,Wfv +}; + +const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_da_pp_03_w = +{ + ND_ILUT_EX_W, + { + /* 00 */ (const void *)&gEvexMap_mmmmm_02_opcode_da_pp_03_w_00_leaf, + /* 01 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_da_pp_02_w_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 4047] // VSM4KEY4 Vfv,Hfv,Wfv +}; + +const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_da_pp_02_w = +{ + ND_ILUT_EX_W, + { + /* 00 */ (const void *)&gEvexMap_mmmmm_02_opcode_da_pp_02_w_00_leaf, + /* 01 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_da_pp = +{ + ND_ILUT_EX_PP, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)&gEvexMap_mmmmm_02_opcode_da_pp_02_w, + /* 03 */ (const void *)&gEvexMap_mmmmm_02_opcode_da_pp_03_w, + } +}; + const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_d3_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3501] // VPDPWSUDS Vfv{K}{z},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 3546] // VPDPWSUDS Vfv{K}{z},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_d3_pp_02_w = @@ -27529,7 +27969,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_d3_pp_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_d3_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3505] // VPDPWUSDS Vfv{K}{z},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 3550] // VPDPWUSDS Vfv{K}{z},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_d3_pp_01_w = @@ -27544,7 +27984,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_d3_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_d3_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3509] // VPDPWUUDS Vfv{K}{z},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 3554] // VPDPWUUDS Vfv{K}{z},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_d3_pp_00_w = @@ -27570,7 +28010,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_d3_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_d2_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3499] // VPDPWSUD Vfv{K}{z},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 3544] // VPDPWSUD Vfv{K}{z},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_d2_pp_02_w = @@ -27585,7 +28025,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_d2_pp_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_d2_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3503] // VPDPWUSD Vfv{K}{z},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 3548] // VPDPWUSD Vfv{K}{z},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_d2_pp_01_w = @@ -27600,7 +28040,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_d2_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_d2_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3507] // VPDPWUUD Vfv{K}{z},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 3552] // VPDPWUUD Vfv{K}{z},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_d2_pp_00_w = @@ -27626,7 +28066,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_d2_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_cf_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3163] // VGF2P8MULB Vfv{K}{z},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3204] // VGF2P8MULB Vfv{K}{z},aKq,Hfv,Wfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_cf_pp_01_w = @@ -27652,13 +28092,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_cf_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_cd_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3962] // VRSQRT28SD Vdq{K}{z},aKq,Hdq,Wsd{sae} + (const void *)&gInstructions[ 4007] // VRSQRT28SD Vdq{K}{z},aKq,Hdq,Wsd{sae} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_cd_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3963] // VRSQRT28SS Vdq{K}{z},aKq,Hdq,Wss{sae} + (const void *)&gInstructions[ 4008] // VRSQRT28SS Vdq{K}{z},aKq,Hdq,Wss{sae} }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_cd_pp_01_w = @@ -27684,13 +28124,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_cd_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_cc_pp_01_l_02_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3960] // VRSQRT28PD Voq{K}{z},aKq,Woq|B64{sae} + (const void *)&gInstructions[ 4005] // VRSQRT28PD Voq{K}{z},aKq,Woq|B64{sae} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_cc_pp_01_l_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3961] // VRSQRT28PS Voq{K}{z},aKq,Woq|B32{sae} + (const void *)&gInstructions[ 4006] // VRSQRT28PS Voq{K}{z},aKq,Woq|B32{sae} }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_cc_pp_01_l_02_w = @@ -27727,13 +28167,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_cc_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_cb_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3931] // VRCP28SD Vdq{K}{z},aKq,Hdq,Wsd{sae} + (const void *)&gInstructions[ 3976] // VRCP28SD Vdq{K}{z},aKq,Hdq,Wsd{sae} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_cb_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3932] // VRCP28SS Vdq{K}{z},aKq,Hdq,Wss{sae} + (const void *)&gInstructions[ 3977] // VRCP28SS Vdq{K}{z},aKq,Hdq,Wss{sae} }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_cb_pp_01_w = @@ -27759,13 +28199,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_cb_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_ca_pp_01_l_02_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3929] // VRCP28PD Voq{K}{z},aKq,Woq|B64{sae} + (const void *)&gInstructions[ 3974] // VRCP28PD Voq{K}{z},aKq,Woq|B64{sae} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_ca_pp_01_l_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3930] // VRCP28PS Voq{K}{z},aKq,Woq|B32{sae} + (const void *)&gInstructions[ 3975] // VRCP28PS Voq{K}{z},aKq,Woq|B32{sae} }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_ca_pp_01_l_02_w = @@ -27802,13 +28242,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_ca_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_c8_pp_01_l_02_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2886] // VEXP2PD Voq{K}{z},aKq,Woq|B64{sae} + (const void *)&gInstructions[ 2927] // VEXP2PD Voq{K}{z},aKq,Woq|B64{sae} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_c8_pp_01_l_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2887] // VEXP2PS Voq{K}{z},aKq,Woq|B32{sae} + (const void *)&gInstructions[ 2928] // VEXP2PS Voq{K}{z},aKq,Woq|B32{sae} }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_c8_pp_01_l_02_w = @@ -27845,13 +28285,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_c8_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_c7_pp_01_modrmreg_06_modrmmod_00_l_02_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3984] // VSCATTERPF1QPD Mvm64n{K},aKq + (const void *)&gInstructions[ 4029] // VSCATTERPF1QPD Mvm64n{K},aKq }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_c7_pp_01_modrmreg_06_modrmmod_00_l_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3985] // VSCATTERPF1QPS Mvm64n{K},aKq + (const void *)&gInstructions[ 4030] // VSCATTERPF1QPS Mvm64n{K},aKq }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_c7_pp_01_modrmreg_06_modrmmod_00_l_02_w = @@ -27886,13 +28326,13 @@ const ND_TABLE_MODRM_MOD gEvexMap_mmmmm_02_opcode_c7_pp_01_modrmreg_06_modrmmod const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_c7_pp_01_modrmreg_05_modrmmod_00_l_02_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3980] // VSCATTERPF0QPD Mvm64n{K},aKq + (const void *)&gInstructions[ 4025] // VSCATTERPF0QPD Mvm64n{K},aKq }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_c7_pp_01_modrmreg_05_modrmmod_00_l_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3981] // VSCATTERPF0QPS Mvm64n{K},aKq + (const void *)&gInstructions[ 4026] // VSCATTERPF0QPS Mvm64n{K},aKq }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_c7_pp_01_modrmreg_05_modrmmod_00_l_02_w = @@ -27927,13 +28367,13 @@ const ND_TABLE_MODRM_MOD gEvexMap_mmmmm_02_opcode_c7_pp_01_modrmreg_05_modrmmod const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_c7_pp_01_modrmreg_02_modrmmod_00_l_02_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3139] // VGATHERPF1QPD Mvm64n{K},aKq + (const void *)&gInstructions[ 3180] // VGATHERPF1QPD Mvm64n{K},aKq }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_c7_pp_01_modrmreg_02_modrmmod_00_l_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3140] // VGATHERPF1QPS Mvm64n{K},aKq + (const void *)&gInstructions[ 3181] // VGATHERPF1QPS Mvm64n{K},aKq }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_c7_pp_01_modrmreg_02_modrmmod_00_l_02_w = @@ -27968,13 +28408,13 @@ const ND_TABLE_MODRM_MOD gEvexMap_mmmmm_02_opcode_c7_pp_01_modrmreg_02_modrmmod const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_c7_pp_01_modrmreg_01_modrmmod_00_l_02_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3135] // VGATHERPF0QPD Mvm64n{K},aKq + (const void *)&gInstructions[ 3176] // VGATHERPF0QPD Mvm64n{K},aKq }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_c7_pp_01_modrmreg_01_modrmmod_00_l_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3136] // VGATHERPF0QPS Mvm64n{K},aKq + (const void *)&gInstructions[ 3177] // VGATHERPF0QPS Mvm64n{K},aKq }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_c7_pp_01_modrmreg_01_modrmmod_00_l_02_w = @@ -28035,13 +28475,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_c7_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_c6_pp_01_modrmreg_06_modrmmod_00_l_02_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3982] // VSCATTERPF1DPD Mvm32h{K},aKq + (const void *)&gInstructions[ 4027] // VSCATTERPF1DPD Mvm32h{K},aKq }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_c6_pp_01_modrmreg_06_modrmmod_00_l_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3983] // VSCATTERPF1DPS Mvm32n{K},aKq + (const void *)&gInstructions[ 4028] // VSCATTERPF1DPS Mvm32n{K},aKq }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_c6_pp_01_modrmreg_06_modrmmod_00_l_02_w = @@ -28076,13 +28516,13 @@ const ND_TABLE_MODRM_MOD gEvexMap_mmmmm_02_opcode_c6_pp_01_modrmreg_06_modrmmod const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_c6_pp_01_modrmreg_05_modrmmod_00_l_02_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3978] // VSCATTERPF0DPD Mvm32h{K},aKq + (const void *)&gInstructions[ 4023] // VSCATTERPF0DPD Mvm32h{K},aKq }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_c6_pp_01_modrmreg_05_modrmmod_00_l_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3979] // VSCATTERPF0DPS Mvm32n{K},aKq + (const void *)&gInstructions[ 4024] // VSCATTERPF0DPS Mvm32n{K},aKq }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_c6_pp_01_modrmreg_05_modrmmod_00_l_02_w = @@ -28117,13 +28557,13 @@ const ND_TABLE_MODRM_MOD gEvexMap_mmmmm_02_opcode_c6_pp_01_modrmreg_05_modrmmod const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_c6_pp_01_modrmreg_02_modrmmod_00_l_02_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3137] // VGATHERPF1DPD Mvm32h{K},aKq + (const void *)&gInstructions[ 3178] // VGATHERPF1DPD Mvm32h{K},aKq }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_c6_pp_01_modrmreg_02_modrmmod_00_l_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3138] // VGATHERPF1DPS Mvm32n{K},aKq + (const void *)&gInstructions[ 3179] // VGATHERPF1DPS Mvm32n{K},aKq }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_c6_pp_01_modrmreg_02_modrmmod_00_l_02_w = @@ -28158,13 +28598,13 @@ const ND_TABLE_MODRM_MOD gEvexMap_mmmmm_02_opcode_c6_pp_01_modrmreg_02_modrmmod const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_c6_pp_01_modrmreg_01_modrmmod_00_l_02_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3133] // VGATHERPF0DPD Mvm32h{K},aKq + (const void *)&gInstructions[ 3174] // VGATHERPF0DPD Mvm32h{K},aKq }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_c6_pp_01_modrmreg_01_modrmmod_00_l_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3134] // VGATHERPF0DPS Mvm32n{K},aKq + (const void *)&gInstructions[ 3175] // VGATHERPF0DPS Mvm32n{K},aKq }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_c6_pp_01_modrmreg_01_modrmmod_00_l_02_w = @@ -28225,13 +28665,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_c6_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_c4_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3478] // VPCONFLICTQ Vfv{K}{z},aKq,Wfv|B64 + (const void *)&gInstructions[ 3523] // VPCONFLICTQ Vfv{K}{z},aKq,Wfv|B64 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_c4_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3477] // VPCONFLICTD Vfv{K}{z},aKq,Wfv|B32 + (const void *)&gInstructions[ 3522] // VPCONFLICTD Vfv{K}{z},aKq,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_c4_pp_01_w = @@ -28257,13 +28697,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_c4_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_bf_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3105] // VFNMSUB231SD Vdq{K}{z},aKq,Hdq,Wsd{er} + (const void *)&gInstructions[ 3146] // VFNMSUB231SD Vdq{K}{z},aKq,Hdq,Wsd{er} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_bf_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3108] // VFNMSUB231SS Vdq{K}{z},aKq,Hdq,Wss{er} + (const void *)&gInstructions[ 3149] // VFNMSUB231SS Vdq{K}{z},aKq,Hdq,Wss{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_bf_pp_01_w = @@ -28289,13 +28729,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_bf_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_be_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3100] // VFNMSUB231PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er} + (const void *)&gInstructions[ 3141] // VFNMSUB231PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_be_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3103] // VFNMSUB231PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er} + (const void *)&gInstructions[ 3144] // VFNMSUB231PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_be_pp_01_w = @@ -28321,13 +28761,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_be_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_bd_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3064] // VFNMADD231SD Vdq{K}{z},aKq,Hdq,Wsd{er} + (const void *)&gInstructions[ 3105] // VFNMADD231SD Vdq{K}{z},aKq,Hdq,Wsd{er} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_bd_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3067] // VFNMADD231SS Vdq{K}{z},aKq,Hdq,Wss{er} + (const void *)&gInstructions[ 3108] // VFNMADD231SS Vdq{K}{z},aKq,Hdq,Wss{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_bd_pp_01_w = @@ -28353,13 +28793,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_bd_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_bc_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3059] // VFNMADD231PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er} + (const void *)&gInstructions[ 3100] // VFNMADD231PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_bc_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3062] // VFNMADD231PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er} + (const void *)&gInstructions[ 3103] // VFNMADD231PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_bc_pp_01_w = @@ -28385,13 +28825,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_bc_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_bb_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3002] // VFMSUB231SD Vdq{K}{z},aKq,Hdq,Wsd{er} + (const void *)&gInstructions[ 3043] // VFMSUB231SD Vdq{K}{z},aKq,Hdq,Wsd{er} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_bb_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3005] // VFMSUB231SS Vdq{K}{z},aKq,Hdq,Wss{er} + (const void *)&gInstructions[ 3046] // VFMSUB231SS Vdq{K}{z},aKq,Hdq,Wss{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_bb_pp_01_w = @@ -28417,13 +28857,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_bb_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_ba_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2997] // VFMSUB231PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er} + (const void *)&gInstructions[ 3038] // VFMSUB231PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_ba_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3000] // VFMSUB231PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er} + (const void *)&gInstructions[ 3041] // VFMSUB231PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_ba_pp_01_w = @@ -28449,13 +28889,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_ba_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_b9_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2940] // VFMADD231SD Vdq{K}{z},aKq,Hdq,Wsd{er} + (const void *)&gInstructions[ 2981] // VFMADD231SD Vdq{K}{z},aKq,Hdq,Wsd{er} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_b9_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2943] // VFMADD231SS Vdq{K}{z},aKq,Hdq,Wss{er} + (const void *)&gInstructions[ 2984] // VFMADD231SS Vdq{K}{z},aKq,Hdq,Wss{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_b9_pp_01_w = @@ -28481,13 +28921,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_b9_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_b8_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2935] // VFMADD231PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er} + (const void *)&gInstructions[ 2976] // VFMADD231PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_b8_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2938] // VFMADD231PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er} + (const void *)&gInstructions[ 2979] // VFMADD231PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_b8_pp_01_w = @@ -28513,13 +28953,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_b8_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_b7_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3017] // VFMSUBADD231PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er} + (const void *)&gInstructions[ 3058] // VFMSUBADD231PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_b7_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3020] // VFMSUBADD231PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er} + (const void *)&gInstructions[ 3061] // VFMSUBADD231PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_b7_pp_01_w = @@ -28545,13 +28985,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_b7_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_b6_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2965] // VFMADDSUB231PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er} + (const void *)&gInstructions[ 3006] // VFMADDSUB231PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_b6_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2968] // VFMADDSUB231PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er} + (const void *)&gInstructions[ 3009] // VFMADDSUB231PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_b6_pp_01_w = @@ -28577,7 +29017,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_b6_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_b5_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3629] // VPMADD52HUQ Vfv{K}{z},aKq,Hfv,Wfv|B64 + (const void *)&gInstructions[ 3674] // VPMADD52HUQ Vfv{K}{z},aKq,Hfv,Wfv|B64 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_b5_pp_01_w = @@ -28603,7 +29043,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_b5_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_b4_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3631] // VPMADD52LUQ Vfv{K}{z},aKq,Hfv,Wfv|B64 + (const void *)&gInstructions[ 3676] // VPMADD52LUQ Vfv{K}{z},aKq,Hfv,Wfv|B64 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_b4_pp_01_w = @@ -28629,13 +29069,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_b4_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_af_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3094] // VFNMSUB213SD Vdq{K}{z},aKq,Hdq,Wsd{er} + (const void *)&gInstructions[ 3135] // VFNMSUB213SD Vdq{K}{z},aKq,Hdq,Wsd{er} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_af_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3097] // VFNMSUB213SS Vdq{K}{z},aKq,Hdq,Wss{er} + (const void *)&gInstructions[ 3138] // VFNMSUB213SS Vdq{K}{z},aKq,Hdq,Wss{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_af_pp_01_w = @@ -28661,13 +29101,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_af_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_ae_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3089] // VFNMSUB213PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er} + (const void *)&gInstructions[ 3130] // VFNMSUB213PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_ae_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3092] // VFNMSUB213PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er} + (const void *)&gInstructions[ 3133] // VFNMSUB213PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_ae_pp_01_w = @@ -28693,13 +29133,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_ae_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_ad_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3053] // VFNMADD213SD Vdq{K}{z},aKq,Hdq,Wsd{er} + (const void *)&gInstructions[ 3094] // VFNMADD213SD Vdq{K}{z},aKq,Hdq,Wsd{er} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_ad_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3056] // VFNMADD213SS Vdq{K}{z},aKq,Hdq,Wss{er} + (const void *)&gInstructions[ 3097] // VFNMADD213SS Vdq{K}{z},aKq,Hdq,Wss{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_ad_pp_01_w = @@ -28725,13 +29165,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_ad_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_ac_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3048] // VFNMADD213PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er} + (const void *)&gInstructions[ 3089] // VFNMADD213PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_ac_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3051] // VFNMADD213PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er} + (const void *)&gInstructions[ 3092] // VFNMADD213PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_ac_pp_01_w = @@ -28757,7 +29197,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_ac_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_ab_pp_03_modrmmod_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2644] // V4FNMADDSS Vdq{K}{z},aKq,Hdq+3,Mdq + (const void *)&gInstructions[ 2685] // V4FNMADDSS Vdq{K}{z},aKq,Hdq+3,Mdq }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_ab_pp_03_modrmmod_00_w = @@ -28781,13 +29221,13 @@ const ND_TABLE_MODRM_MOD gEvexMap_mmmmm_02_opcode_ab_pp_03_modrmmod = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_ab_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2991] // VFMSUB213SD Vdq{K}{z},aKq,Hdq,Wsd{er} + (const void *)&gInstructions[ 3032] // VFMSUB213SD Vdq{K}{z},aKq,Hdq,Wsd{er} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_ab_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2994] // VFMSUB213SS Vdq{K}{z},aKq,Hdq,Wss{er} + (const void *)&gInstructions[ 3035] // VFMSUB213SS Vdq{K}{z},aKq,Hdq,Wss{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_ab_pp_01_w = @@ -28813,7 +29253,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_ab_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_aa_pp_03_modrmmod_00_l_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2643] // V4FNMADDPS Voq{K}{z},aKq,Hoq+3,Mdq + (const void *)&gInstructions[ 2684] // V4FNMADDPS Voq{K}{z},aKq,Hoq+3,Mdq }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_aa_pp_03_modrmmod_00_l_02_w = @@ -28848,13 +29288,13 @@ const ND_TABLE_MODRM_MOD gEvexMap_mmmmm_02_opcode_aa_pp_03_modrmmod = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_aa_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2986] // VFMSUB213PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er} + (const void *)&gInstructions[ 3027] // VFMSUB213PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_aa_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2989] // VFMSUB213PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er} + (const void *)&gInstructions[ 3030] // VFMSUB213PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_aa_pp_01_w = @@ -28880,13 +29320,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_aa_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_a9_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2929] // VFMADD213SD Vdq{K}{z},aKq,Hdq,Wsd{er} + (const void *)&gInstructions[ 2970] // VFMADD213SD Vdq{K}{z},aKq,Hdq,Wsd{er} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_a9_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2932] // VFMADD213SS Vdq{K}{z},aKq,Hdq,Wss{er} + (const void *)&gInstructions[ 2973] // VFMADD213SS Vdq{K}{z},aKq,Hdq,Wss{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_a9_pp_01_w = @@ -28912,13 +29352,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_a9_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_a8_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2924] // VFMADD213PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er} + (const void *)&gInstructions[ 2965] // VFMADD213PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_a8_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2927] // VFMADD213PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er} + (const void *)&gInstructions[ 2968] // VFMADD213PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_a8_pp_01_w = @@ -28944,13 +29384,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_a8_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_a7_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3012] // VFMSUBADD213PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er} + (const void *)&gInstructions[ 3053] // VFMSUBADD213PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_a7_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3015] // VFMSUBADD213PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er} + (const void *)&gInstructions[ 3056] // VFMSUBADD213PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_a7_pp_01_w = @@ -28976,13 +29416,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_a7_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_a6_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2960] // VFMADDSUB213PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er} + (const void *)&gInstructions[ 3001] // VFMADDSUB213PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_a6_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2963] // VFMADDSUB213PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er} + (const void *)&gInstructions[ 3004] // VFMADDSUB213PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_a6_pp_01_w = @@ -29008,13 +29448,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_a6_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_a3_pp_01_modrmmod_00_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3986] // VSCATTERQPD Mvm64n{K},aKq,Vfv + (const void *)&gInstructions[ 4031] // VSCATTERQPD Mvm64n{K},aKq,Vfv }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_a3_pp_01_modrmmod_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3987] // VSCATTERQPS Mvm64n{K},aKq,Vhv + (const void *)&gInstructions[ 4032] // VSCATTERQPS Mvm64n{K},aKq,Vhv }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_a3_pp_01_modrmmod_00_w = @@ -29049,13 +29489,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_a3_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_a2_pp_01_modrmmod_00_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3976] // VSCATTERDPD Mvm32h{K},aKq,Vfv + (const void *)&gInstructions[ 4021] // VSCATTERDPD Mvm32h{K},aKq,Vfv }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_a2_pp_01_modrmmod_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3977] // VSCATTERDPS Mvm32n{K},aKq,Vfv + (const void *)&gInstructions[ 4022] // VSCATTERDPS Mvm32n{K},aKq,Vfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_a2_pp_01_modrmmod_00_w = @@ -29090,13 +29530,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_a2_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_a1_pp_01_modrmmod_00_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3782] // VPSCATTERQQ Mvm64n{K},aKq,Vfv + (const void *)&gInstructions[ 3827] // VPSCATTERQQ Mvm64n{K},aKq,Vfv }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_a1_pp_01_modrmmod_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3781] // VPSCATTERQD Mvm64n{K},aKq,Vhv + (const void *)&gInstructions[ 3826] // VPSCATTERQD Mvm64n{K},aKq,Vhv }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_a1_pp_01_modrmmod_00_w = @@ -29131,13 +29571,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_a1_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_a0_pp_01_modrmmod_00_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3780] // VPSCATTERDQ Mvm32h{K},aKq,Vfv + (const void *)&gInstructions[ 3825] // VPSCATTERDQ Mvm32h{K},aKq,Vfv }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_a0_pp_01_modrmmod_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3779] // VPSCATTERDD Mvm32n{K},aKq,Vfv + (const void *)&gInstructions[ 3824] // VPSCATTERDD Mvm32n{K},aKq,Vfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_a0_pp_01_modrmmod_00_w = @@ -29172,13 +29612,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_a0_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_9f_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3083] // VFNMSUB132SD Vdq{K}{z},aKq,Hdq,Wsd{er} + (const void *)&gInstructions[ 3124] // VFNMSUB132SD Vdq{K}{z},aKq,Hdq,Wsd{er} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_9f_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3086] // VFNMSUB132SS Vdq{K}{z},aKq,Hdq,Wss{er} + (const void *)&gInstructions[ 3127] // VFNMSUB132SS Vdq{K}{z},aKq,Hdq,Wss{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_9f_pp_01_w = @@ -29204,13 +29644,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_9f_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_9e_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3078] // VFNMSUB132PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er} + (const void *)&gInstructions[ 3119] // VFNMSUB132PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_9e_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3081] // VFNMSUB132PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er} + (const void *)&gInstructions[ 3122] // VFNMSUB132PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_9e_pp_01_w = @@ -29236,13 +29676,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_9e_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_9d_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3042] // VFNMADD132SD Vdq{K}{z},aKq,Hdq,Wsd{er} + (const void *)&gInstructions[ 3083] // VFNMADD132SD Vdq{K}{z},aKq,Hdq,Wsd{er} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_9d_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3045] // VFNMADD132SS Vdq{K}{z},aKq,Hdq,Wss{er} + (const void *)&gInstructions[ 3086] // VFNMADD132SS Vdq{K}{z},aKq,Hdq,Wss{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_9d_pp_01_w = @@ -29268,13 +29708,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_9d_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_9c_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3037] // VFNMADD132PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er} + (const void *)&gInstructions[ 3078] // VFNMADD132PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_9c_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3040] // VFNMADD132PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er} + (const void *)&gInstructions[ 3081] // VFNMADD132PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_9c_pp_01_w = @@ -29300,7 +29740,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_9c_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_9b_pp_03_modrmmod_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2642] // V4FMADDSS Vdq{K}{z},aKq,Hdq+3,Mdq + (const void *)&gInstructions[ 2683] // V4FMADDSS Vdq{K}{z},aKq,Hdq+3,Mdq }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_9b_pp_03_modrmmod_00_w = @@ -29324,13 +29764,13 @@ const ND_TABLE_MODRM_MOD gEvexMap_mmmmm_02_opcode_9b_pp_03_modrmmod = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_9b_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2980] // VFMSUB132SD Vdq{K}{z},aKq,Hdq,Wsd{er} + (const void *)&gInstructions[ 3021] // VFMSUB132SD Vdq{K}{z},aKq,Hdq,Wsd{er} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_9b_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2983] // VFMSUB132SS Vdq{K}{z},aKq,Hdq,Wss{er} + (const void *)&gInstructions[ 3024] // VFMSUB132SS Vdq{K}{z},aKq,Hdq,Wss{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_9b_pp_01_w = @@ -29356,7 +29796,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_9b_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_9a_pp_03_modrmmod_00_l_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2641] // V4FMADDPS Voq{K}{z},aKq,Hoq+3,Mdq + (const void *)&gInstructions[ 2682] // V4FMADDPS Voq{K}{z},aKq,Hoq+3,Mdq }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_9a_pp_03_modrmmod_00_l_02_w = @@ -29391,13 +29831,13 @@ const ND_TABLE_MODRM_MOD gEvexMap_mmmmm_02_opcode_9a_pp_03_modrmmod = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_9a_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2975] // VFMSUB132PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er} + (const void *)&gInstructions[ 3016] // VFMSUB132PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_9a_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2978] // VFMSUB132PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er} + (const void *)&gInstructions[ 3019] // VFMSUB132PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_9a_pp_01_w = @@ -29423,13 +29863,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_9a_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_99_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2918] // VFMADD132SD Vdq{K}{z},aKq,Hdq,Wsd{er} + (const void *)&gInstructions[ 2959] // VFMADD132SD Vdq{K}{z},aKq,Hdq,Wsd{er} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_99_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2921] // VFMADD132SS Vdq{K}{z},aKq,Hdq,Wss{er} + (const void *)&gInstructions[ 2962] // VFMADD132SS Vdq{K}{z},aKq,Hdq,Wss{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_99_pp_01_w = @@ -29455,13 +29895,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_99_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_98_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2913] // VFMADD132PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er} + (const void *)&gInstructions[ 2954] // VFMADD132PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_98_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2916] // VFMADD132PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er} + (const void *)&gInstructions[ 2957] // VFMADD132PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_98_pp_01_w = @@ -29487,13 +29927,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_98_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_97_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3007] // VFMSUBADD132PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er} + (const void *)&gInstructions[ 3048] // VFMSUBADD132PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_97_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3010] // VFMSUBADD132PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er} + (const void *)&gInstructions[ 3051] // VFMSUBADD132PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_97_pp_01_w = @@ -29519,13 +29959,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_97_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_96_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2955] // VFMADDSUB132PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er} + (const void *)&gInstructions[ 2996] // VFMADDSUB132PD Vfv{K}{z},aKq,Hfv,Wfv|B64{er} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_96_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2958] // VFMADDSUB132PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er} + (const void *)&gInstructions[ 2999] // VFMADDSUB132PS Vfv{K}{z},aKq,Hfv,Wfv|B32{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_96_pp_01_w = @@ -29551,13 +29991,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_96_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_93_pp_01_modrmmod_00_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3141] // VGATHERQPD Vfv{K},aKq,Mvm64n + (const void *)&gInstructions[ 3182] // VGATHERQPD Vfv{K},aKq,Mvm64n }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_93_pp_01_modrmmod_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3143] // VGATHERQPS Vhv{K},aKq,Mvm64n + (const void *)&gInstructions[ 3184] // VGATHERQPS Vhv{K},aKq,Mvm64n }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_93_pp_01_modrmmod_00_w = @@ -29592,13 +30032,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_93_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_92_pp_01_modrmmod_00_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3129] // VGATHERDPD Vfv{K},aKq,Mvm32h + (const void *)&gInstructions[ 3170] // VGATHERDPD Vfv{K},aKq,Mvm32h }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_92_pp_01_modrmmod_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3131] // VGATHERDPS Vfv{K},aKq,Mvm32n + (const void *)&gInstructions[ 3172] // VGATHERDPS Vfv{K},aKq,Mvm32n }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_92_pp_01_modrmmod_00_w = @@ -29633,13 +30073,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_92_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_91_pp_01_modrmmod_00_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3579] // VPGATHERQQ Vfv{K},aKq,Mvm64n + (const void *)&gInstructions[ 3624] // VPGATHERQQ Vfv{K},aKq,Mvm64n }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_91_pp_01_modrmmod_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3577] // VPGATHERQD Vhv{K},aKq,Mvm64n + (const void *)&gInstructions[ 3622] // VPGATHERQD Vhv{K},aKq,Mvm64n }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_91_pp_01_modrmmod_00_w = @@ -29674,13 +30114,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_91_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_90_pp_01_modrmmod_00_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3575] // VPGATHERDQ Vfv{K},aKq,Mvm32h + (const void *)&gInstructions[ 3620] // VPGATHERDQ Vfv{K},aKq,Mvm32h }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_90_pp_01_modrmmod_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3573] // VPGATHERDD Vfv{K},aKq,Mvm32n + (const void *)&gInstructions[ 3618] // VPGATHERDD Vfv{K},aKq,Mvm32n }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_90_pp_01_modrmmod_00_w = @@ -29715,7 +30155,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_90_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_8f_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3813] // VPSHUFBITQMB rK{K},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3858] // VPSHUFBITQMB rK{K},aKq,Hfv,Wfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_8f_pp_01_w = @@ -29741,13 +30181,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_8f_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_8d_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3550] // VPERMW Vfv{K}{z},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3595] // VPERMW Vfv{K}{z},aKq,Hfv,Wfv }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_8d_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3513] // VPERMB Vfv{K}{z},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3558] // VPERMB Vfv{K}{z},aKq,Hfv,Wfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_8d_pp_01_w = @@ -29773,13 +30213,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_8d_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_8b_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3469] // VPCOMPRESSQ Wfv{K}{z},aKq,Vfv + (const void *)&gInstructions[ 3514] // VPCOMPRESSQ Wfv{K}{z},aKq,Vfv }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_8b_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3468] // VPCOMPRESSD Wfv{K}{z},aKq,Vfv + (const void *)&gInstructions[ 3513] // VPCOMPRESSD Wfv{K}{z},aKq,Vfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_8b_pp_01_w = @@ -29805,13 +30245,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_8b_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_8a_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2718] // VCOMPRESSPD Wfv{K}{z},aKq,Vfv + (const void *)&gInstructions[ 2759] // VCOMPRESSPD Wfv{K}{z},aKq,Vfv }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_8a_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2719] // VCOMPRESSPS Wfv{K}{z},aKq,Vfv + (const void *)&gInstructions[ 2760] // VCOMPRESSPS Wfv{K}{z},aKq,Vfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_8a_pp_01_w = @@ -29837,13 +30277,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_8a_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_89_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3553] // VPEXPANDQ Vfv{K}{z},aKq,Wfv + (const void *)&gInstructions[ 3598] // VPEXPANDQ Vfv{K}{z},aKq,Wfv }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_89_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3552] // VPEXPANDD Vfv{K}{z},aKq,Wfv + (const void *)&gInstructions[ 3597] // VPEXPANDD Vfv{K}{z},aKq,Wfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_89_pp_01_w = @@ -29869,13 +30309,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_89_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_88_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2888] // VEXPANDPD Vfv{K}{z},aKq,Wfv + (const void *)&gInstructions[ 2929] // VEXPANDPD Vfv{K}{z},aKq,Wfv }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_88_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2889] // VEXPANDPS Vfv{K}{z},aKq,Wfv + (const void *)&gInstructions[ 2930] // VEXPANDPS Vfv{K}{z},aKq,Wfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_88_pp_01_w = @@ -29901,7 +30341,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_88_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_83_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3745] // VPMULTISHIFTQB Vfv{K}{z},aKq,Hfv,Wfv|B64 + (const void *)&gInstructions[ 3790] // VPMULTISHIFTQB Vfv{K}{z},aKq,Hfv,Wfv|B64 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_83_pp_01_w = @@ -29927,13 +30367,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_83_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_7f_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3546] // VPERMT2PD Vfv{K}{z},aKq,Hfv,Wfv|B64 + (const void *)&gInstructions[ 3591] // VPERMT2PD Vfv{K}{z},aKq,Hfv,Wfv|B64 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_7f_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3547] // VPERMT2PS Vfv{K}{z},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 3592] // VPERMT2PS Vfv{K}{z},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_7f_pp_01_w = @@ -29959,13 +30399,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_7f_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_7e_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3548] // VPERMT2Q Vfv{K}{z},aKq,Hfv,Wfv|B64 + (const void *)&gInstructions[ 3593] // VPERMT2Q Vfv{K}{z},aKq,Hfv,Wfv|B64 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_7e_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3545] // VPERMT2D Vfv{K}{z},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 3590] // VPERMT2D Vfv{K}{z},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_7e_pp_01_w = @@ -29991,13 +30431,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_7e_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_7d_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3549] // VPERMT2W Vfv{K}{z},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3594] // VPERMT2W Vfv{K}{z},aKq,Hfv,Wfv }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_7d_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3544] // VPERMT2B Vfv{K}{z},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3589] // VPERMT2B Vfv{K}{z},aKq,Hfv,Wfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_7d_pp_01_w = @@ -30023,13 +30463,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_7d_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_7c_pp_01_modrmmod_01_wi_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3428] // VPBROADCASTQ Vfv{K}{z},aKq,Rq + (const void *)&gInstructions[ 3473] // VPBROADCASTQ Vfv{K}{z},aKq,Rq }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_7c_pp_01_modrmmod_01_wi_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3423] // VPBROADCASTD Vfv{K}{z},aKq,Rd + (const void *)&gInstructions[ 3468] // VPBROADCASTD Vfv{K}{z},aKq,Rd }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_7c_pp_01_modrmmod_01_wi = @@ -30064,7 +30504,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_7c_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_7b_pp_01_modrmmod_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3431] // VPBROADCASTW Vfv{K}{z},aKq,Rw + (const void *)&gInstructions[ 3476] // VPBROADCASTW Vfv{K}{z},aKq,Rw }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_7b_pp_01_modrmmod_01_w = @@ -30099,7 +30539,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_7b_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_7a_pp_01_modrmmod_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3420] // VPBROADCASTB Vfv{K}{z},aKq,Rb + (const void *)&gInstructions[ 3465] // VPBROADCASTB Vfv{K}{z},aKq,Rb }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_7a_pp_01_modrmmod_01_w = @@ -30134,7 +30574,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_7a_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_79_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3430] // VPBROADCASTW Vfv{K}{z},aKq,Ww + (const void *)&gInstructions[ 3475] // VPBROADCASTW Vfv{K}{z},aKq,Ww }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_79_pp_01_w = @@ -30160,7 +30600,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_79_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_78_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3419] // VPBROADCASTB Vfv{K}{z},aKq,Wb + (const void *)&gInstructions[ 3464] // VPBROADCASTB Vfv{K}{z},aKq,Wb }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_78_pp_01_w = @@ -30186,13 +30626,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_78_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_77_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3518] // VPERMI2PD Vfv{K}{z},aKq,Hfv,Wfv|B64 + (const void *)&gInstructions[ 3563] // VPERMI2PD Vfv{K}{z},aKq,Hfv,Wfv|B64 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_77_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3519] // VPERMI2PS Vfv{K}{z},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 3564] // VPERMI2PS Vfv{K}{z},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_77_pp_01_w = @@ -30218,13 +30658,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_77_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_76_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3520] // VPERMI2Q Vfv{K}{z},aKq,Hfv,Wfv|B64 + (const void *)&gInstructions[ 3565] // VPERMI2Q Vfv{K}{z},aKq,Hfv,Wfv|B64 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_76_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3517] // VPERMI2D Vfv{K}{z},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 3562] // VPERMI2D Vfv{K}{z},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_76_pp_01_w = @@ -30250,13 +30690,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_76_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_75_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3521] // VPERMI2W Vfv{K}{z},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3566] // VPERMI2W Vfv{K}{z},aKq,Hfv,Wfv }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_75_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3516] // VPERMI2B Vfv{K}{z},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3561] // VPERMI2B Vfv{K}{z},aKq,Hfv,Wfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_75_pp_01_w = @@ -30279,10 +30719,40 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_75_pp = } }; +const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_74_pp_03_w_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 2777] // VCVTNE2PH2BF8 Vfv{K}{z},aKq,Hfv,Wfv|B16 +}; + +const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_74_pp_03_w = +{ + ND_ILUT_EX_W, + { + /* 00 */ (const void *)&gEvexMap_mmmmm_02_opcode_74_pp_03_w_00_leaf, + /* 01 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_74_pp_02_w_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 2788] // VCVTNEPH2BF8 Vhv{K}{z},aKq,Wfv|B16 +}; + +const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_74_pp_02_w = +{ + ND_ILUT_EX_W, + { + /* 00 */ (const void *)&gEvexMap_mmmmm_02_opcode_74_pp_02_w_00_leaf, + /* 01 */ (const void *)ND_NULL, + } +}; + const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_74_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2725] // VCVTBIASPH2BF8 Vhv{K}{z},aKq,Hfv,Wfv|B16 + (const void *)&gInstructions[ 2766] // VCVTBIASPH2BF8 Vhv{K}{z},aKq,Hfv,Wfv|B16 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_74_pp_00_w = @@ -30300,21 +30770,21 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_74_pp = { /* 00 */ (const void *)&gEvexMap_mmmmm_02_opcode_74_pp_00_w, /* 01 */ (const void *)ND_NULL, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)ND_NULL, + /* 02 */ (const void *)&gEvexMap_mmmmm_02_opcode_74_pp_02_w, + /* 03 */ (const void *)&gEvexMap_mmmmm_02_opcode_74_pp_03_w, } }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_73_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3808] // VPSHRDVQ Vfv{K}{z},aKq,Hfv,Wfv|B64 + (const void *)&gInstructions[ 3853] // VPSHRDVQ Vfv{K}{z},aKq,Hfv,Wfv|B64 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_73_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3807] // VPSHRDVD Vfv{K}{z},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 3852] // VPSHRDVD Vfv{K}{z},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_73_pp_01_w = @@ -30340,7 +30810,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_73_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_72_pp_03_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2740] // VCVTNE2PS2BF16 Vfv{K}{z},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 2781] // VCVTNE2PS2BF16 Vfv{K}{z},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_72_pp_03_w = @@ -30355,7 +30825,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_72_pp_03_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_72_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2751] // VCVTNEPS2BF16 Vhv{K}{z},aKq,Wfv|B32 + (const void *)&gInstructions[ 2792] // VCVTNEPS2BF16 Vhv{K}{z},aKq,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_72_pp_02_w = @@ -30370,7 +30840,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_72_pp_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_72_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3809] // VPSHRDVW Vfv{K}{z},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3854] // VPSHRDVW Vfv{K}{z},aKq,Hfv,Wfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_72_pp_01_w = @@ -30396,13 +30866,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_72_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_71_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3799] // VPSHLDVQ Vfv{K}{z},aKq,Hfv,Wfv|B64 + (const void *)&gInstructions[ 3844] // VPSHLDVQ Vfv{K}{z},aKq,Hfv,Wfv|B64 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_71_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3798] // VPSHLDVD Vfv{K}{z},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 3843] // VPSHLDVD Vfv{K}{z},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_71_pp_01_w = @@ -30428,7 +30898,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_71_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_70_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3800] // VPSHLDVW Vfv{K}{z},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3845] // VPSHLDVW Vfv{K}{z},aKq,Hfv,Wfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_70_pp_01_w = @@ -30451,16 +30921,167 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_70_pp = } }; +const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_6d_pp_03_modrmmod_01_l_02_w_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 2607] // TCVTROWPS2PBF16H Voq,mTt,Bd +}; + +const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_6d_pp_03_modrmmod_01_l_02_w = +{ + ND_ILUT_EX_W, + { + /* 00 */ (const void *)&gEvexMap_mmmmm_02_opcode_6d_pp_03_modrmmod_01_l_02_w_00_leaf, + /* 01 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_L gEvexMap_mmmmm_02_opcode_6d_pp_03_modrmmod_01_l = +{ + ND_ILUT_EX_L, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)&gEvexMap_mmmmm_02_opcode_6d_pp_03_modrmmod_01_l_02_w, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_MODRM_MOD gEvexMap_mmmmm_02_opcode_6d_pp_03_modrmmod = +{ + ND_ILUT_MODRM_MOD, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gEvexMap_mmmmm_02_opcode_6d_pp_03_modrmmod_01_l, + } +}; + +const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_6d_pp_02_modrmmod_01_l_02_w_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 2609] // TCVTROWPS2PBF16L Voq,mTt,Bd +}; + +const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_6d_pp_02_modrmmod_01_l_02_w = +{ + ND_ILUT_EX_W, + { + /* 00 */ (const void *)&gEvexMap_mmmmm_02_opcode_6d_pp_02_modrmmod_01_l_02_w_00_leaf, + /* 01 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_L gEvexMap_mmmmm_02_opcode_6d_pp_02_modrmmod_01_l = +{ + ND_ILUT_EX_L, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)&gEvexMap_mmmmm_02_opcode_6d_pp_02_modrmmod_01_l_02_w, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_MODRM_MOD gEvexMap_mmmmm_02_opcode_6d_pp_02_modrmmod = +{ + ND_ILUT_MODRM_MOD, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gEvexMap_mmmmm_02_opcode_6d_pp_02_modrmmod_01_l, + } +}; + +const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_6d_pp_01_modrmmod_01_l_02_w_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 2613] // TCVTROWPS2PHL Voq,mTt,Bd +}; + +const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_6d_pp_01_modrmmod_01_l_02_w = +{ + ND_ILUT_EX_W, + { + /* 00 */ (const void *)&gEvexMap_mmmmm_02_opcode_6d_pp_01_modrmmod_01_l_02_w_00_leaf, + /* 01 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_L gEvexMap_mmmmm_02_opcode_6d_pp_01_modrmmod_01_l = +{ + ND_ILUT_EX_L, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)&gEvexMap_mmmmm_02_opcode_6d_pp_01_modrmmod_01_l_02_w, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_MODRM_MOD gEvexMap_mmmmm_02_opcode_6d_pp_01_modrmmod = +{ + ND_ILUT_MODRM_MOD, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gEvexMap_mmmmm_02_opcode_6d_pp_01_modrmmod_01_l, + } +}; + +const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_6d_pp_00_modrmmod_01_l_02_w_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 2611] // TCVTROWPS2PHH Voq,mTt,Bd +}; + +const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_6d_pp_00_modrmmod_01_l_02_w = +{ + ND_ILUT_EX_W, + { + /* 00 */ (const void *)&gEvexMap_mmmmm_02_opcode_6d_pp_00_modrmmod_01_l_02_w_00_leaf, + /* 01 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_L gEvexMap_mmmmm_02_opcode_6d_pp_00_modrmmod_01_l = +{ + ND_ILUT_EX_L, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)&gEvexMap_mmmmm_02_opcode_6d_pp_00_modrmmod_01_l_02_w, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_MODRM_MOD gEvexMap_mmmmm_02_opcode_6d_pp_00_modrmmod = +{ + ND_ILUT_MODRM_MOD, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gEvexMap_mmmmm_02_opcode_6d_pp_00_modrmmod_01_l, + } +}; + +const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_6d_pp = +{ + ND_ILUT_EX_PP, + { + /* 00 */ (const void *)&gEvexMap_mmmmm_02_opcode_6d_pp_00_modrmmod, + /* 01 */ (const void *)&gEvexMap_mmmmm_02_opcode_6d_pp_01_modrmmod, + /* 02 */ (const void *)&gEvexMap_mmmmm_02_opcode_6d_pp_02_modrmmod, + /* 03 */ (const void *)&gEvexMap_mmmmm_02_opcode_6d_pp_03_modrmmod, + } +}; + const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_68_pp_03_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3366] // VP2INTERSECTQ rKq+1,Hfv,Wfv|B64 + (const void *)&gInstructions[ 3411] // VP2INTERSECTQ rKq+1,Hfv,Wfv|B64 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_68_pp_03_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3365] // VP2INTERSECTD rKq+1,Hfv,Wfv|B32 + (const void *)&gInstructions[ 3410] // VP2INTERSECTD rKq+1,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_68_pp_03_w = @@ -30486,7 +31107,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_68_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_67_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2724] // VCVT2PS2PHX Vfv{K}{z},aKq,Hfv,Wfv|B32{er} + (const void *)&gInstructions[ 2765] // VCVT2PS2PHX Vfv{K}{z},aKq,Hfv,Wfv|B32{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_67_pp_01_w = @@ -30512,13 +31133,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_67_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_66_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3416] // VPBLENDMW Vfv{K}{z},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3461] // VPBLENDMW Vfv{K}{z},aKq,Hfv,Wfv }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_66_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3413] // VPBLENDMB Vfv{K}{z},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3458] // VPBLENDMB Vfv{K}{z},aKq,Hfv,Wfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_66_pp_01_w = @@ -30544,13 +31165,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_66_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_65_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2680] // VBLENDMPD Vfv{K}{z},aKq,Hfv,Wfv|B64 + (const void *)&gInstructions[ 2721] // VBLENDMPD Vfv{K}{z},aKq,Hfv,Wfv|B64 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_65_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2681] // VBLENDMPS Vfv{K}{z},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 2722] // VBLENDMPS Vfv{K}{z},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_65_pp_01_w = @@ -30576,13 +31197,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_65_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_64_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3415] // VPBLENDMQ Vfv{K}{z},aKq,Hfv,Wfv|B64 + (const void *)&gInstructions[ 3460] // VPBLENDMQ Vfv{K}{z},aKq,Hfv,Wfv|B64 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_64_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3414] // VPBLENDMD Vfv{K}{z},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 3459] // VPBLENDMD Vfv{K}{z},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_64_pp_01_w = @@ -30608,13 +31229,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_64_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_63_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3470] // VPCOMPRESSW Wfv{K}{z},aKq,Vfv + (const void *)&gInstructions[ 3515] // VPCOMPRESSW Wfv{K}{z},aKq,Vfv }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_63_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3467] // VPCOMPRESSB Wfv{K}{z},aKq,Vfv + (const void *)&gInstructions[ 3512] // VPCOMPRESSB Wfv{K}{z},aKq,Vfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_63_pp_01_w = @@ -30640,13 +31261,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_63_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_62_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3554] // VPEXPANDW Vfv{K}{z},aKq,Wfv + (const void *)&gInstructions[ 3599] // VPEXPANDW Vfv{K}{z},aKq,Wfv }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_62_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3551] // VPEXPANDB Vfv{K}{z},aKq,Wfv + (const void *)&gInstructions[ 3596] // VPEXPANDB Vfv{K}{z},aKq,Wfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_62_pp_01_w = @@ -30672,13 +31293,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_62_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_5b_pp_01_modrmmod_00_l_02_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2697] // VBROADCASTI64X4 Voq{K}{z},aKq,Mqq + (const void *)&gInstructions[ 2738] // VBROADCASTI64X4 Voq{K}{z},aKq,Mqq }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_5b_pp_01_modrmmod_00_l_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2695] // VBROADCASTI32X8 Voq{K}{z},aKq,Mqq + (const void *)&gInstructions[ 2736] // VBROADCASTI32X8 Voq{K}{z},aKq,Mqq }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_5b_pp_01_modrmmod_00_l_02_w = @@ -30724,13 +31345,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_5b_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_5a_pp_01_modrmmod_00_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2696] // VBROADCASTI64X2 Vuv{K}{z},aKq,Mdq + (const void *)&gInstructions[ 2737] // VBROADCASTI64X2 Vuv{K}{z},aKq,Mdq }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_5a_pp_01_modrmmod_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2694] // VBROADCASTI32X4 Vuv{K}{z},aKq,Mdq + (const void *)&gInstructions[ 2735] // VBROADCASTI32X4 Vuv{K}{z},aKq,Mdq }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_5a_pp_01_modrmmod_00_w = @@ -30765,13 +31386,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_5a_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_59_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3427] // VPBROADCASTQ Vfv{K}{z},aKq,Wq + (const void *)&gInstructions[ 3472] // VPBROADCASTQ Vfv{K}{z},aKq,Wq }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_59_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2693] // VBROADCASTI32X2 Vfv{K}{z},aKq,Wq + (const void *)&gInstructions[ 2734] // VBROADCASTI32X2 Vfv{K}{z},aKq,Wq }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_59_pp_01_w = @@ -30797,7 +31418,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_59_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_58_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3422] // VPBROADCASTD Vfv{K}{z},aKq,Wd + (const void *)&gInstructions[ 3467] // VPBROADCASTD Vfv{K}{z},aKq,Wd }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_58_pp_01_w = @@ -30823,13 +31444,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_58_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_55_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3750] // VPOPCNTQ Vfv{K}{z},aKq,Wfv|B64 + (const void *)&gInstructions[ 3795] // VPOPCNTQ Vfv{K}{z},aKq,Wfv|B64 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_55_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3749] // VPOPCNTD Vfv{K}{z},aKq,Wfv|B32 + (const void *)&gInstructions[ 3794] // VPOPCNTD Vfv{K}{z},aKq,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_55_pp_01_w = @@ -30855,13 +31476,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_55_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_54_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3751] // VPOPCNTW Vfv{K}{z},aKq,Wfv + (const void *)&gInstructions[ 3796] // VPOPCNTW Vfv{K}{z},aKq,Wfv }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_54_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3748] // VPOPCNTB Vfv{K}{z},aKq,Wfv + (const void *)&gInstructions[ 3793] // VPOPCNTB Vfv{K}{z},aKq,Wfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_54_pp_01_w = @@ -30887,7 +31508,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_54_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_53_pp_03_modrmmod_00_l_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3368] // VP4DPWSSDS Voq{K}{z},aKq,Hoq+3,Mdq + (const void *)&gInstructions[ 3413] // VP4DPWSSDS Voq{K}{z},aKq,Hoq+3,Mdq }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_53_pp_03_modrmmod_00_l_02_w = @@ -30922,7 +31543,7 @@ const ND_TABLE_MODRM_MOD gEvexMap_mmmmm_02_opcode_53_pp_03_modrmmod = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_53_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3497] // VPDPWSSDS Vfv{K}{z},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 3542] // VPDPWSSDS Vfv{K}{z},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_53_pp_01_w = @@ -30948,7 +31569,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_53_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_52_pp_03_modrmmod_00_l_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3367] // VP4DPWSSD Voq{K}{z},aKq,Hoq+3,Mdq + (const void *)&gInstructions[ 3412] // VP4DPWSSD Voq{K}{z},aKq,Hoq+3,Mdq }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_52_pp_03_modrmmod_00_l_02_w = @@ -30983,7 +31604,7 @@ const ND_TABLE_MODRM_MOD gEvexMap_mmmmm_02_opcode_52_pp_03_modrmmod = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_52_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2880] // VDPBF16PS Vfv{K}{z},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 2921] // VDPBF16PS Vfv{K}{z},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_52_pp_02_w = @@ -30998,7 +31619,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_52_pp_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_52_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3495] // VPDPWSSD Vfv{K}{z},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 3540] // VPDPWSSD Vfv{K}{z},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_52_pp_01_w = @@ -31013,7 +31634,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_52_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_52_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2882] // VDPPHPS Vfv{K}{z},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 2923] // VDPPHPS Vfv{K}{z},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_52_pp_00_w = @@ -31039,7 +31660,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_52_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_51_pp_03_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3481] // VPDPBSSDS Vfv{K}{z},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 3526] // VPDPBSSDS Vfv{K}{z},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_51_pp_03_w = @@ -31054,7 +31675,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_51_pp_03_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_51_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3485] // VPDPBSUDS Vfv{K}{z},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 3530] // VPDPBSUDS Vfv{K}{z},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_51_pp_02_w = @@ -31069,7 +31690,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_51_pp_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_51_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3489] // VPDPBUSDS Vfv{K}{z},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 3534] // VPDPBUSDS Vfv{K}{z},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_51_pp_01_w = @@ -31084,7 +31705,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_51_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_51_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3493] // VPDPBUUDS Vfv{K}{z},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 3538] // VPDPBUUDS Vfv{K}{z},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_51_pp_00_w = @@ -31110,7 +31731,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_51_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_50_pp_03_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3479] // VPDPBSSD Vfv{K}{z},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 3524] // VPDPBSSD Vfv{K}{z},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_50_pp_03_w = @@ -31125,7 +31746,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_50_pp_03_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_50_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3483] // VPDPBSUD Vfv{K}{z},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 3528] // VPDPBSUD Vfv{K}{z},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_50_pp_02_w = @@ -31140,7 +31761,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_50_pp_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_50_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3487] // VPDPBUSD Vfv{K}{z},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 3532] // VPDPBUSD Vfv{K}{z},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_50_pp_01_w = @@ -31155,7 +31776,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_50_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_50_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3491] // VPDPBUUD Vfv{K}{z},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 3536] // VPDPBUUD Vfv{K}{z},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_50_pp_00_w = @@ -31181,13 +31802,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_50_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_4f_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3958] // VRSQRT14SD Vdq{K}{z},aKq,Hdq,Wsd + (const void *)&gInstructions[ 4003] // VRSQRT14SD Vdq{K}{z},aKq,Hdq,Wsd }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_4f_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3959] // VRSQRT14SS Vdq{K}{z},aKq,Hdq,Wss + (const void *)&gInstructions[ 4004] // VRSQRT14SS Vdq{K}{z},aKq,Hdq,Wss }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_4f_pp_01_w = @@ -31213,13 +31834,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_4f_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_4e_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3956] // VRSQRT14PD Vfv{K}{z},aKq,Wfv|B64 + (const void *)&gInstructions[ 4001] // VRSQRT14PD Vfv{K}{z},aKq,Wfv|B64 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_4e_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3957] // VRSQRT14PS Vfv{K}{z},aKq,Wfv|B32 + (const void *)&gInstructions[ 4002] // VRSQRT14PS Vfv{K}{z},aKq,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_4e_pp_01_w = @@ -31245,13 +31866,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_4e_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_4d_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3927] // VRCP14SD Vdq{K}{z},aKq,Hdq,Wsd + (const void *)&gInstructions[ 3972] // VRCP14SD Vdq{K}{z},aKq,Hdq,Wsd }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_4d_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3928] // VRCP14SS Vdq{K}{z},aKq,Hdq,Wss + (const void *)&gInstructions[ 3973] // VRCP14SS Vdq{K}{z},aKq,Hdq,Wss }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_4d_pp_01_w = @@ -31277,13 +31898,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_4d_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_4c_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3925] // VRCP14PD Vfv{K}{z},aKq,Wfv|B64 + (const void *)&gInstructions[ 3970] // VRCP14PD Vfv{K}{z},aKq,Wfv|B64 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_4c_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3926] // VRCP14PS Vfv{K}{z},aKq,Wfv|B32 + (const void *)&gInstructions[ 3971] // VRCP14PS Vfv{K}{z},aKq,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_4c_pp_01_w = @@ -31309,7 +31930,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_4c_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_4b_pp_03_modrmmod_00_modrmrm_04_l_00_w_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2605] // TILELOADD rTt,Mt + (const void *)&gInstructions[ 2635] // TILELOADD rTt,Mt }; const ND_TABLE_EX_NF gEvexMap_mmmmm_02_opcode_4b_pp_03_modrmmod_00_modrmrm_04_l_00_w_00_nf = @@ -31368,7 +31989,7 @@ const ND_TABLE_MODRM_MOD gEvexMap_mmmmm_02_opcode_4b_pp_03_modrmmod = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_4b_pp_02_modrmmod_00_modrmrm_04_l_00_w_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2610] // TILESTORED Mt,rTt + (const void *)&gInstructions[ 2644] // TILESTORED Mt,rTt }; const ND_TABLE_EX_NF gEvexMap_mmmmm_02_opcode_4b_pp_02_modrmmod_00_modrmrm_04_l_00_w_00_nf = @@ -31427,7 +32048,7 @@ const ND_TABLE_MODRM_MOD gEvexMap_mmmmm_02_opcode_4b_pp_02_modrmmod = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_4b_pp_01_modrmmod_00_modrmrm_04_l_00_w_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2607] // TILELOADDT1 rTt,Mt + (const void *)&gInstructions[ 2639] // TILELOADDT1 rTt,Mt }; const ND_TABLE_EX_NF gEvexMap_mmmmm_02_opcode_4b_pp_01_modrmmod_00_modrmrm_04_l_00_w_00_nf = @@ -31494,10 +32115,91 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_4b_pp = } }; +const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_4a_pp_02_modrmmod_01_l_02_w_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 2605] // TCVTROWD2PS Voq,mTt,Bd +}; + +const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_4a_pp_02_modrmmod_01_l_02_w = +{ + ND_ILUT_EX_W, + { + /* 00 */ (const void *)&gEvexMap_mmmmm_02_opcode_4a_pp_02_modrmmod_01_l_02_w_00_leaf, + /* 01 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_L gEvexMap_mmmmm_02_opcode_4a_pp_02_modrmmod_01_l = +{ + ND_ILUT_EX_L, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)&gEvexMap_mmmmm_02_opcode_4a_pp_02_modrmmod_01_l_02_w, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_MODRM_MOD gEvexMap_mmmmm_02_opcode_4a_pp_02_modrmmod = +{ + ND_ILUT_MODRM_MOD, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gEvexMap_mmmmm_02_opcode_4a_pp_02_modrmmod_01_l, + } +}; + +const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_4a_pp_01_modrmmod_01_l_02_w_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 2641] // TILEMOVROW Voq,mTt,Bd +}; + +const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_4a_pp_01_modrmmod_01_l_02_w = +{ + ND_ILUT_EX_W, + { + /* 00 */ (const void *)&gEvexMap_mmmmm_02_opcode_4a_pp_01_modrmmod_01_l_02_w_00_leaf, + /* 01 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_L gEvexMap_mmmmm_02_opcode_4a_pp_01_modrmmod_01_l = +{ + ND_ILUT_EX_L, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)&gEvexMap_mmmmm_02_opcode_4a_pp_01_modrmmod_01_l_02_w, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_MODRM_MOD gEvexMap_mmmmm_02_opcode_4a_pp_01_modrmmod = +{ + ND_ILUT_MODRM_MOD, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gEvexMap_mmmmm_02_opcode_4a_pp_01_modrmmod_01_l, + } +}; + +const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_4a_pp = +{ + ND_ILUT_EX_PP, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gEvexMap_mmmmm_02_opcode_4a_pp_01_modrmmod, + /* 02 */ (const void *)&gEvexMap_mmmmm_02_opcode_4a_pp_02_modrmmod, + /* 03 */ (const void *)ND_NULL, + } +}; + const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_49_pp_01_modrmreg_00_modrmmod_00_l_00_w_00_nf_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2520] // STTILECFG Moq + (const void *)&gInstructions[ 2526] // STTILECFG Moq }; const ND_TABLE_EX_NF gEvexMap_mmmmm_02_opcode_49_pp_01_modrmreg_00_modrmmod_00_l_00_w_00_nf = @@ -31626,13 +32328,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_49_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_47_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3835] // VPSLLVQ Vfv{K}{z},aKq,Hfv,Wfv|B64 + (const void *)&gInstructions[ 3880] // VPSLLVQ Vfv{K}{z},aKq,Hfv,Wfv|B64 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_47_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3833] // VPSLLVD Vfv{K}{z},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 3878] // VPSLLVD Vfv{K}{z},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_47_pp_01_w = @@ -31658,13 +32360,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_47_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_46_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3850] // VPSRAVQ Vfv{K}{z},aKq,Hfv,Wfv|B64 + (const void *)&gInstructions[ 3895] // VPSRAVQ Vfv{K}{z},aKq,Hfv,Wfv|B64 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_46_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3848] // VPSRAVD Vfv{K}{z},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 3893] // VPSRAVD Vfv{K}{z},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_46_pp_01_w = @@ -31690,13 +32392,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_46_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_45_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3868] // VPSRLVQ Vfv{K}{z},aKq,Hfv,Wfv|B64 + (const void *)&gInstructions[ 3913] // VPSRLVQ Vfv{K}{z},aKq,Hfv,Wfv|B64 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_45_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3866] // VPSRLVD Vfv{K}{z},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 3911] // VPSRLVD Vfv{K}{z},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_45_pp_01_w = @@ -31722,13 +32424,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_45_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_44_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3616] // VPLZCNTQ Vfv{K}{z},aKq,Wfv|B64 + (const void *)&gInstructions[ 3661] // VPLZCNTQ Vfv{K}{z},aKq,Wfv|B64 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_44_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3615] // VPLZCNTD Vfv{K}{z},aKq,Wfv|B32 + (const void *)&gInstructions[ 3660] // VPLZCNTD Vfv{K}{z},aKq,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_44_pp_01_w = @@ -31754,13 +32456,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_44_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_43_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3149] // VGETEXPSD Vdq{K}{z},aKq,Hdq,Wsd{sae} + (const void *)&gInstructions[ 3190] // VGETEXPSD Vdq{K}{z},aKq,Hdq,Wsd{sae} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_43_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3151] // VGETEXPSS Vdq{K}{z},aKq,Hdq,Wss{sae} + (const void *)&gInstructions[ 3192] // VGETEXPSS Vdq{K}{z},aKq,Hdq,Wss{sae} }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_43_pp_01_w = @@ -31786,13 +32488,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_43_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_42_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3146] // VGETEXPPD Vfv{K}{z},aKq,Wfv|B64{sae} + (const void *)&gInstructions[ 3187] // VGETEXPPD Vfv{K}{z},aKq,Wfv|B64{sae} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_42_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3148] // VGETEXPPS Vfv{K}{z},aKq,Wfv|B32{sae} + (const void *)&gInstructions[ 3189] // VGETEXPPS Vfv{K}{z},aKq,Wfv|B32{sae} }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_42_pp_01_w = @@ -31818,13 +32520,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_42_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_40_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3742] // VPMULLQ Vfv{K}{z},aKq,Hfv,Wfv|B64 + (const void *)&gInstructions[ 3787] // VPMULLQ Vfv{K}{z},aKq,Hfv,Wfv|B64 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_40_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3740] // VPMULLD Vfv{K}{z},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 3785] // VPMULLD Vfv{K}{z},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_40_pp_01_w = @@ -31850,13 +32552,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_40_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_3f_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3652] // VPMAXUQ Vfv{K}{z},aKq,Hfv,Wfv|B64 + (const void *)&gInstructions[ 3697] // VPMAXUQ Vfv{K}{z},aKq,Hfv,Wfv|B64 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_3f_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3650] // VPMAXUD Vfv{K}{z},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 3695] // VPMAXUD Vfv{K}{z},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_3f_pp_01_w = @@ -31882,7 +32584,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_3f_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_3e_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3653] // VPMAXUW Vfv{K}{z},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3698] // VPMAXUW Vfv{K}{z},aKq,Hfv,Wfv }; const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_3e_pp = @@ -31899,13 +32601,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_3e_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_3d_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3645] // VPMAXSQ Vfv{K}{z},aKq,Hfv,Wfv|B64 + (const void *)&gInstructions[ 3690] // VPMAXSQ Vfv{K}{z},aKq,Hfv,Wfv|B64 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_3d_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3643] // VPMAXSD Vfv{K}{z},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 3688] // VPMAXSD Vfv{K}{z},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_3d_pp_01_w = @@ -31931,7 +32633,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_3d_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_3c_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3641] // VPMAXSB Vfv{K}{z},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3686] // VPMAXSB Vfv{K}{z},aKq,Hfv,Wfv }; const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_3c_pp = @@ -31948,13 +32650,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_3c_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_3b_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3666] // VPMINUQ Vfv{K}{z},aKq,Hfv,Wfv|B64 + (const void *)&gInstructions[ 3711] // VPMINUQ Vfv{K}{z},aKq,Hfv,Wfv|B64 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_3b_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3664] // VPMINUD Vfv{K}{z},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 3709] // VPMINUD Vfv{K}{z},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_3b_pp_01_w = @@ -31980,7 +32682,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_3b_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_3a_pp_02_modrmmod_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3426] // VPBROADCASTMW2D Vfv,mKq + (const void *)&gInstructions[ 3471] // VPBROADCASTMW2D Vfv,mKq }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_3a_pp_02_modrmmod_01_w = @@ -32004,7 +32706,7 @@ const ND_TABLE_MODRM_MOD gEvexMap_mmmmm_02_opcode_3a_pp_02_modrmmod = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_3a_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3667] // VPMINUW Vfv{K}{z},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3712] // VPMINUW Vfv{K}{z},aKq,Hfv,Wfv }; const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_3a_pp = @@ -32021,13 +32723,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_3a_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_39_pp_02_modrmmod_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3678] // VPMOVQ2M rKq,Ufv + (const void *)&gInstructions[ 3723] // VPMOVQ2M rKq,Ufv }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_39_pp_02_modrmmod_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3670] // VPMOVD2M rKq,Ufv + (const void *)&gInstructions[ 3715] // VPMOVD2M rKq,Ufv }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_39_pp_02_modrmmod_01_w = @@ -32051,13 +32753,13 @@ const ND_TABLE_MODRM_MOD gEvexMap_mmmmm_02_opcode_39_pp_02_modrmmod = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_39_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3659] // VPMINSQ Vfv{K}{z},aKq,Hfv,Wfv|B64 + (const void *)&gInstructions[ 3704] // VPMINSQ Vfv{K}{z},aKq,Hfv,Wfv|B64 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_39_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3657] // VPMINSD Vfv{K}{z},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 3702] // VPMINSD Vfv{K}{z},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_39_pp_01_w = @@ -32083,13 +32785,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_39_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_38_pp_02_modrmmod_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3675] // VPMOVM2Q Vfv,mKq + (const void *)&gInstructions[ 3720] // VPMOVM2Q Vfv,mKq }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_38_pp_02_modrmmod_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3674] // VPMOVM2D Vfv,mKq + (const void *)&gInstructions[ 3719] // VPMOVM2D Vfv,mKq }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_38_pp_02_modrmmod_01_w = @@ -32113,7 +32815,7 @@ const ND_TABLE_MODRM_MOD gEvexMap_mmmmm_02_opcode_38_pp_02_modrmmod = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_38_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3655] // VPMINSB Vfv{K}{z},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3700] // VPMINSB Vfv{K}{z},aKq,Hfv,Wfv }; const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_38_pp = @@ -32130,7 +32832,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_38_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_37_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3453] // VPCMPGTQ rKq{K},aKq,Hfv,Wfv|B64 + (const void *)&gInstructions[ 3498] // VPCMPGTQ rKq{K},aKq,Hfv,Wfv|B64 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_37_pp_01_w = @@ -32156,13 +32858,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_37_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_36_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3541] // VPERMQ Vuv{K}{z},aKq,Huv,Wuv|B64 + (const void *)&gInstructions[ 3586] // VPERMQ Vuv{K}{z},aKq,Huv,Wuv|B64 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_36_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3514] // VPERMD Vuv{K}{z},aKq,Huv,Wuv|B32 + (const void *)&gInstructions[ 3559] // VPERMD Vuv{K}{z},aKq,Huv,Wuv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_36_pp_01_w = @@ -32188,7 +32890,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_36_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_35_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3680] // VPMOVQD Whv{K}{z},aKq,Vfv + (const void *)&gInstructions[ 3725] // VPMOVQD Whv{K}{z},aKq,Vfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_35_pp_02_w = @@ -32203,7 +32905,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_35_pp_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_35_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3723] // VPMOVZXDQ Vfv{K}{z},aKq,Whv + (const void *)&gInstructions[ 3768] // VPMOVZXDQ Vfv{K}{z},aKq,Whv }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_35_pp_01_w = @@ -32229,7 +32931,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_35_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_34_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3681] // VPMOVQW Wqv{K}{z},aKq,Vfv + (const void *)&gInstructions[ 3726] // VPMOVQW Wqv{K}{z},aKq,Vfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_34_pp_02_w = @@ -32244,7 +32946,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_34_pp_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_34_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3729] // VPMOVZXWQ Vfv{K}{z},aKq,Wqv + (const void *)&gInstructions[ 3774] // VPMOVZXWQ Vfv{K}{z},aKq,Wqv }; const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_34_pp = @@ -32261,7 +32963,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_34_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_33_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3672] // VPMOVDW Whv{K}{z},aKq,Vfv + (const void *)&gInstructions[ 3717] // VPMOVDW Whv{K}{z},aKq,Vfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_33_pp_02_w = @@ -32276,7 +32978,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_33_pp_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_33_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3726] // VPMOVZXWD Vfv{K}{z},aKq,Whv + (const void *)&gInstructions[ 3771] // VPMOVZXWD Vfv{K}{z},aKq,Whv }; const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_33_pp = @@ -32293,7 +32995,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_33_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_32_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3679] // VPMOVQB Wev{K}{z},aKq,Vfv + (const void *)&gInstructions[ 3724] // VPMOVQB Wev{K}{z},aKq,Vfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_32_pp_02_w = @@ -32308,7 +33010,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_32_pp_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_32_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3717] // VPMOVZXBQ Vfv{K}{z},aKq,Wev + (const void *)&gInstructions[ 3762] // VPMOVZXBQ Vfv{K}{z},aKq,Wev }; const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_32_pp = @@ -32325,7 +33027,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_32_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_31_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3671] // VPMOVDB Wqv{K}{z},aKq,Vfv + (const void *)&gInstructions[ 3716] // VPMOVDB Wqv{K}{z},aKq,Vfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_31_pp_02_w = @@ -32340,7 +33042,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_31_pp_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_31_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3714] // VPMOVZXBD Vfv{K}{z},aKq,Wqv + (const void *)&gInstructions[ 3759] // VPMOVZXBD Vfv{K}{z},aKq,Wqv }; const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_31_pp = @@ -32357,7 +33059,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_31_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_30_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3713] // VPMOVWB Whv{K}{z},aKq,Vfv + (const void *)&gInstructions[ 3758] // VPMOVWB Whv{K}{z},aKq,Vfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_30_pp_02_w = @@ -32372,7 +33074,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_30_pp_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_30_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3720] // VPMOVZXBW Vfv{K}{z},aKq,Whv + (const void *)&gInstructions[ 3765] // VPMOVZXBW Vfv{K}{z},aKq,Whv }; const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_30_pp = @@ -32389,13 +33091,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_30_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_2d_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3973] // VSCALEFSD Vsd{K}{z},aKq,Hsd,Wsd{er} + (const void *)&gInstructions[ 4018] // VSCALEFSD Vsd{K}{z},aKq,Hsd,Wsd{er} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_2d_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3975] // VSCALEFSS Vss{K}{z},aKq,Hss,Wss{er} + (const void *)&gInstructions[ 4020] // VSCALEFSS Vss{K}{z},aKq,Hss,Wss{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_2d_pp_01_w = @@ -32421,13 +33123,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_2d_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_2c_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3970] // VSCALEFPD Vfv{K}{z},aKq,Hfv,Wfv|B64{er} + (const void *)&gInstructions[ 4015] // VSCALEFPD Vfv{K}{z},aKq,Hfv,Wfv|B64{er} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_2c_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3972] // VSCALEFPS Vfv{K}{z},aKq,Hfv,Wfv|B32{er} + (const void *)&gInstructions[ 4017] // VSCALEFPS Vfv{K}{z},aKq,Hfv,Wfv|B32{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_2c_pp_01_w = @@ -32453,7 +33155,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_2c_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_2b_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3380] // VPACKUSDW Vfv{K}{z},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 3425] // VPACKUSDW Vfv{K}{z},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_2b_pp_01_w = @@ -32479,7 +33181,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_2b_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_2a_pp_02_modrmmod_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3425] // VPBROADCASTMB2Q Vfv,mKq + (const void *)&gInstructions[ 3470] // VPBROADCASTMB2Q Vfv,mKq }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_2a_pp_02_modrmmod_01_w = @@ -32503,7 +33205,7 @@ const ND_TABLE_MODRM_MOD gEvexMap_mmmmm_02_opcode_2a_pp_02_modrmmod = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_2a_pp_01_modrmmod_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3287] // VMOVNTDQA Vfv,Mfv + (const void *)&gInstructions[ 3328] // VMOVNTDQA Vfv,Mfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_2a_pp_01_modrmmod_00_w = @@ -32538,13 +33240,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_2a_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_29_pp_02_modrmmod_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3712] // VPMOVW2M rKq,Ufv + (const void *)&gInstructions[ 3757] // VPMOVW2M rKq,Ufv }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_29_pp_02_modrmmod_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3669] // VPMOVB2M rKq,Ufv + (const void *)&gInstructions[ 3714] // VPMOVB2M rKq,Ufv }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_29_pp_02_modrmmod_01_w = @@ -32568,7 +33270,7 @@ const ND_TABLE_MODRM_MOD gEvexMap_mmmmm_02_opcode_29_pp_02_modrmmod = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_29_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3443] // VPCMPEQQ rKq{K},aKq,Hfv,Wfv|B64 + (const void *)&gInstructions[ 3488] // VPCMPEQQ rKq{K},aKq,Hfv,Wfv|B64 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_29_pp_01_w = @@ -32594,13 +33296,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_29_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_28_pp_02_modrmmod_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3676] // VPMOVM2W Vfv,mKq + (const void *)&gInstructions[ 3721] // VPMOVM2W Vfv,mKq }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_28_pp_02_modrmmod_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3673] // VPMOVM2B Vfv,mKq + (const void *)&gInstructions[ 3718] // VPMOVM2B Vfv,mKq }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_28_pp_02_modrmmod_01_w = @@ -32624,7 +33326,7 @@ const ND_TABLE_MODRM_MOD gEvexMap_mmmmm_02_opcode_28_pp_02_modrmmod = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_28_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3732] // VPMULDQ Vfv{K}{z},aKq,Hfv,Wfv|B64 + (const void *)&gInstructions[ 3777] // VPMULDQ Vfv{K}{z},aKq,Hfv,Wfv|B64 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_28_pp_01_w = @@ -32650,13 +33352,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_28_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_27_pp_02_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3900] // VPTESTNMQ rKq{K},aKq,Hfv,Wfv|B64 + (const void *)&gInstructions[ 3945] // VPTESTNMQ rKq{K},aKq,Hfv,Wfv|B64 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_27_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3899] // VPTESTNMD rKq{K},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 3944] // VPTESTNMD rKq{K},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_27_pp_02_w = @@ -32671,13 +33373,13 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_27_pp_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_27_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3896] // VPTESTMQ rKq{K},aKq,Hfv,Wfv|B64 + (const void *)&gInstructions[ 3941] // VPTESTMQ rKq{K},aKq,Hfv,Wfv|B64 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_27_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3895] // VPTESTMD rKq{K},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 3940] // VPTESTMD rKq{K},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_27_pp_01_w = @@ -32703,13 +33405,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_27_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_26_pp_02_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3901] // VPTESTNMW rKq{K},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3946] // VPTESTNMW rKq{K},aKq,Hfv,Wfv }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_26_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3898] // VPTESTNMB rKq{K},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3943] // VPTESTNMB rKq{K},aKq,Hfv,Wfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_26_pp_02_w = @@ -32724,13 +33426,13 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_26_pp_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_26_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3897] // VPTESTMW rKq{K},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3942] // VPTESTMW rKq{K},aKq,Hfv,Wfv }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_26_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3894] // VPTESTMB rKq{K},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3939] // VPTESTMB rKq{K},aKq,Hfv,Wfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_26_pp_01_w = @@ -32756,7 +33458,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_26_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_25_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3685] // VPMOVSQD Whv{K}{z},aKq,Vfv + (const void *)&gInstructions[ 3730] // VPMOVSQD Whv{K}{z},aKq,Vfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_25_pp_02_w = @@ -32771,7 +33473,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_25_pp_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_25_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3697] // VPMOVSXDQ Vfv{K}{z},aKq,Whv + (const void *)&gInstructions[ 3742] // VPMOVSXDQ Vfv{K}{z},aKq,Whv }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_25_pp_01_w = @@ -32797,7 +33499,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_25_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_24_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3686] // VPMOVSQW Wqv{K}{z},aKq,Vfv + (const void *)&gInstructions[ 3731] // VPMOVSQW Wqv{K}{z},aKq,Vfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_24_pp_02_w = @@ -32812,7 +33514,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_24_pp_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_24_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3703] // VPMOVSXWQ Vfv{K}{z},aKq,Wqv + (const void *)&gInstructions[ 3748] // VPMOVSXWQ Vfv{K}{z},aKq,Wqv }; const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_24_pp = @@ -32829,7 +33531,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_24_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_23_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3683] // VPMOVSDW Whv{K}{z},aKq,Vfv + (const void *)&gInstructions[ 3728] // VPMOVSDW Whv{K}{z},aKq,Vfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_23_pp_02_w = @@ -32844,7 +33546,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_23_pp_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_23_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3700] // VPMOVSXWD Vfv{K}{z},aKq,Whv + (const void *)&gInstructions[ 3745] // VPMOVSXWD Vfv{K}{z},aKq,Whv }; const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_23_pp = @@ -32861,7 +33563,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_23_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_22_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3684] // VPMOVSQB Wev{K}{z},aKq,Vfv + (const void *)&gInstructions[ 3729] // VPMOVSQB Wev{K}{z},aKq,Vfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_22_pp_02_w = @@ -32876,7 +33578,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_22_pp_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_22_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3691] // VPMOVSXBQ Vfv{K}{z},aKq,Wev + (const void *)&gInstructions[ 3736] // VPMOVSXBQ Vfv{K}{z},aKq,Wev }; const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_22_pp = @@ -32893,7 +33595,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_22_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_21_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3682] // VPMOVSDB Wqv{K}{z},aKq,Vfv + (const void *)&gInstructions[ 3727] // VPMOVSDB Wqv{K}{z},aKq,Vfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_21_pp_02_w = @@ -32908,7 +33610,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_21_pp_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_21_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3688] // VPMOVSXBD Vfv{K}{z},aKq,Wqv + (const void *)&gInstructions[ 3733] // VPMOVSXBD Vfv{K}{z},aKq,Wqv }; const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_21_pp = @@ -32925,7 +33627,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_21_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_20_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3687] // VPMOVSWB Whv{K}{z},aKq,Vfv + (const void *)&gInstructions[ 3732] // VPMOVSWB Whv{K}{z},aKq,Vfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_20_pp_02_w = @@ -32940,7 +33642,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_20_pp_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_20_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3694] // VPMOVSXBW Vfv{K}{z},aKq,Whv + (const void *)&gInstructions[ 3739] // VPMOVSXBW Vfv{K}{z},aKq,Whv }; const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_20_pp = @@ -32957,7 +33659,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_20_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_1f_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3373] // VPABSQ Vfv{K}{z},aKq,Wfv|B64 + (const void *)&gInstructions[ 3418] // VPABSQ Vfv{K}{z},aKq,Wfv|B64 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_1f_pp_01_w = @@ -32983,7 +33685,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_1f_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_1e_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3371] // VPABSD Vfv{K}{z},aKq,Wfv|B32 + (const void *)&gInstructions[ 3416] // VPABSD Vfv{K}{z},aKq,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_1e_pp_01_w = @@ -33009,7 +33711,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_1e_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_1d_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3374] // VPABSW Vfv{K}{z},aKq,Wfv + (const void *)&gInstructions[ 3419] // VPABSW Vfv{K}{z},aKq,Wfv }; const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_1d_pp = @@ -33026,7 +33728,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_1d_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_1c_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3369] // VPABSB Vfv{K}{z},aKq,Wfv + (const void *)&gInstructions[ 3414] // VPABSB Vfv{K}{z},aKq,Wfv }; const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_1c_pp = @@ -33043,13 +33745,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_1c_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_1b_pp_01_modrmmod_00_l_02_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2691] // VBROADCASTF64X4 Voq{K}{z},aKq,Mqq + (const void *)&gInstructions[ 2732] // VBROADCASTF64X4 Voq{K}{z},aKq,Mqq }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_1b_pp_01_modrmmod_00_l_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2689] // VBROADCASTF32X8 Voq{K}{z},aKq,Mqq + (const void *)&gInstructions[ 2730] // VBROADCASTF32X8 Voq{K}{z},aKq,Mqq }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_1b_pp_01_modrmmod_00_l_02_w = @@ -33095,13 +33797,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_1b_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_1a_pp_01_modrmmod_00_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2690] // VBROADCASTF64X2 Vuv{K}{z},aKq,Mdq + (const void *)&gInstructions[ 2731] // VBROADCASTF64X2 Vuv{K}{z},aKq,Mdq }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_1a_pp_01_modrmmod_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2688] // VBROADCASTF32X4 Vuv{K}{z},aKq,Mdq + (const void *)&gInstructions[ 2729] // VBROADCASTF32X4 Vuv{K}{z},aKq,Mdq }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_1a_pp_01_modrmmod_00_w = @@ -33136,13 +33838,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_1a_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_19_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2698] // VBROADCASTSD Vuv{K}{z},aKq,Wsd + (const void *)&gInstructions[ 2739] // VBROADCASTSD Vuv{K}{z},aKq,Wsd }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_19_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2687] // VBROADCASTF32X2 Vuv{K}{z},aKq,Wq + (const void *)&gInstructions[ 2728] // VBROADCASTF32X2 Vuv{K}{z},aKq,Wq }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_19_pp_01_w = @@ -33168,7 +33870,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_19_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_18_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2700] // VBROADCASTSS Vfv{K}{z},aKq,Wss + (const void *)&gInstructions[ 2741] // VBROADCASTSS Vfv{K}{z},aKq,Wss }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_18_pp_01_w = @@ -33194,13 +33896,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_18_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_16_pp_01_l_02_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3535] // VPERMPD Vuv{K}{z},aKq,Huv,Wuv|B64 + (const void *)&gInstructions[ 3580] // VPERMPD Vuv{K}{z},aKq,Huv,Wuv|B64 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_16_pp_01_l_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3539] // VPERMPS Vuv{K}{z},aKq,Huv,Wuv|B32 + (const void *)&gInstructions[ 3584] // VPERMPS Vuv{K}{z},aKq,Huv,Wuv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_16_pp_01_l_02_w = @@ -33215,13 +33917,13 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_16_pp_01_l_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_16_pp_01_l_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3534] // VPERMPD Vuv{K}{z},aKq,Huv,Wuv|B64 + (const void *)&gInstructions[ 3579] // VPERMPD Vuv{K}{z},aKq,Huv,Wuv|B64 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_16_pp_01_l_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3538] // VPERMPS Vuv{K}{z},aKq,Huv,Wuv|B32 + (const void *)&gInstructions[ 3583] // VPERMPS Vuv{K}{z},aKq,Huv,Wuv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_16_pp_01_l_01_w = @@ -33258,7 +33960,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_16_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_15_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3709] // VPMOVUSQD Whv{K}{z},aKq,Vfv + (const void *)&gInstructions[ 3754] // VPMOVUSQD Whv{K}{z},aKq,Vfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_15_pp_02_w = @@ -33273,13 +33975,13 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_15_pp_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_15_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3760] // VPROLVQ Vfv{K}{z},aKq,Hfv,Wfv|B64 + (const void *)&gInstructions[ 3805] // VPROLVQ Vfv{K}{z},aKq,Hfv,Wfv|B64 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_15_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3759] // VPROLVD Vfv{K}{z},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 3804] // VPROLVD Vfv{K}{z},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_15_pp_01_w = @@ -33305,7 +34007,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_15_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_14_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3710] // VPMOVUSQW Wqv{K}{z},aKq,Vfv + (const void *)&gInstructions[ 3755] // VPMOVUSQW Wqv{K}{z},aKq,Vfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_14_pp_02_w = @@ -33320,13 +34022,13 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_14_pp_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_14_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3764] // VPRORVQ Vfv{K}{z},aKq,Hfv,Wfv|B64 + (const void *)&gInstructions[ 3809] // VPRORVQ Vfv{K}{z},aKq,Hfv,Wfv|B64 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_14_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3763] // VPRORVD Vfv{K}{z},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 3808] // VPRORVD Vfv{K}{z},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_14_pp_01_w = @@ -33352,7 +34054,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_14_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_13_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3707] // VPMOVUSDW Whv{K}{z},aKq,Vfv + (const void *)&gInstructions[ 3752] // VPMOVUSDW Whv{K}{z},aKq,Vfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_13_pp_02_w = @@ -33367,7 +34069,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_13_pp_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_13_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2766] // VCVTPH2PS Vfv{K}{z},aKq,Whv{sae} + (const void *)&gInstructions[ 2807] // VCVTPH2PS Vfv{K}{z},aKq,Whv{sae} }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_13_pp_01_w = @@ -33393,7 +34095,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_13_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_12_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3708] // VPMOVUSQB Wev{K}{z},aKq,Vfv + (const void *)&gInstructions[ 3753] // VPMOVUSQB Wev{K}{z},aKq,Vfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_12_pp_02_w = @@ -33408,7 +34110,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_12_pp_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_12_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3837] // VPSLLVW Vfv{K}{z},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3882] // VPSLLVW Vfv{K}{z},aKq,Hfv,Wfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_12_pp_01_w = @@ -33434,7 +34136,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_12_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_11_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3706] // VPMOVUSDB Wqv{K}{z},aKq,Vfv + (const void *)&gInstructions[ 3751] // VPMOVUSDB Wqv{K}{z},aKq,Vfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_11_pp_02_w = @@ -33449,7 +34151,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_11_pp_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_11_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3851] // VPSRAVW Vfv{K}{z},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3896] // VPSRAVW Vfv{K}{z},aKq,Hfv,Wfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_11_pp_01_w = @@ -33475,7 +34177,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_11_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_10_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3711] // VPMOVUSWB Whv{K}{z},aKq,Vfv + (const void *)&gInstructions[ 3756] // VPMOVUSWB Whv{K}{z},aKq,Vfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_10_pp_02_w = @@ -33490,7 +34192,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_10_pp_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_10_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3870] // VPSRLVW Vfv{K}{z},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3915] // VPSRLVW Vfv{K}{z},aKq,Hfv,Wfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_10_pp_01_w = @@ -33516,7 +34218,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_10_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_0d_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3526] // VPERMILPD Vfv{K}{z},aKq,Hfv,Wfv|B64 + (const void *)&gInstructions[ 3571] // VPERMILPD Vfv{K}{z},aKq,Hfv,Wfv|B64 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_0d_pp_01_w = @@ -33542,7 +34244,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_0d_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_0c_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3530] // VPERMILPS Vfv{K}{z},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 3575] // VPERMILPS Vfv{K}{z},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_02_opcode_0c_pp_01_w = @@ -33568,7 +34270,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_0c_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_0b_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3734] // VPMULHRSW Vfv{K}{z},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3779] // VPMULHRSW Vfv{K}{z},aKq,Hfv,Wfv }; const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_0b_pp = @@ -33585,7 +34287,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_0b_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_04_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3633] // VPMADDUBSW Vfv{K}{z},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3678] // VPMADDUBSW Vfv{K}{z},aKq,Hfv,Wfv }; const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_04_pp = @@ -33602,7 +34304,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_04_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_02_opcode_00_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3811] // VPSHUFB Vfv{K}{z},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3856] // VPSHUFB Vfv{K}{z},aKq,Hfv,Wfv }; const ND_TABLE_EX_PP gEvexMap_mmmmm_02_opcode_00_pp = @@ -33694,7 +34396,7 @@ const ND_TABLE_OPCODE gEvexMap_mmmmm_02_opcode = /* 47 */ (const void *)&gEvexMap_mmmmm_02_opcode_47_pp, /* 48 */ (const void *)ND_NULL, /* 49 */ (const void *)&gEvexMap_mmmmm_02_opcode_49_pp, - /* 4a */ (const void *)ND_NULL, + /* 4a */ (const void *)&gEvexMap_mmmmm_02_opcode_4a_pp, /* 4b */ (const void *)&gEvexMap_mmmmm_02_opcode_4b_pp, /* 4c */ (const void *)&gEvexMap_mmmmm_02_opcode_4c_pp, /* 4d */ (const void *)&gEvexMap_mmmmm_02_opcode_4d_pp, @@ -33729,7 +34431,7 @@ const ND_TABLE_OPCODE gEvexMap_mmmmm_02_opcode = /* 6a */ (const void *)ND_NULL, /* 6b */ (const void *)ND_NULL, /* 6c */ (const void *)ND_NULL, - /* 6d */ (const void *)ND_NULL, + /* 6d */ (const void *)&gEvexMap_mmmmm_02_opcode_6d_pp, /* 6e */ (const void *)ND_NULL, /* 6f */ (const void *)ND_NULL, /* 70 */ (const void *)&gEvexMap_mmmmm_02_opcode_70_pp, @@ -33838,7 +34540,7 @@ const ND_TABLE_OPCODE gEvexMap_mmmmm_02_opcode = /* d7 */ (const void *)ND_NULL, /* d8 */ (const void *)ND_NULL, /* d9 */ (const void *)ND_NULL, - /* da */ (const void *)ND_NULL, + /* da */ (const void *)&gEvexMap_mmmmm_02_opcode_da_pp, /* db */ (const void *)ND_NULL, /* dc */ (const void *)&gEvexMap_mmmmm_02_opcode_dc_pp, /* dd */ (const void *)&gEvexMap_mmmmm_02_opcode_dd_pp, @@ -33882,7 +34584,7 @@ const ND_TABLE_OPCODE gEvexMap_mmmmm_02_opcode = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_fe_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3386] // VPADDD Vfv{K}{z},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 3431] // VPADDD Vfv{K}{z},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_fe_pp_01_w = @@ -33908,7 +34610,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_fe_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_fd_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3398] // VPADDW Vfv{K}{z},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3443] // VPADDW Vfv{K}{z},aKq,Hfv,Wfv }; const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_fd_pp = @@ -33925,7 +34627,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_fd_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_fc_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3384] // VPADDB Vfv{K}{z},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3429] // VPADDB Vfv{K}{z},aKq,Hfv,Wfv }; const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_fc_pp = @@ -33942,7 +34644,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_fc_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_fb_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3879] // VPSUBQ Vfv{K}{z},aKq,Hfv,Wfv|B64 + (const void *)&gInstructions[ 3924] // VPSUBQ Vfv{K}{z},aKq,Hfv,Wfv|B64 }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_fb_pp_01_w = @@ -33968,7 +34670,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_fb_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_fa_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3877] // VPSUBD Vfv{K}{z},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 3922] // VPSUBD Vfv{K}{z},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_fa_pp_01_w = @@ -33994,7 +34696,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_fa_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_f9_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3889] // VPSUBW Vfv{K}{z},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3934] // VPSUBW Vfv{K}{z},aKq,Hfv,Wfv }; const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_f9_pp = @@ -34011,7 +34713,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_f9_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_f8_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3875] // VPSUBB Vfv{K}{z},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3920] // VPSUBB Vfv{K}{z},aKq,Hfv,Wfv }; const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_f8_pp = @@ -34028,7 +34730,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_f8_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_f6_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3777] // VPSADBW Vfv,Hfv,Wfv + (const void *)&gInstructions[ 3822] // VPSADBW Vfv,Hfv,Wfv }; const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_f6_pp = @@ -34045,7 +34747,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_f6_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_f5_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3635] // VPMADDWD Vfv{K}{z},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3680] // VPMADDWD Vfv{K}{z},aKq,Hfv,Wfv }; const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_f5_pp = @@ -34062,7 +34764,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_f5_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_f4_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3746] // VPMULUDQ Vfv{K}{z},aKq,Hfv,Wfv|B64 + (const void *)&gInstructions[ 3791] // VPMULUDQ Vfv{K}{z},aKq,Hfv,Wfv|B64 }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_f4_pp_01_w = @@ -34088,7 +34790,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_f4_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_f3_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3830] // VPSLLQ Vfv{K}{z},aKq,Hfv,Wdq + (const void *)&gInstructions[ 3875] // VPSLLQ Vfv{K}{z},aKq,Hfv,Wdq }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_f3_pp_01_w = @@ -34114,7 +34816,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_f3_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_f2_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3824] // VPSLLD Vfv{K}{z},aKq,Hfv,Wdq + (const void *)&gInstructions[ 3869] // VPSLLD Vfv{K}{z},aKq,Hfv,Wdq }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_f2_pp_01_w = @@ -34140,7 +34842,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_f2_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_f1_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3839] // VPSLLW Vfv{K}{z},aKq,Hfv,Wdq + (const void *)&gInstructions[ 3884] // VPSLLW Vfv{K}{z},aKq,Hfv,Wdq }; const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_f1_pp = @@ -34157,13 +34859,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_f1_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_ef_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3920] // VPXORQ Vfv{K}{z},aKq,Hfv,Wfv|B64 + (const void *)&gInstructions[ 3965] // VPXORQ Vfv{K}{z},aKq,Hfv,Wfv|B64 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_ef_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3919] // VPXORD Vfv{K}{z},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 3964] // VPXORD Vfv{K}{z},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_ef_pp_01_w = @@ -34189,7 +34891,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_ef_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_ee_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3646] // VPMAXSW Vfv{K}{z},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3691] // VPMAXSW Vfv{K}{z},aKq,Hfv,Wfv }; const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_ee_pp = @@ -34206,7 +34908,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_ee_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_ed_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3392] // VPADDSW Vfv{K}{z},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3437] // VPADDSW Vfv{K}{z},aKq,Hfv,Wfv }; const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_ed_pp = @@ -34223,7 +34925,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_ed_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_ec_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3390] // VPADDSB Vfv{K}{z},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3435] // VPADDSB Vfv{K}{z},aKq,Hfv,Wfv }; const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_ec_pp = @@ -34240,13 +34942,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_ec_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_eb_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3754] // VPORQ Vfv{K}{z},aKq,Hfv,Wfv|B64 + (const void *)&gInstructions[ 3799] // VPORQ Vfv{K}{z},aKq,Hfv,Wfv|B64 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_eb_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3753] // VPORD Vfv{K}{z},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 3798] // VPORD Vfv{K}{z},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_eb_pp_01_w = @@ -34272,7 +34974,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_eb_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_ea_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3660] // VPMINSW Vfv{K}{z},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3705] // VPMINSW Vfv{K}{z},aKq,Hfv,Wfv }; const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_ea_pp = @@ -34289,7 +34991,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_ea_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_e9_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3883] // VPSUBSW Vfv{K}{z},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3928] // VPSUBSW Vfv{K}{z},aKq,Hfv,Wfv }; const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_e9_pp = @@ -34306,7 +35008,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_e9_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_e8_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3881] // VPSUBSB Vfv{K}{z},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3926] // VPSUBSB Vfv{K}{z},aKq,Hfv,Wfv }; const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_e8_pp = @@ -34323,7 +35025,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_e8_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_e7_pp_01_modrmmod_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3285] // VMOVNTDQ Mfv,Vfv + (const void *)&gInstructions[ 3326] // VMOVNTDQ Mfv,Vfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_e7_pp_01_modrmmod_00_w = @@ -34358,7 +35060,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_e7_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_e6_pp_03_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2753] // VCVTPD2DQ Vhv{K}{z},aKq,Wfv|B64{er} + (const void *)&gInstructions[ 2794] // VCVTPD2DQ Vhv{K}{z},aKq,Wfv|B64{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_e6_pp_03_w = @@ -34373,13 +35075,13 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_e6_pp_03_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_e6_pp_02_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2789] // VCVTQQ2PD Vfv{K}{z},aKq,Wfv|B64{er} + (const void *)&gInstructions[ 2830] // VCVTQQ2PD Vfv{K}{z},aKq,Wfv|B64{er} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_e6_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2729] // VCVTDQ2PD Vfv{K}{z},aKq,Whv|B32 + (const void *)&gInstructions[ 2770] // VCVTDQ2PD Vfv{K}{z},aKq,Whv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_e6_pp_02_w = @@ -34394,7 +35096,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_e6_pp_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_e6_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2816] // VCVTTPD2DQ Vhv{K}{z},aKq,Wfv|B64{sae} + (const void *)&gInstructions[ 2857] // VCVTTPD2DQ Vhv{K}{z},aKq,Wfv|B64{sae} }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_e6_pp_01_w = @@ -34420,7 +35122,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_e6_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_e5_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3738] // VPMULHW Vfv{K}{z},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3783] // VPMULHW Vfv{K}{z},aKq,Hfv,Wfv }; const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_e5_pp = @@ -34437,7 +35139,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_e5_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_e4_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3736] // VPMULHUW Vfv{K}{z},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3781] // VPMULHUW Vfv{K}{z},aKq,Hfv,Wfv }; const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_e4_pp = @@ -34454,7 +35156,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_e4_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_e3_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3410] // VPAVGW Vfv{K}{z},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3455] // VPAVGW Vfv{K}{z},aKq,Hfv,Wfv }; const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_e3_pp = @@ -34471,13 +35173,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_e3_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_e2_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3847] // VPSRAQ Vfv{K}{z},aKq,Hfv,Wdq + (const void *)&gInstructions[ 3892] // VPSRAQ Vfv{K}{z},aKq,Hfv,Wdq }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_e2_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3843] // VPSRAD Vfv{K}{z},aKq,Hfv,Wdq + (const void *)&gInstructions[ 3888] // VPSRAD Vfv{K}{z},aKq,Hfv,Wdq }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_e2_pp_01_w = @@ -34503,7 +35205,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_e2_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_e1_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3853] // VPSRAW Vfv{K}{z},aKq,Hfv,Wdq + (const void *)&gInstructions[ 3898] // VPSRAW Vfv{K}{z},aKq,Hfv,Wdq }; const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_e1_pp = @@ -34520,7 +35222,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_e1_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_e0_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3408] // VPAVGB Vfv{K}{z},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3453] // VPAVGB Vfv{K}{z},aKq,Hfv,Wfv }; const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_e0_pp = @@ -34537,13 +35239,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_e0_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_df_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3406] // VPANDNQ Vfv{K}{z},aKq,Hfv,Wfv|B64 + (const void *)&gInstructions[ 3451] // VPANDNQ Vfv{K}{z},aKq,Hfv,Wfv|B64 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_df_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3405] // VPANDND Vfv{K}{z},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 3450] // VPANDND Vfv{K}{z},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_df_pp_01_w = @@ -34569,7 +35271,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_df_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_de_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3648] // VPMAXUB Vfv{K}{z},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3693] // VPMAXUB Vfv{K}{z},aKq,Hfv,Wfv }; const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_de_pp = @@ -34586,7 +35288,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_de_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_dd_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3396] // VPADDUSW Vfv{K}{z},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3441] // VPADDUSW Vfv{K}{z},aKq,Hfv,Wfv }; const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_dd_pp = @@ -34603,7 +35305,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_dd_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_dc_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3394] // VPADDUSB Vfv{K}{z},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3439] // VPADDUSB Vfv{K}{z},aKq,Hfv,Wfv }; const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_dc_pp = @@ -34620,13 +35322,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_dc_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_db_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3407] // VPANDQ Vfv{K}{z},aKq,Hfv,Wfv|B64 + (const void *)&gInstructions[ 3452] // VPANDQ Vfv{K}{z},aKq,Hfv,Wfv|B64 }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_db_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3403] // VPANDD Vfv{K}{z},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 3448] // VPANDD Vfv{K}{z},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_db_pp_01_w = @@ -34652,7 +35354,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_db_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_da_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3662] // VPMINUB Vfv{K}{z},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3707] // VPMINUB Vfv{K}{z},aKq,Hfv,Wfv }; const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_da_pp = @@ -34669,7 +35371,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_da_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_d9_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3887] // VPSUBUSW Vfv{K}{z},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3932] // VPSUBUSW Vfv{K}{z},aKq,Hfv,Wfv }; const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_d9_pp = @@ -34686,7 +35388,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_d9_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_d8_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3885] // VPSUBUSB Vfv{K}{z},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3930] // VPSUBUSB Vfv{K}{z},aKq,Hfv,Wfv }; const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_d8_pp = @@ -34703,13 +35405,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_d8_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_d6_pp_01_l_00_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3296] // VMOVQ Wq,Vdq + (const void *)&gInstructions[ 3337] // VMOVQ Wq,Vdq }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_d6_pp_01_l_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3239] // VMOVD Wd,Vdq + (const void *)&gInstructions[ 3280] // VMOVD Wd,Vdq }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_d6_pp_01_l_00_w = @@ -34746,7 +35448,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_d6_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_d5_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3743] // VPMULLW Vfv{K}{z},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3788] // VPMULLW Vfv{K}{z},aKq,Hfv,Wfv }; const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_d5_pp = @@ -34763,7 +35465,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_d5_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_d4_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3388] // VPADDQ Vfv{K}{z},aKq,Hfv,Wfv|B64 + (const void *)&gInstructions[ 3433] // VPADDQ Vfv{K}{z},aKq,Hfv,Wfv|B64 }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_d4_pp_01_w = @@ -34789,7 +35491,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_d4_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_d3_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3863] // VPSRLQ Vfv{K}{z},aKq,Hfv,Wdq + (const void *)&gInstructions[ 3908] // VPSRLQ Vfv{K}{z},aKq,Hfv,Wdq }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_d3_pp_01_w = @@ -34815,7 +35517,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_d3_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_d2_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3857] // VPSRLD Vfv{K}{z},aKq,Hfv,Wdq + (const void *)&gInstructions[ 3902] // VPSRLD Vfv{K}{z},aKq,Hfv,Wdq }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_d2_pp_01_w = @@ -34841,7 +35543,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_d2_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_d1_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3872] // VPSRLW Vfv{K}{z},aKq,Hfv,Wdq + (const void *)&gInstructions[ 3917] // VPSRLW Vfv{K}{z},aKq,Hfv,Wdq }; const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_d1_pp = @@ -34858,7 +35560,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_d1_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_c6_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3995] // VSHUFPD Vfv{K}{z},aKq,Hfv,Wfv|B64,Ib + (const void *)&gInstructions[ 4040] // VSHUFPD Vfv{K}{z},aKq,Hfv,Wfv|B64,Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_c6_pp_01_w = @@ -34873,7 +35575,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_c6_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_c6_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3997] // VSHUFPS Vfv{K}{z},aKq,Hfv,Wfv|B32,Ib + (const void *)&gInstructions[ 4042] // VSHUFPS Vfv{K}{z},aKq,Hfv,Wfv|B32,Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_c6_pp_00_w = @@ -34899,7 +35601,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_c6_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_c5_pp_01_modrmmod_01_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3567] // VPEXTRW Gy,Udq,Ib + (const void *)&gInstructions[ 3612] // VPEXTRW Gy,Udq,Ib }; const ND_TABLE_EX_L gEvexMap_mmmmm_01_opcode_c5_pp_01_modrmmod_01_l = @@ -34936,7 +35638,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_c5_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_c4_pp_01_modrmmod_01_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3612] // VPINSRW Vdq,Hdq,Rv,Ib + (const void *)&gInstructions[ 3657] // VPINSRW Vdq,Hdq,Rv,Ib }; const ND_TABLE_EX_L gEvexMap_mmmmm_01_opcode_c4_pp_01_modrmmod_01_l = @@ -34953,7 +35655,7 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_01_opcode_c4_pp_01_modrmmod_01_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_c4_pp_01_modrmmod_00_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3611] // VPINSRW Vdq,Hdq,Mw,Ib + (const void *)&gInstructions[ 3656] // VPINSRW Vdq,Hdq,Mw,Ib }; const ND_TABLE_EX_L gEvexMap_mmmmm_01_opcode_c4_pp_01_modrmmod_00_l = @@ -34990,7 +35692,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_c4_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_c2_pp_03_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2708] // VCMPSD rKq{K},aKq,Hdq,Wsd{sae},Ib + (const void *)&gInstructions[ 2749] // VCMPSD rKq{K},aKq,Hdq,Wsd{sae},Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_c2_pp_03_w = @@ -35005,7 +35707,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_c2_pp_03_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_c2_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2711] // VCMPSS rKq{K},aKq,Hdq,Wss{sae},Ib + (const void *)&gInstructions[ 2752] // VCMPSS rKq{K},aKq,Hdq,Wss{sae},Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_c2_pp_02_w = @@ -35020,7 +35722,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_c2_pp_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_c2_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2703] // VCMPPD rKq{K},aKq,Hfv,Wfv|B64{sae},Ib + (const void *)&gInstructions[ 2744] // VCMPPD rKq{K},aKq,Hfv,Wfv|B64{sae},Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_c2_pp_01_w = @@ -35035,7 +35737,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_c2_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_c2_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2706] // VCMPPS rKq{K},aKq,Hfv,Wfv|B32{sae},Ib + (const void *)&gInstructions[ 2747] // VCMPPS rKq{K},aKq,Hfv,Wfv|B32{sae},Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_c2_pp_00_w = @@ -35735,13 +36437,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_90_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_7f_pp_03_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3256] // VMOVDQU16 Wfv{K}{z},aKq,Vfv + (const void *)&gInstructions[ 3297] // VMOVDQU16 Wfv{K}{z},aKq,Vfv }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_7f_pp_03_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3262] // VMOVDQU8 Wfv{K}{z},aKq,Vfv + (const void *)&gInstructions[ 3303] // VMOVDQU8 Wfv{K}{z},aKq,Vfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_7f_pp_03_w = @@ -35756,13 +36458,13 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_7f_pp_03_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_7f_pp_02_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3260] // VMOVDQU64 Wfv{K}{z},aKq,Vfv + (const void *)&gInstructions[ 3301] // VMOVDQU64 Wfv{K}{z},aKq,Vfv }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_7f_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3258] // VMOVDQU32 Wfv{K}{z},aKq,Vfv + (const void *)&gInstructions[ 3299] // VMOVDQU32 Wfv{K}{z},aKq,Vfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_7f_pp_02_w = @@ -35777,13 +36479,13 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_7f_pp_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_7f_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3252] // VMOVDQA64 Wfv{K}{z},aKq,Vfv + (const void *)&gInstructions[ 3293] // VMOVDQA64 Wfv{K}{z},aKq,Vfv }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_7f_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3250] // VMOVDQA32 Wfv{K}{z},aKq,Vfv + (const void *)&gInstructions[ 3291] // VMOVDQA32 Wfv{K}{z},aKq,Vfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_7f_pp_01_w = @@ -35809,13 +36511,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_7f_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_7e_pp_02_l_00_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3295] // VMOVQ Vdq,Wq + (const void *)&gInstructions[ 3336] // VMOVQ Vdq,Wq }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_7e_pp_02_l_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3238] // VMOVD Vdq,Wd + (const void *)&gInstructions[ 3279] // VMOVD Vdq,Wd }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_7e_pp_02_l_00_w = @@ -35841,13 +36543,13 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_01_opcode_7e_pp_02_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_7e_pp_01_l_00_wi_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3294] // VMOVQ Ey,Vdq + (const void *)&gInstructions[ 3335] // VMOVQ Ey,Vdq }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_7e_pp_01_l_00_wi_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3237] // VMOVD Ey,Vdq + (const void *)&gInstructions[ 3278] // VMOVD Ey,Vdq }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_7e_pp_01_l_00_wi = @@ -35884,13 +36586,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_7e_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_7b_pp_03_wi_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2863] // VCVTUSI2SD Vdq,Hdq{er},Ey + (const void *)&gInstructions[ 2904] // VCVTUSI2SD Vdq,Hdq{er},Ey }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_7b_pp_03_wi_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2862] // VCVTUSI2SD Vdq,Hdq,Ey + (const void *)&gInstructions[ 2903] // VCVTUSI2SD Vdq,Hdq,Ey }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_7b_pp_03_wi = @@ -35905,19 +36607,19 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_7b_pp_03_wi = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_7b_pp_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2865] // VCVTUSI2SS Vss,Hss{er},Ey + (const void *)&gInstructions[ 2906] // VCVTUSI2SS Vss,Hss{er},Ey }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_7b_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2759] // VCVTPD2QQ Vfv{K}{z},aKq,Wfv|B64{er} + (const void *)&gInstructions[ 2800] // VCVTPD2QQ Vfv{K}{z},aKq,Wfv|B64{er} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_7b_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2786] // VCVTPS2QQ Vfv{K}{z},aKq,Whv|B32{er} + (const void *)&gInstructions[ 2827] // VCVTPS2QQ Vfv{K}{z},aKq,Whv|B32{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_7b_pp_01_w = @@ -35943,13 +36645,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_7b_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_7a_pp_03_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2861] // VCVTUQQ2PS Vhv{K}{z},aKq,Wfv|B64{er} + (const void *)&gInstructions[ 2902] // VCVTUQQ2PS Vhv{K}{z},aKq,Wfv|B64{er} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_7a_pp_03_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2858] // VCVTUDQ2PS Vfv{K}{z},aKq,Wfv|B32{er} + (const void *)&gInstructions[ 2899] // VCVTUDQ2PS Vfv{K}{z},aKq,Wfv|B32{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_7a_pp_03_w = @@ -35964,13 +36666,13 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_7a_pp_03_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_7a_pp_02_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2859] // VCVTUQQ2PD Vfv{K}{z},aKq,Wfv|B64{er} + (const void *)&gInstructions[ 2900] // VCVTUQQ2PD Vfv{K}{z},aKq,Wfv|B64{er} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_7a_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2856] // VCVTUDQ2PD Vfv{K}{z},aKq,Whv|B32 + (const void *)&gInstructions[ 2897] // VCVTUDQ2PD Vfv{K}{z},aKq,Whv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_7a_pp_02_w = @@ -35985,13 +36687,13 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_7a_pp_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_7a_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2819] // VCVTTPD2QQ Vfv{K}{z},aKq,Wfv|B64{sae} + (const void *)&gInstructions[ 2860] // VCVTTPD2QQ Vfv{K}{z},aKq,Wfv|B64{sae} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_7a_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2838] // VCVTTPS2QQ Vfv{K}{z},aKq,Whv|B32{sae} + (const void *)&gInstructions[ 2879] // VCVTTPS2QQ Vfv{K}{z},aKq,Whv|B32{sae} }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_7a_pp_01_w = @@ -36017,25 +36719,25 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_7a_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_79_pp_03_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2797] // VCVTSD2USI Gy,Wsd{er} + (const void *)&gInstructions[ 2838] // VCVTSD2USI Gy,Wsd{er} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_79_pp_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2813] // VCVTSS2USI Gy,Wss{er} + (const void *)&gInstructions[ 2854] // VCVTSS2USI Gy,Wss{er} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_79_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2761] // VCVTPD2UQQ Vfv{K}{z},aKq,Wfv|B64{er} + (const void *)&gInstructions[ 2802] // VCVTPD2UQQ Vfv{K}{z},aKq,Wfv|B64{er} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_79_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2788] // VCVTPS2UQQ Vfv{K}{z},aKq,Whv|B32{er} + (const void *)&gInstructions[ 2829] // VCVTPS2UQQ Vfv{K}{z},aKq,Whv|B32{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_79_pp_01_w = @@ -36050,13 +36752,13 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_79_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_79_pp_00_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2760] // VCVTPD2UDQ Vhv{K}{z},aKq,Wfv|B64{er} + (const void *)&gInstructions[ 2801] // VCVTPD2UDQ Vhv{K}{z},aKq,Wfv|B64{er} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_79_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2787] // VCVTPS2UDQ Vfv{K}{z},aKq,Wfv|B32{er} + (const void *)&gInstructions[ 2828] // VCVTPS2UDQ Vfv{K}{z},aKq,Wfv|B32{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_79_pp_00_w = @@ -36082,25 +36784,25 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_79_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_78_pp_03_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2847] // VCVTTSD2USI Gy,Wsd{sae} + (const void *)&gInstructions[ 2888] // VCVTTSD2USI Gy,Wsd{sae} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_78_pp_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2854] // VCVTTSS2USI Gy,Wss{sae} + (const void *)&gInstructions[ 2895] // VCVTTSS2USI Gy,Wss{sae} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_78_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2823] // VCVTTPD2UQQ Vfv{K}{z},aKq,Wfv|B64{sae} + (const void *)&gInstructions[ 2864] // VCVTTPD2UQQ Vfv{K}{z},aKq,Wfv|B64{sae} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_78_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2842] // VCVTTPS2UQQ Vfv{K}{z},aKq,Whv|B32{sae} + (const void *)&gInstructions[ 2883] // VCVTTPS2UQQ Vfv{K}{z},aKq,Whv|B32{sae} }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_78_pp_01_w = @@ -36115,13 +36817,13 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_78_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_78_pp_00_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2821] // VCVTTPD2UDQ Vhv{K}{z},aKq,Wfv|B64{sae} + (const void *)&gInstructions[ 2862] // VCVTTPD2UDQ Vhv{K}{z},aKq,Wfv|B64{sae} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_78_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2840] // VCVTTPS2UDQ Vfv{K}{z},aKq,Wfv|B32{sae} + (const void *)&gInstructions[ 2881] // VCVTTPS2UDQ Vfv{K}{z},aKq,Wfv|B32{sae} }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_78_pp_00_w = @@ -36147,7 +36849,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_78_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_76_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3441] // VPCMPEQD rKq{K},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 3486] // VPCMPEQD rKq{K},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_76_pp = @@ -36164,7 +36866,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_76_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_75_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3445] // VPCMPEQW rKq{K},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3490] // VPCMPEQW rKq{K},aKq,Hfv,Wfv }; const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_75_pp = @@ -36178,40 +36880,10 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_75_pp = } }; -const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_74_pp_03_w_00_leaf = -{ - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2736] // VCVTNE2PH2BF8 Vfv{K}{z},aKq,Hfv,Wfv|B16 -}; - -const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_74_pp_03_w = -{ - ND_ILUT_EX_W, - { - /* 00 */ (const void *)&gEvexMap_mmmmm_01_opcode_74_pp_03_w_00_leaf, - /* 01 */ (const void *)ND_NULL, - } -}; - -const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_74_pp_02_w_00_leaf = -{ - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2747] // VCVTNEPH2BF8 Vhv{K}{z},aKq,Wfv|B16 -}; - -const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_74_pp_02_w = -{ - ND_ILUT_EX_W, - { - /* 00 */ (const void *)&gEvexMap_mmmmm_01_opcode_74_pp_02_w_00_leaf, - /* 01 */ (const void *)ND_NULL, - } -}; - const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_74_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3439] // VPCMPEQB rKq{K},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3484] // VPCMPEQB rKq{K},aKq,Hfv,Wfv }; const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_74_pp = @@ -36220,21 +36892,21 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_74_pp = { /* 00 */ (const void *)ND_NULL, /* 01 */ (const void *)&gEvexMap_mmmmm_01_opcode_74_pp_01_leaf, - /* 02 */ (const void *)&gEvexMap_mmmmm_01_opcode_74_pp_02_w, - /* 03 */ (const void *)&gEvexMap_mmmmm_01_opcode_74_pp_03_w, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, } }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_73_pp_01_modrmreg_07_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3827] // VPSLLDQ Hfv,Wfv,Ib + (const void *)&gInstructions[ 3872] // VPSLLDQ Hfv,Wfv,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_73_pp_01_modrmreg_06_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3829] // VPSLLQ Hfv{K}{z},aKq,Wfv|B64,Ib + (const void *)&gInstructions[ 3874] // VPSLLQ Hfv{K}{z},aKq,Wfv|B64,Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_73_pp_01_modrmreg_06_w = @@ -36249,13 +36921,13 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_73_pp_01_modrmreg_06_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_73_pp_01_modrmreg_03_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3860] // VPSRLDQ Hfv,Wfv,Ib + (const void *)&gInstructions[ 3905] // VPSRLDQ Hfv,Wfv,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_73_pp_01_modrmreg_02_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3862] // VPSRLQ Hfv{K}{z},aKq,Wfv|B64,Ib + (const void *)&gInstructions[ 3907] // VPSRLQ Hfv{K}{z},aKq,Wfv|B64,Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_73_pp_01_modrmreg_02_w = @@ -36296,7 +36968,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_73_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_72_pp_01_modrmreg_06_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3823] // VPSLLD Hfv{K}{z},aKq,Wfv|B32,Ib + (const void *)&gInstructions[ 3868] // VPSLLD Hfv{K}{z},aKq,Wfv|B32,Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_72_pp_01_modrmreg_06_w = @@ -36311,13 +36983,13 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_72_pp_01_modrmreg_06_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_72_pp_01_modrmreg_04_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3846] // VPSRAQ Hfv{K}{z},aKq,Wfv|B64,Ib + (const void *)&gInstructions[ 3891] // VPSRAQ Hfv{K}{z},aKq,Wfv|B64,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_72_pp_01_modrmreg_04_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3842] // VPSRAD Hfv{K}{z},aKq,Wfv|B32,Ib + (const void *)&gInstructions[ 3887] // VPSRAD Hfv{K}{z},aKq,Wfv|B32,Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_72_pp_01_modrmreg_04_w = @@ -36332,7 +37004,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_72_pp_01_modrmreg_04_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_72_pp_01_modrmreg_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3856] // VPSRLD Hfv{K}{z},aKq,Wfv|B32,Ib + (const void *)&gInstructions[ 3901] // VPSRLD Hfv{K}{z},aKq,Wfv|B32,Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_72_pp_01_modrmreg_02_w = @@ -36347,13 +37019,13 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_72_pp_01_modrmreg_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_72_pp_01_modrmreg_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3758] // VPROLQ Hfv{K}{z},aKq,Wfv|B64,Ib + (const void *)&gInstructions[ 3803] // VPROLQ Hfv{K}{z},aKq,Wfv|B64,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_72_pp_01_modrmreg_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3757] // VPROLD Hfv{K}{z},aKq,Wfv|B32,Ib + (const void *)&gInstructions[ 3802] // VPROLD Hfv{K}{z},aKq,Wfv|B32,Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_72_pp_01_modrmreg_01_w = @@ -36368,13 +37040,13 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_72_pp_01_modrmreg_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_72_pp_01_modrmreg_00_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3762] // VPRORQ Hfv{K}{z},aKq,Wfv|B64,Ib + (const void *)&gInstructions[ 3807] // VPRORQ Hfv{K}{z},aKq,Wfv|B64,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_72_pp_01_modrmreg_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3761] // VPRORD Hfv{K}{z},aKq,Wfv|B32,Ib + (const void *)&gInstructions[ 3806] // VPRORD Hfv{K}{z},aKq,Wfv|B32,Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_72_pp_01_modrmreg_00_w = @@ -36415,19 +37087,19 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_72_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_71_pp_01_modrmreg_06_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3838] // VPSLLW Hfv{K}{z},aKq,Wfv,Ib + (const void *)&gInstructions[ 3883] // VPSLLW Hfv{K}{z},aKq,Wfv,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_71_pp_01_modrmreg_04_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3852] // VPSRAW Hfv{K}{z},aKq,Wfv,Ib + (const void *)&gInstructions[ 3897] // VPSRAW Hfv{K}{z},aKq,Wfv,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_71_pp_01_modrmreg_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3871] // VPSRLW Hfv{K}{z},aKq,Wfv,Ib + (const void *)&gInstructions[ 3916] // VPSRLW Hfv{K}{z},aKq,Wfv,Ib }; const ND_TABLE_MODRM_REG gEvexMap_mmmmm_01_opcode_71_pp_01_modrmreg = @@ -36459,19 +37131,19 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_71_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_70_pp_03_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3818] // VPSHUFLW Vfv{K}{z},aKq,Wfv,Ib + (const void *)&gInstructions[ 3863] // VPSHUFLW Vfv{K}{z},aKq,Wfv,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_70_pp_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3816] // VPSHUFHW Vfv{K}{z},aKq,Wfv,Ib + (const void *)&gInstructions[ 3861] // VPSHUFHW Vfv{K}{z},aKq,Wfv,Ib }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_70_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3814] // VPSHUFD Vfv{K}{z},aKq,Wfv|B32,Ib + (const void *)&gInstructions[ 3859] // VPSHUFD Vfv{K}{z},aKq,Wfv|B32,Ib }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_70_pp_01_w = @@ -36497,13 +37169,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_70_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_6f_pp_03_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3255] // VMOVDQU16 Vfv{K}{z},aKq,Wfv + (const void *)&gInstructions[ 3296] // VMOVDQU16 Vfv{K}{z},aKq,Wfv }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_6f_pp_03_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3261] // VMOVDQU8 Vfv{K}{z},aKq,Wfv + (const void *)&gInstructions[ 3302] // VMOVDQU8 Vfv{K}{z},aKq,Wfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_6f_pp_03_w = @@ -36518,13 +37190,13 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_6f_pp_03_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_6f_pp_02_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3259] // VMOVDQU64 Vfv{K}{z},aKq,Wfv + (const void *)&gInstructions[ 3300] // VMOVDQU64 Vfv{K}{z},aKq,Wfv }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_6f_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3257] // VMOVDQU32 Vfv{K}{z},aKq,Wfv + (const void *)&gInstructions[ 3298] // VMOVDQU32 Vfv{K}{z},aKq,Wfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_6f_pp_02_w = @@ -36539,13 +37211,13 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_6f_pp_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_6f_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3251] // VMOVDQA64 Vfv{K}{z},aKq,Wfv + (const void *)&gInstructions[ 3292] // VMOVDQA64 Vfv{K}{z},aKq,Wfv }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_6f_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3249] // VMOVDQA32 Vfv{K}{z},aKq,Wfv + (const void *)&gInstructions[ 3290] // VMOVDQA32 Vfv{K}{z},aKq,Wfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_6f_pp_01_w = @@ -36571,13 +37243,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_6f_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_6e_pp_01_l_00_wi_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3293] // VMOVQ Vdq,Eq + (const void *)&gInstructions[ 3334] // VMOVQ Vdq,Eq }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_6e_pp_01_l_00_wi_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3236] // VMOVD Vdq,Ed + (const void *)&gInstructions[ 3277] // VMOVD Vdq,Ed }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_6e_pp_01_l_00_wi = @@ -36614,7 +37286,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_6e_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_6d_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3906] // VPUNPCKHQDQ Vfv{K}{z},aKq,Hfv,Wfv|B64 + (const void *)&gInstructions[ 3951] // VPUNPCKHQDQ Vfv{K}{z},aKq,Hfv,Wfv|B64 }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_6d_pp_01_w = @@ -36640,7 +37312,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_6d_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_6c_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3914] // VPUNPCKLQDQ Vfv{K}{z},aKq,Hfv,Wfv|B64 + (const void *)&gInstructions[ 3959] // VPUNPCKLQDQ Vfv{K}{z},aKq,Hfv,Wfv|B64 }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_6c_pp_01_w = @@ -36666,7 +37338,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_6c_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_6b_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3376] // VPACKSSDW Vfv{K}{z},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 3421] // VPACKSSDW Vfv{K}{z},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_6b_pp_01_w = @@ -36692,7 +37364,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_6b_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_6a_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3904] // VPUNPCKHDQ Vfv{K}{z},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 3949] // VPUNPCKHDQ Vfv{K}{z},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_6a_pp_01_w = @@ -36718,7 +37390,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_6a_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_69_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3908] // VPUNPCKHWD Vfv{K}{z},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3953] // VPUNPCKHWD Vfv{K}{z},aKq,Hfv,Wfv }; const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_69_pp = @@ -36735,7 +37407,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_69_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_68_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3902] // VPUNPCKHBW Vfv{K}{z},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3947] // VPUNPCKHBW Vfv{K}{z},aKq,Hfv,Wfv }; const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_68_pp = @@ -36752,7 +37424,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_68_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_67_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3382] // VPACKUSWB Vfv{K}{z},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3427] // VPACKUSWB Vfv{K}{z},aKq,Hfv,Wfv }; const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_67_pp = @@ -36769,7 +37441,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_67_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_66_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3451] // VPCMPGTD rKq{K},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 3496] // VPCMPGTD rKq{K},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_66_pp_01_w = @@ -36795,7 +37467,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_66_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_65_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3455] // VPCMPGTW rKq{K},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3500] // VPCMPGTW rKq{K},aKq,Hfv,Wfv }; const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_65_pp = @@ -36812,7 +37484,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_65_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_64_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3449] // VPCMPGTB rKq{K},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3494] // VPCMPGTB rKq{K},aKq,Hfv,Wfv }; const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_64_pp = @@ -36829,7 +37501,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_64_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_63_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3378] // VPACKSSWB Vfv{K}{z},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3423] // VPACKSSWB Vfv{K}{z},aKq,Hfv,Wfv }; const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_63_pp = @@ -36846,7 +37518,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_63_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_62_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3912] // VPUNPCKLDQ Vfv{K}{z},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 3957] // VPUNPCKLDQ Vfv{K}{z},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_62_pp_01_w = @@ -36872,7 +37544,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_62_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_61_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3916] // VPUNPCKLWD Vfv{K}{z},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3961] // VPUNPCKLWD Vfv{K}{z},aKq,Hfv,Wfv }; const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_61_pp = @@ -36889,7 +37561,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_61_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_60_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3910] // VPUNPCKLBW Vfv{K}{z},aKq,Hfv,Wfv + (const void *)&gInstructions[ 3955] // VPUNPCKLBW Vfv{K}{z},aKq,Hfv,Wfv }; const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_60_pp = @@ -36906,7 +37578,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_60_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_5f_pp_03_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3196] // VMAXSD Vdq{K}{z},aKq,Hdq,Wsd{sae} + (const void *)&gInstructions[ 3237] // VMAXSD Vdq{K}{z},aKq,Hdq,Wsd{sae} }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_5f_pp_03_w = @@ -36921,7 +37593,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_5f_pp_03_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_5f_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3199] // VMAXSS Vdq{K}{z},aKq,Hdq,Wss{sae} + (const void *)&gInstructions[ 3240] // VMAXSS Vdq{K}{z},aKq,Hdq,Wss{sae} }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_5f_pp_02_w = @@ -36936,7 +37608,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_5f_pp_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_5f_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3191] // VMAXPD Vfv{K}{z},aKq,Hfv,Wfv|B64{sae} + (const void *)&gInstructions[ 3232] // VMAXPD Vfv{K}{z},aKq,Hfv,Wfv|B64{sae} }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_5f_pp_01_w = @@ -36951,7 +37623,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_5f_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_5f_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3194] // VMAXPS Vfv{K}{z},aKq,Hfv,Wfv|B32{sae} + (const void *)&gInstructions[ 3235] // VMAXPS Vfv{K}{z},aKq,Hfv,Wfv|B32{sae} }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_5f_pp_00_w = @@ -36977,7 +37649,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_5f_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_5e_pp_03_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2875] // VDIVSD Vdq{K}{z},aKq,Hdq,Wsd{er} + (const void *)&gInstructions[ 2916] // VDIVSD Vdq{K}{z},aKq,Hdq,Wsd{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_5e_pp_03_w = @@ -36992,7 +37664,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_5e_pp_03_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_5e_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2878] // VDIVSS Vdq{K}{z},aKq,Hdq,Wss{er} + (const void *)&gInstructions[ 2919] // VDIVSS Vdq{K}{z},aKq,Hdq,Wss{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_5e_pp_02_w = @@ -37007,7 +37679,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_5e_pp_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_5e_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2870] // VDIVPD Vfv{K}{z},aKq,Hfv,Wfv|B64{er} + (const void *)&gInstructions[ 2911] // VDIVPD Vfv{K}{z},aKq,Hfv,Wfv|B64{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_5e_pp_01_w = @@ -37022,7 +37694,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_5e_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_5e_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2873] // VDIVPS Vfv{K}{z},aKq,Hfv,Wfv|B32{er} + (const void *)&gInstructions[ 2914] // VDIVPS Vfv{K}{z},aKq,Hfv,Wfv|B32{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_5e_pp_00_w = @@ -37048,7 +37720,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_5e_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_5d_pp_03_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3219] // VMINSD Vdq{K}{z},aKq,Hdq,Wsd{sae} + (const void *)&gInstructions[ 3260] // VMINSD Vdq{K}{z},aKq,Hdq,Wsd{sae} }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_5d_pp_03_w = @@ -37063,7 +37735,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_5d_pp_03_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_5d_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3222] // VMINSS Vdq{K}{z},aKq,Hdq,Wss{sae} + (const void *)&gInstructions[ 3263] // VMINSS Vdq{K}{z},aKq,Hdq,Wss{sae} }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_5d_pp_02_w = @@ -37078,7 +37750,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_5d_pp_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_5d_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3214] // VMINPD Vfv{K}{z},aKq,Hfv,Wfv|B64{sae} + (const void *)&gInstructions[ 3255] // VMINPD Vfv{K}{z},aKq,Hfv,Wfv|B64{sae} }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_5d_pp_01_w = @@ -37093,7 +37765,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_5d_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_5d_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3217] // VMINPS Vfv{K}{z},aKq,Hfv,Wfv|B32{sae} + (const void *)&gInstructions[ 3258] // VMINPS Vfv{K}{z},aKq,Hfv,Wfv|B32{sae} }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_5d_pp_00_w = @@ -37119,7 +37791,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_5d_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_5c_pp_03_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4022] // VSUBSD Vdq{K}{z},aKq,Hdq,Wsd{er} + (const void *)&gInstructions[ 4069] // VSUBSD Vdq{K}{z},aKq,Hdq,Wsd{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_5c_pp_03_w = @@ -37134,7 +37806,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_5c_pp_03_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_5c_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4025] // VSUBSS Vdq{K}{z},aKq,Hdq,Wss{er} + (const void *)&gInstructions[ 4072] // VSUBSS Vdq{K}{z},aKq,Hdq,Wss{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_5c_pp_02_w = @@ -37149,7 +37821,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_5c_pp_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_5c_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4017] // VSUBPD Vfv{K}{z},aKq,Hfv,Wfv|B64{er} + (const void *)&gInstructions[ 4064] // VSUBPD Vfv{K}{z},aKq,Hfv,Wfv|B64{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_5c_pp_01_w = @@ -37164,7 +37836,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_5c_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_5c_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4020] // VSUBPS Vfv{K}{z},aKq,Hfv,Wfv|B32{er} + (const void *)&gInstructions[ 4067] // VSUBPS Vfv{K}{z},aKq,Hfv,Wfv|B32{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_5c_pp_00_w = @@ -37190,7 +37862,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_5c_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_5b_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2833] // VCVTTPS2DQ Vfv{K}{z},aKq,Wfv|B32{sae} + (const void *)&gInstructions[ 2874] // VCVTTPS2DQ Vfv{K}{z},aKq,Wfv|B32{sae} }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_5b_pp_02_w = @@ -37205,7 +37877,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_5b_pp_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_5b_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2775] // VCVTPS2DQ Vfv{K}{z},aKq,Wfv|B32{er} + (const void *)&gInstructions[ 2816] // VCVTPS2DQ Vfv{K}{z},aKq,Wfv|B32{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_5b_pp_01_w = @@ -37220,13 +37892,13 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_5b_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_5b_pp_00_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2791] // VCVTQQ2PS Vhv{K}{z},aKq,Wfv|B64{er} + (const void *)&gInstructions[ 2832] // VCVTQQ2PS Vhv{K}{z},aKq,Wfv|B64{er} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_5b_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2733] // VCVTDQ2PS Vfv{K}{z},aKq,Wfv|B32{er} + (const void *)&gInstructions[ 2774] // VCVTDQ2PS Vfv{K}{z},aKq,Wfv|B32{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_5b_pp_00_w = @@ -37252,7 +37924,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_5b_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_5a_pp_03_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2795] // VCVTSD2SS Vdq{K}{z},aKq,Hdq,Wsd{er} + (const void *)&gInstructions[ 2836] // VCVTSD2SS Vdq{K}{z},aKq,Hdq,Wsd{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_5a_pp_03_w = @@ -37267,7 +37939,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_5a_pp_03_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_5a_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2808] // VCVTSS2SD Vdq{K}{z},aKq,Hdq,Wss{sae} + (const void *)&gInstructions[ 2849] // VCVTSS2SD Vdq{K}{z},aKq,Hdq,Wss{sae} }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_5a_pp_02_w = @@ -37282,7 +37954,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_5a_pp_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_5a_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2756] // VCVTPD2PS Vhv{K}{z},aKq,Wfv|B64{er} + (const void *)&gInstructions[ 2797] // VCVTPD2PS Vhv{K}{z},aKq,Wfv|B64{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_5a_pp_01_w = @@ -37297,7 +37969,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_5a_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_5a_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2779] // VCVTPS2PD Vfv{K}{z},aKq,Whv|B32{sae} + (const void *)&gInstructions[ 2820] // VCVTPS2PD Vfv{K}{z},aKq,Whv|B32{sae} }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_5a_pp_00_w = @@ -37323,7 +37995,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_5a_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_59_pp_03_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3353] // VMULSD Vdq{K}{z},aKq,Hdq,Wsd{er} + (const void *)&gInstructions[ 3398] // VMULSD Vdq{K}{z},aKq,Hdq,Wsd{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_59_pp_03_w = @@ -37338,7 +38010,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_59_pp_03_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_59_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3356] // VMULSS Vdq{K}{z},aKq,Hdq,Wss{er} + (const void *)&gInstructions[ 3401] // VMULSS Vdq{K}{z},aKq,Hdq,Wss{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_59_pp_02_w = @@ -37353,7 +38025,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_59_pp_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_59_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3348] // VMULPD Vfv{K}{z},aKq,Hfv,Wfv|B64{er} + (const void *)&gInstructions[ 3393] // VMULPD Vfv{K}{z},aKq,Hfv,Wfv|B64{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_59_pp_01_w = @@ -37368,7 +38040,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_59_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_59_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3351] // VMULPS Vfv{K}{z},aKq,Hfv,Wfv|B32{er} + (const void *)&gInstructions[ 3396] // VMULPS Vfv{K}{z},aKq,Hfv,Wfv|B32{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_59_pp_00_w = @@ -37394,7 +38066,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_59_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_58_pp_03_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2651] // VADDSD Vdq{K}{z},aKq,Hdq,Wsd{er} + (const void *)&gInstructions[ 2692] // VADDSD Vdq{K}{z},aKq,Hdq,Wsd{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_58_pp_03_w = @@ -37409,7 +38081,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_58_pp_03_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_58_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2654] // VADDSS Vdq{K}{z},aKq,Hdq,Wss{er} + (const void *)&gInstructions[ 2695] // VADDSS Vdq{K}{z},aKq,Hdq,Wss{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_58_pp_02_w = @@ -37424,7 +38096,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_58_pp_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_58_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2646] // VADDPD Vfv{K}{z},aKq,Hfv,Wfv|B64{er} + (const void *)&gInstructions[ 2687] // VADDPD Vfv{K}{z},aKq,Hfv,Wfv|B64{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_58_pp_01_w = @@ -37439,7 +38111,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_58_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_58_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2649] // VADDPS Vfv{K}{z},aKq,Hfv,Wfv|B32{er} + (const void *)&gInstructions[ 2690] // VADDPS Vfv{K}{z},aKq,Hfv,Wfv|B32{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_58_pp_00_w = @@ -37465,7 +38137,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_58_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_57_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4045] // VXORPD Vfv{K}{z},aKq,Hfv,Wfv|B64 + (const void *)&gInstructions[ 4092] // VXORPD Vfv{K}{z},aKq,Hfv,Wfv|B64 }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_57_pp_01_w = @@ -37480,7 +38152,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_57_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_57_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4047] // VXORPS Vfv{K}{z},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 4094] // VXORPS Vfv{K}{z},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_57_pp_00_w = @@ -37506,7 +38178,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_57_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_56_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3361] // VORPD Vfv{K}{z},aKq,Hfv,Wfv|B64 + (const void *)&gInstructions[ 3406] // VORPD Vfv{K}{z},aKq,Hfv,Wfv|B64 }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_56_pp_01_w = @@ -37521,7 +38193,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_56_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_56_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3363] // VORPS Vfv{K}{z},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 3408] // VORPS Vfv{K}{z},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_56_pp_00_w = @@ -37547,7 +38219,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_56_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_55_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2670] // VANDNPD Vfv{K}{z},aKq,Hfv,Wfv|B64 + (const void *)&gInstructions[ 2711] // VANDNPD Vfv{K}{z},aKq,Hfv,Wfv|B64 }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_55_pp_01_w = @@ -37562,7 +38234,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_55_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_55_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2672] // VANDNPS Vfv{K}{z},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 2713] // VANDNPS Vfv{K}{z},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_55_pp_00_w = @@ -37588,7 +38260,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_55_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_54_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2674] // VANDPD Vfv{K}{z},aKq,Hfv,Wfv|B64 + (const void *)&gInstructions[ 2715] // VANDPD Vfv{K}{z},aKq,Hfv,Wfv|B64 }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_54_pp_01_w = @@ -37603,7 +38275,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_54_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_54_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2676] // VANDPS Vfv{K}{z},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 2717] // VANDPS Vfv{K}{z},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_54_pp_00_w = @@ -37629,7 +38301,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_54_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_51_pp_03_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4010] // VSQRTSD Vdq{K}{z},aKq,Hdq,Wsd{er} + (const void *)&gInstructions[ 4057] // VSQRTSD Vdq{K}{z},aKq,Hdq,Wsd{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_51_pp_03_w = @@ -37644,7 +38316,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_51_pp_03_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_51_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4013] // VSQRTSS Vdq{K}{z},aKq,Hdq,Wss{er} + (const void *)&gInstructions[ 4060] // VSQRTSS Vdq{K}{z},aKq,Hdq,Wss{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_51_pp_02_w = @@ -37659,7 +38331,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_51_pp_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_51_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4005] // VSQRTPD Vfv{K}{z},aKq,Wfv|B64{er} + (const void *)&gInstructions[ 4052] // VSQRTPD Vfv{K}{z},aKq,Wfv|B64{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_51_pp_01_w = @@ -37674,7 +38346,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_51_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_51_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4008] // VSQRTPS Vfv{K}{z},aKq,Wfv|B32{er} + (const void *)&gInstructions[ 4055] // VSQRTPS Vfv{K}{z},aKq,Wfv|B32{er} }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_51_pp_00_w = @@ -37697,62 +38369,40 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_51_pp = } }; -const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_2f_pp_03_l_00_w_00_leaf = +const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_2f_pp_03_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2723] // VCOMXSS Vdq,Wss{sae} + (const void *)&gInstructions[ 2762] // VCOMXSD Vdq,Wsd{sae} }; -const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_2f_pp_03_l_00_w = +const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_2f_pp_03_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gEvexMap_mmmmm_01_opcode_2f_pp_03_l_00_w_00_leaf, - /* 01 */ (const void *)ND_NULL, - } -}; - -const ND_TABLE_EX_L gEvexMap_mmmmm_01_opcode_2f_pp_03_l = -{ - ND_ILUT_EX_L, - { - /* 00 */ (const void *)&gEvexMap_mmmmm_01_opcode_2f_pp_03_l_00_w, - /* 01 */ (const void *)ND_NULL, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)ND_NULL, + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gEvexMap_mmmmm_01_opcode_2f_pp_03_w_01_leaf, } }; -const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_2f_pp_02_l_00_w_01_leaf = +const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_2f_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2721] // VCOMXSD Vdq,Wsd{sae} + (const void *)&gInstructions[ 2764] // VCOMXSS Vdq,Wss{sae} }; -const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_2f_pp_02_l_00_w = +const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_2f_pp_02_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gEvexMap_mmmmm_01_opcode_2f_pp_02_l_00_w_01_leaf, - } -}; - -const ND_TABLE_EX_L gEvexMap_mmmmm_01_opcode_2f_pp_02_l = -{ - ND_ILUT_EX_L, - { - /* 00 */ (const void *)&gEvexMap_mmmmm_01_opcode_2f_pp_02_l_00_w, + /* 00 */ (const void *)&gEvexMap_mmmmm_01_opcode_2f_pp_02_w_00_leaf, /* 01 */ (const void *)ND_NULL, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)ND_NULL, } }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_2f_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2713] // VCOMISD Vdq,Wsd{sae} + (const void *)&gInstructions[ 2754] // VCOMISD Vdq,Wsd{sae} }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_2f_pp_01_w = @@ -37767,7 +38417,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_2f_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_2f_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2716] // VCOMISS Vdq,Wss{sae} + (const void *)&gInstructions[ 2757] // VCOMISS Vdq,Wss{sae} }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_2f_pp_00_w = @@ -37785,67 +38435,45 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_2f_pp = { /* 00 */ (const void *)&gEvexMap_mmmmm_01_opcode_2f_pp_00_w, /* 01 */ (const void *)&gEvexMap_mmmmm_01_opcode_2f_pp_01_w, - /* 02 */ (const void *)&gEvexMap_mmmmm_01_opcode_2f_pp_02_l, - /* 03 */ (const void *)&gEvexMap_mmmmm_01_opcode_2f_pp_03_l, + /* 02 */ (const void *)&gEvexMap_mmmmm_01_opcode_2f_pp_02_w, + /* 03 */ (const void *)&gEvexMap_mmmmm_01_opcode_2f_pp_03_w, } }; -const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_2e_pp_03_l_00_w_00_leaf = +const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_2e_pp_03_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4036] // VUCOMXSS Vdq,Wss{sae} + (const void *)&gInstructions[ 4081] // VUCOMXSD Vdq,Wsd{sae} }; -const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_2e_pp_03_l_00_w = +const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_2e_pp_03_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gEvexMap_mmmmm_01_opcode_2e_pp_03_l_00_w_00_leaf, - /* 01 */ (const void *)ND_NULL, - } -}; - -const ND_TABLE_EX_L gEvexMap_mmmmm_01_opcode_2e_pp_03_l = -{ - ND_ILUT_EX_L, - { - /* 00 */ (const void *)&gEvexMap_mmmmm_01_opcode_2e_pp_03_l_00_w, - /* 01 */ (const void *)ND_NULL, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)ND_NULL, + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gEvexMap_mmmmm_01_opcode_2e_pp_03_w_01_leaf, } }; -const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_2e_pp_02_l_00_w_01_leaf = +const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_2e_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4034] // VUCOMXSD Vdq,Wsd{sae} + (const void *)&gInstructions[ 4083] // VUCOMXSS Vdq,Wss{sae} }; -const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_2e_pp_02_l_00_w = +const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_2e_pp_02_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gEvexMap_mmmmm_01_opcode_2e_pp_02_l_00_w_01_leaf, - } -}; - -const ND_TABLE_EX_L gEvexMap_mmmmm_01_opcode_2e_pp_02_l = -{ - ND_ILUT_EX_L, - { - /* 00 */ (const void *)&gEvexMap_mmmmm_01_opcode_2e_pp_02_l_00_w, + /* 00 */ (const void *)&gEvexMap_mmmmm_01_opcode_2e_pp_02_w_00_leaf, /* 01 */ (const void *)ND_NULL, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)ND_NULL, } }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_2e_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4029] // VUCOMISD Vdq,Wsd{sae} + (const void *)&gInstructions[ 4076] // VUCOMISD Vdq,Wsd{sae} }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_2e_pp_01_w = @@ -37860,7 +38488,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_2e_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_2e_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4032] // VUCOMISS Vdq,Wss{sae} + (const void *)&gInstructions[ 4079] // VUCOMISS Vdq,Wss{sae} }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_2e_pp_00_w = @@ -37878,21 +38506,21 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_2e_pp = { /* 00 */ (const void *)&gEvexMap_mmmmm_01_opcode_2e_pp_00_w, /* 01 */ (const void *)&gEvexMap_mmmmm_01_opcode_2e_pp_01_w, - /* 02 */ (const void *)&gEvexMap_mmmmm_01_opcode_2e_pp_02_l, - /* 03 */ (const void *)&gEvexMap_mmmmm_01_opcode_2e_pp_03_l, + /* 02 */ (const void *)&gEvexMap_mmmmm_01_opcode_2e_pp_02_w, + /* 03 */ (const void *)&gEvexMap_mmmmm_01_opcode_2e_pp_03_w, } }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_2d_pp_03_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2793] // VCVTSD2SI Gy,Wsd{er} + (const void *)&gInstructions[ 2834] // VCVTSD2SI Gy,Wsd{er} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_2d_pp_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2811] // VCVTSS2SI Gy,Wss{er} + (const void *)&gInstructions[ 2852] // VCVTSS2SI Gy,Wss{er} }; const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_2d_pp = @@ -37909,13 +38537,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_2d_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_2c_pp_03_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2844] // VCVTTSD2SI Gy,Wsd{sae} + (const void *)&gInstructions[ 2885] // VCVTTSD2SI Gy,Wsd{sae} }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_2c_pp_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2851] // VCVTTSS2SI Gy,Wss{sae} + (const void *)&gInstructions[ 2892] // VCVTTSS2SI Gy,Wss{sae} }; const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_2c_pp = @@ -37932,7 +38560,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_2c_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_2b_pp_01_modrmmod_00_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3289] // VMOVNTPD Mfv,Vfv + (const void *)&gInstructions[ 3330] // VMOVNTPD Mfv,Vfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_2b_pp_01_modrmmod_00_w = @@ -37956,7 +38584,7 @@ const ND_TABLE_MODRM_MOD gEvexMap_mmmmm_01_opcode_2b_pp_01_modrmmod = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_2b_pp_00_modrmmod_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3291] // VMOVNTPS Mfv,Vfv + (const void *)&gInstructions[ 3332] // VMOVNTPS Mfv,Vfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_2b_pp_00_modrmmod_00_w = @@ -37991,13 +38619,13 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_2b_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_2a_pp_03_wi_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2803] // VCVTSI2SD Vdq,Hdq{er},Ey + (const void *)&gInstructions[ 2844] // VCVTSI2SD Vdq,Hdq{er},Ey }; const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_2a_pp_03_wi_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2802] // VCVTSI2SD Vdq,Hdq,Ey + (const void *)&gInstructions[ 2843] // VCVTSI2SD Vdq,Hdq,Ey }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_2a_pp_03_wi = @@ -38012,7 +38640,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_2a_pp_03_wi = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_2a_pp_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2806] // VCVTSI2SS Vdq,Hdq{er},Ey + (const void *)&gInstructions[ 2847] // VCVTSI2SS Vdq,Hdq{er},Ey }; const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_2a_pp = @@ -38029,7 +38657,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_2a_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_29_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3229] // VMOVAPD Wfv{K}{z},aKq,Vfv + (const void *)&gInstructions[ 3270] // VMOVAPD Wfv{K}{z},aKq,Vfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_29_pp_01_w = @@ -38044,7 +38672,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_29_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_29_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3233] // VMOVAPS Wfv{K}{z},aKq,Vfv + (const void *)&gInstructions[ 3274] // VMOVAPS Wfv{K}{z},aKq,Vfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_29_pp_00_w = @@ -38070,7 +38698,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_29_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_28_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3228] // VMOVAPD Vfv{K}{z},aKq,Wfv + (const void *)&gInstructions[ 3269] // VMOVAPD Vfv{K}{z},aKq,Wfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_28_pp_01_w = @@ -38085,7 +38713,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_28_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_28_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3232] // VMOVAPS Vfv{K}{z},aKq,Wfv + (const void *)&gInstructions[ 3273] // VMOVAPS Vfv{K}{z},aKq,Wfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_28_pp_00_w = @@ -38111,7 +38739,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_28_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_17_pp_01_modrmmod_00_l_00_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3266] // VMOVHPD Mq,Vdq + (const void *)&gInstructions[ 3307] // VMOVHPD Mq,Vdq }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_17_pp_01_modrmmod_00_l_00_w = @@ -38146,7 +38774,7 @@ const ND_TABLE_MODRM_MOD gEvexMap_mmmmm_01_opcode_17_pp_01_modrmmod = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_17_pp_00_modrmmod_00_l_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3270] // VMOVHPS Mq,Vdq + (const void *)&gInstructions[ 3311] // VMOVHPS Mq,Vdq }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_17_pp_00_modrmmod_00_l_00_w = @@ -38192,7 +38820,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_17_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_16_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3313] // VMOVSHDUP Vfv{K}{z},aKq,Wfv + (const void *)&gInstructions[ 3358] // VMOVSHDUP Vfv{K}{z},aKq,Wfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_16_pp_02_w = @@ -38207,7 +38835,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_16_pp_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_16_pp_01_modrmmod_00_l_00_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3265] // VMOVHPD Vdq,Hdq,Mq + (const void *)&gInstructions[ 3306] // VMOVHPD Vdq,Hdq,Mq }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_16_pp_01_modrmmod_00_l_00_w = @@ -38242,7 +38870,7 @@ const ND_TABLE_MODRM_MOD gEvexMap_mmmmm_01_opcode_16_pp_01_modrmmod = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_16_pp_00_modrmmod_01_l_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3273] // VMOVLHPS Vdq,Hdq,Udq + (const void *)&gInstructions[ 3314] // VMOVLHPS Vdq,Hdq,Udq }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_16_pp_00_modrmmod_01_l_00_w = @@ -38268,7 +38896,7 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_01_opcode_16_pp_00_modrmmod_01_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_16_pp_00_modrmmod_00_l_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3269] // VMOVHPS Vdq,Hdq,Mq + (const void *)&gInstructions[ 3310] // VMOVHPS Vdq,Hdq,Mq }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_16_pp_00_modrmmod_00_l_00_w = @@ -38314,7 +38942,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_16_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_15_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4037] // VUNPCKHPD Vfv{K}{z},aKq,Hfv,Wfv|B64 + (const void *)&gInstructions[ 4084] // VUNPCKHPD Vfv{K}{z},aKq,Hfv,Wfv|B64 }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_15_pp_01_w = @@ -38329,7 +38957,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_15_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_15_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4039] // VUNPCKHPS Vfv{K}{z},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 4086] // VUNPCKHPS Vfv{K}{z},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_15_pp_00_w = @@ -38355,7 +38983,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_15_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_14_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4041] // VUNPCKLPD Vfv{K}{z},aKq,Hfv,Wfv|B64 + (const void *)&gInstructions[ 4088] // VUNPCKLPD Vfv{K}{z},aKq,Hfv,Wfv|B64 }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_14_pp_01_w = @@ -38370,7 +38998,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_14_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_14_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4043] // VUNPCKLPS Vfv{K}{z},aKq,Hfv,Wfv|B32 + (const void *)&gInstructions[ 4090] // VUNPCKLPS Vfv{K}{z},aKq,Hfv,Wfv|B32 }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_14_pp_00_w = @@ -38396,7 +39024,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_14_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_13_pp_01_modrmmod_00_l_00_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3276] // VMOVLPD Mq,Vdq + (const void *)&gInstructions[ 3317] // VMOVLPD Mq,Vdq }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_13_pp_01_modrmmod_00_l_00_w = @@ -38431,7 +39059,7 @@ const ND_TABLE_MODRM_MOD gEvexMap_mmmmm_01_opcode_13_pp_01_modrmmod = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_13_pp_00_modrmmod_00_l_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3280] // VMOVLPS Mq,Vdq + (const void *)&gInstructions[ 3321] // VMOVLPS Mq,Vdq }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_13_pp_00_modrmmod_00_l_00_w = @@ -38477,7 +39105,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_13_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_12_pp_03_l_02_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3244] // VMOVDDUP Voq{K}{z},aKq,Woq + (const void *)&gInstructions[ 3285] // VMOVDDUP Voq{K}{z},aKq,Woq }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_12_pp_03_l_02_w = @@ -38492,7 +39120,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_12_pp_03_l_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_12_pp_03_l_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3243] // VMOVDDUP Vqq{K}{z},aKq,Wqq + (const void *)&gInstructions[ 3284] // VMOVDDUP Vqq{K}{z},aKq,Wqq }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_12_pp_03_l_01_w = @@ -38507,7 +39135,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_12_pp_03_l_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_12_pp_03_l_00_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3242] // VMOVDDUP Vdq{K}{z},aKq,Wq + (const void *)&gInstructions[ 3283] // VMOVDDUP Vdq{K}{z},aKq,Wq }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_12_pp_03_l_00_w = @@ -38533,7 +39161,7 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_01_opcode_12_pp_03_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_12_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3315] // VMOVSLDUP Vfv{K}{z},aKq,Wfv + (const void *)&gInstructions[ 3360] // VMOVSLDUP Vfv{K}{z},aKq,Wfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_12_pp_02_w = @@ -38548,7 +39176,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_12_pp_02_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_12_pp_01_modrmmod_00_l_00_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3275] // VMOVLPD Vdq,Hdq,Mq + (const void *)&gInstructions[ 3316] // VMOVLPD Vdq,Hdq,Mq }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_12_pp_01_modrmmod_00_l_00_w = @@ -38583,7 +39211,7 @@ const ND_TABLE_MODRM_MOD gEvexMap_mmmmm_01_opcode_12_pp_01_modrmmod = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_12_pp_00_modrmmod_01_l_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3263] // VMOVHLPS Vdq,Hdq,Udq + (const void *)&gInstructions[ 3304] // VMOVHLPS Vdq,Hdq,Udq }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_12_pp_00_modrmmod_01_l_00_w = @@ -38609,7 +39237,7 @@ const ND_TABLE_EX_L gEvexMap_mmmmm_01_opcode_12_pp_00_modrmmod_01_l = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_12_pp_00_modrmmod_00_l_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3279] // VMOVLPS Vdq,Hdq,Mq + (const void *)&gInstructions[ 3320] // VMOVLPS Vdq,Hdq,Mq }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_12_pp_00_modrmmod_00_l_00_w = @@ -38655,7 +39283,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_12_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_11_pp_03_modrmmod_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3304] // VMOVSD Udq{K}{z},aKq,Hdq,Vdq + (const void *)&gInstructions[ 3349] // VMOVSD Udq{K}{z},aKq,Hdq,Vdq }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_11_pp_03_modrmmod_01_w = @@ -38670,7 +39298,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_11_pp_03_modrmmod_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_11_pp_03_modrmmod_00_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3303] // VMOVSD Msd{K},aKq,Vdq + (const void *)&gInstructions[ 3348] // VMOVSD Msd{K},aKq,Vdq }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_11_pp_03_modrmmod_00_w = @@ -38694,7 +39322,7 @@ const ND_TABLE_MODRM_MOD gEvexMap_mmmmm_01_opcode_11_pp_03_modrmmod = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_11_pp_02_modrmmod_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3320] // VMOVSS Udq{K}{z},aKq,Hdq,Vdq + (const void *)&gInstructions[ 3365] // VMOVSS Udq{K}{z},aKq,Hdq,Vdq }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_11_pp_02_modrmmod_01_w = @@ -38709,7 +39337,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_11_pp_02_modrmmod_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_11_pp_02_modrmmod_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3319] // VMOVSS Mss{K},aKq,Vdq + (const void *)&gInstructions[ 3364] // VMOVSS Mss{K},aKq,Vdq }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_11_pp_02_modrmmod_00_w = @@ -38733,7 +39361,7 @@ const ND_TABLE_MODRM_MOD gEvexMap_mmmmm_01_opcode_11_pp_02_modrmmod = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_11_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3326] // VMOVUPD Wfv{K}{z},aKq,Vfv + (const void *)&gInstructions[ 3371] // VMOVUPD Wfv{K}{z},aKq,Vfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_11_pp_01_w = @@ -38748,7 +39376,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_11_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_11_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3330] // VMOVUPS Wfv{K}{z},aKq,Vfv + (const void *)&gInstructions[ 3375] // VMOVUPS Wfv{K}{z},aKq,Vfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_11_pp_00_w = @@ -38774,7 +39402,7 @@ const ND_TABLE_EX_PP gEvexMap_mmmmm_01_opcode_11_pp = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_10_pp_03_modrmmod_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3302] // VMOVSD Vdq{K}{z},aKq,Hdq,Udq + (const void *)&gInstructions[ 3347] // VMOVSD Vdq{K}{z},aKq,Hdq,Udq }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_10_pp_03_modrmmod_01_w = @@ -38789,7 +39417,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_10_pp_03_modrmmod_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_10_pp_03_modrmmod_00_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3301] // VMOVSD Vdq{K}{z},aKq,Msd + (const void *)&gInstructions[ 3346] // VMOVSD Vdq{K}{z},aKq,Msd }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_10_pp_03_modrmmod_00_w = @@ -38813,7 +39441,7 @@ const ND_TABLE_MODRM_MOD gEvexMap_mmmmm_01_opcode_10_pp_03_modrmmod = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_10_pp_02_modrmmod_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3318] // VMOVSS Vdq{K}{z},aKq,Hdq,Udq + (const void *)&gInstructions[ 3363] // VMOVSS Vdq{K}{z},aKq,Hdq,Udq }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_10_pp_02_modrmmod_01_w = @@ -38828,7 +39456,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_10_pp_02_modrmmod_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_10_pp_02_modrmmod_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3317] // VMOVSS Vdq{K}{z},aKq,Mss + (const void *)&gInstructions[ 3362] // VMOVSS Vdq{K}{z},aKq,Mss }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_10_pp_02_modrmmod_00_w = @@ -38852,7 +39480,7 @@ const ND_TABLE_MODRM_MOD gEvexMap_mmmmm_01_opcode_10_pp_02_modrmmod = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_10_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3325] // VMOVUPD Vfv{K}{z},aKq,Wfv + (const void *)&gInstructions[ 3370] // VMOVUPD Vfv{K}{z},aKq,Wfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_10_pp_01_w = @@ -38867,7 +39495,7 @@ const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_10_pp_01_w = const ND_TABLE_INSTRUCTION gEvexMap_mmmmm_01_opcode_10_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3329] // VMOVUPS Vfv{K}{z},aKq,Wfv + (const void *)&gInstructions[ 3374] // VMOVUPS Vfv{K}{z},aKq,Wfv }; const ND_TABLE_EX_W gEvexMap_mmmmm_01_opcode_10_pp_00_w = diff --git a/bddisasm/include/bdx86_table_root.h b/bddisasm/include/bdx86_table_root.h index 2c356a9..8e70711 100644 --- a/bddisasm/include/bdx86_table_root.h +++ b/bddisasm/include/bdx86_table_root.h @@ -13,7 +13,7 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_ff_modrmreg_06_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1965] // PUSH Ev + (const void *)&gInstructions[ 1969] // PUSH Ev }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_ff_modrmreg_05_modrmmod_00_leaf = @@ -115,7 +115,7 @@ const ND_TABLE_MODRM_REG gLegacyMap_opcode_fe_modrmreg = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_fd_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2506] // STD + (const void *)&gInstructions[ 2512] // STD }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_fc_leaf = @@ -127,7 +127,7 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_fc_leaf = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_fb_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2508] // STI + (const void *)&gInstructions[ 2514] // STI }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_fa_leaf = @@ -139,7 +139,7 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_fa_leaf = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_f9_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2505] // STC + (const void *)&gInstructions[ 2511] // STC }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_f8_leaf = @@ -169,31 +169,31 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_f7_modrmreg_05_leaf = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_f7_modrmreg_04_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1478] // MUL Ev + (const void *)&gInstructions[ 1480] // MUL Ev }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_f7_modrmreg_03_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1500] // NEG Ev + (const void *)&gInstructions[ 1502] // NEG Ev }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_f7_modrmreg_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1579] // NOT Ev + (const void *)&gInstructions[ 1581] // NOT Ev }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_f7_modrmreg_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2603] // TEST Ev,Iz + (const void *)&gInstructions[ 2633] // TEST Ev,Iz }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_f7_modrmreg_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2602] // TEST Ev,Iz + (const void *)&gInstructions[ 2632] // TEST Ev,Iz }; const ND_TABLE_MODRM_REG gLegacyMap_opcode_f7_modrmreg = @@ -232,31 +232,31 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_f6_modrmreg_05_leaf = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_f6_modrmreg_04_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1477] // MUL Eb + (const void *)&gInstructions[ 1479] // MUL Eb }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_f6_modrmreg_03_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1499] // NEG Eb + (const void *)&gInstructions[ 1501] // NEG Eb }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_f6_modrmreg_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1578] // NOT Eb + (const void *)&gInstructions[ 1580] // NOT Eb }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_f6_modrmreg_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2601] // TEST Eb,Ib + (const void *)&gInstructions[ 2631] // TEST Eb,Ib }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_f6_modrmreg_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2600] // TEST Eb,Ib + (const void *)&gInstructions[ 2630] // TEST Eb,Ib }; const ND_TABLE_MODRM_REG gLegacyMap_opcode_f6_modrmreg = @@ -295,13 +295,13 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_f1_leaf = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_ef_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1639] // OUT DX,eAX + (const void *)&gInstructions[ 1641] // OUT DX,eAX }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_ee_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1638] // OUT DX,AL + (const void *)&gInstructions[ 1640] // OUT DX,AL }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_ed_leaf = @@ -343,13 +343,13 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_e8_leaf = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_e7_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1637] // OUT Ib,eAX + (const void *)&gInstructions[ 1639] // OUT Ib,eAX }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_e6_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1636] // OUT Ib,AL + (const void *)&gInstructions[ 1638] // OUT Ib,AL }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_e5_leaf = @@ -2142,13 +2142,13 @@ const ND_TABLE_MODRM_REG gLegacyMap_opcode_d8_modrmreg = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_d7_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4084] // XLATB + (const void *)&gInstructions[ 4133] // XLATB }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_d6_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2233] // SALC + (const void *)&gInstructions[ 2239] // SALC }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_d5_leaf = @@ -2166,49 +2166,49 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_d4_leaf = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_d3_modrmreg_07_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2275] // SAR Ev,CL + (const void *)&gInstructions[ 2281] // SAR Ev,CL }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_d3_modrmreg_06_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2232] // SAL Ev,CL + (const void *)&gInstructions[ 2238] // SAL Ev,CL }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_d3_modrmreg_05_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2469] // SHR Ev,CL + (const void *)&gInstructions[ 2475] // SHR Ev,CL }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_d3_modrmreg_04_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2407] // SHL Ev,CL + (const void *)&gInstructions[ 2413] // SHL Ev,CL }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_d3_modrmreg_03_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2071] // RCR Ev,CL + (const void *)&gInstructions[ 2075] // RCR Ev,CL }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_d3_modrmreg_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2027] // RCL Ev,CL + (const void *)&gInstructions[ 2031] // RCL Ev,CL }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_d3_modrmreg_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2179] // ROR Ev,CL + (const void *)&gInstructions[ 2185] // ROR Ev,CL }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_d3_modrmreg_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2137] // ROL Ev,CL + (const void *)&gInstructions[ 2143] // ROL Ev,CL }; const ND_TABLE_MODRM_REG gLegacyMap_opcode_d3_modrmreg = @@ -2229,49 +2229,49 @@ const ND_TABLE_MODRM_REG gLegacyMap_opcode_d3_modrmreg = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_d2_modrmreg_07_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2274] // SAR Eb,CL + (const void *)&gInstructions[ 2280] // SAR Eb,CL }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_d2_modrmreg_06_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2231] // SAL Eb,CL + (const void *)&gInstructions[ 2237] // SAL Eb,CL }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_d2_modrmreg_05_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2468] // SHR Eb,CL + (const void *)&gInstructions[ 2474] // SHR Eb,CL }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_d2_modrmreg_04_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2406] // SHL Eb,CL + (const void *)&gInstructions[ 2412] // SHL Eb,CL }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_d2_modrmreg_03_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2070] // RCR Eb,CL + (const void *)&gInstructions[ 2074] // RCR Eb,CL }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_d2_modrmreg_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2026] // RCL Eb,CL + (const void *)&gInstructions[ 2030] // RCL Eb,CL }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_d2_modrmreg_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2178] // ROR Eb,CL + (const void *)&gInstructions[ 2184] // ROR Eb,CL }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_d2_modrmreg_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2136] // ROL Eb,CL + (const void *)&gInstructions[ 2142] // ROL Eb,CL }; const ND_TABLE_MODRM_REG gLegacyMap_opcode_d2_modrmreg = @@ -2292,49 +2292,49 @@ const ND_TABLE_MODRM_REG gLegacyMap_opcode_d2_modrmreg = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_d1_modrmreg_07_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2273] // SAR Ev,1 + (const void *)&gInstructions[ 2279] // SAR Ev,1 }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_d1_modrmreg_06_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2230] // SAL Ev,1 + (const void *)&gInstructions[ 2236] // SAL Ev,1 }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_d1_modrmreg_05_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2467] // SHR Ev,1 + (const void *)&gInstructions[ 2473] // SHR Ev,1 }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_d1_modrmreg_04_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2405] // SHL Ev,1 + (const void *)&gInstructions[ 2411] // SHL Ev,1 }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_d1_modrmreg_03_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2069] // RCR Ev,1 + (const void *)&gInstructions[ 2073] // RCR Ev,1 }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_d1_modrmreg_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2025] // RCL Ev,1 + (const void *)&gInstructions[ 2029] // RCL Ev,1 }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_d1_modrmreg_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2177] // ROR Ev,1 + (const void *)&gInstructions[ 2183] // ROR Ev,1 }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_d1_modrmreg_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2135] // ROL Ev,1 + (const void *)&gInstructions[ 2141] // ROL Ev,1 }; const ND_TABLE_MODRM_REG gLegacyMap_opcode_d1_modrmreg = @@ -2355,49 +2355,49 @@ const ND_TABLE_MODRM_REG gLegacyMap_opcode_d1_modrmreg = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_d0_modrmreg_07_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2272] // SAR Eb,1 + (const void *)&gInstructions[ 2278] // SAR Eb,1 }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_d0_modrmreg_06_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2229] // SAL Eb,1 + (const void *)&gInstructions[ 2235] // SAL Eb,1 }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_d0_modrmreg_05_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2466] // SHR Eb,1 + (const void *)&gInstructions[ 2472] // SHR Eb,1 }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_d0_modrmreg_04_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2404] // SHL Eb,1 + (const void *)&gInstructions[ 2410] // SHL Eb,1 }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_d0_modrmreg_03_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2068] // RCR Eb,1 + (const void *)&gInstructions[ 2072] // RCR Eb,1 }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_d0_modrmreg_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2024] // RCL Eb,1 + (const void *)&gInstructions[ 2028] // RCL Eb,1 }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_d0_modrmreg_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2176] // ROR Eb,1 + (const void *)&gInstructions[ 2182] // ROR Eb,1 }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_d0_modrmreg_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2134] // ROL Eb,1 + (const void *)&gInstructions[ 2140] // ROL Eb,1 }; const ND_TABLE_MODRM_REG gLegacyMap_opcode_d0_modrmreg = @@ -2467,13 +2467,13 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_cc_leaf = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_cb_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2089] // RETF + (const void *)&gInstructions[ 2095] // RETF }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_ca_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2088] // RETF Iw + (const void *)&gInstructions[ 2094] // RETF Iw }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_c9_leaf = @@ -2491,7 +2491,7 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_c8_leaf = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_c7_modrmreg_07_modrmmod_01_modrmrm_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4071] // XBEGIN Jz + (const void *)&gInstructions[ 4120] // XBEGIN Jz }; const ND_TABLE_MODRM_RM gLegacyMap_opcode_c7_modrmreg_07_modrmmod_01_modrmrm = @@ -2542,7 +2542,7 @@ const ND_TABLE_MODRM_REG gLegacyMap_opcode_c7_modrmreg = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_c6_modrmreg_07_modrmmod_01_modrmrm_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4068] // XABORT Ib + (const void *)&gInstructions[ 4117] // XABORT Ib }; const ND_TABLE_MODRM_RM gLegacyMap_opcode_c6_modrmreg_07_modrmmod_01_modrmrm = @@ -2623,61 +2623,61 @@ const ND_TABLE_MODRM_MOD gLegacyMap_opcode_c4_modrmmod = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_c3_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2091] // RETN + (const void *)&gInstructions[ 2097] // RETN }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_c2_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2090] // RETN Iw + (const void *)&gInstructions[ 2096] // RETN Iw }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_c1_modrmreg_07_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2271] // SAR Ev,Ib + (const void *)&gInstructions[ 2277] // SAR Ev,Ib }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_c1_modrmreg_06_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2228] // SAL Ev,Ib + (const void *)&gInstructions[ 2234] // SAL Ev,Ib }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_c1_modrmreg_05_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2465] // SHR Ev,Ib + (const void *)&gInstructions[ 2471] // SHR Ev,Ib }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_c1_modrmreg_04_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2403] // SHL Ev,Ib + (const void *)&gInstructions[ 2409] // SHL Ev,Ib }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_c1_modrmreg_03_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2067] // RCR Ev,Ib + (const void *)&gInstructions[ 2071] // RCR Ev,Ib }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_c1_modrmreg_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2023] // RCL Ev,Ib + (const void *)&gInstructions[ 2027] // RCL Ev,Ib }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_c1_modrmreg_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2175] // ROR Ev,Ib + (const void *)&gInstructions[ 2181] // ROR Ev,Ib }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_c1_modrmreg_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2133] // ROL Ev,Ib + (const void *)&gInstructions[ 2139] // ROL Ev,Ib }; const ND_TABLE_MODRM_REG gLegacyMap_opcode_c1_modrmreg = @@ -2698,49 +2698,49 @@ const ND_TABLE_MODRM_REG gLegacyMap_opcode_c1_modrmreg = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_c0_modrmreg_07_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2270] // SAR Eb,Ib + (const void *)&gInstructions[ 2276] // SAR Eb,Ib }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_c0_modrmreg_06_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2227] // SAL Eb,Ib + (const void *)&gInstructions[ 2233] // SAL Eb,Ib }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_c0_modrmreg_05_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2464] // SHR Eb,Ib + (const void *)&gInstructions[ 2470] // SHR Eb,Ib }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_c0_modrmreg_04_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2402] // SHL Eb,Ib + (const void *)&gInstructions[ 2408] // SHL Eb,Ib }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_c0_modrmreg_03_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2066] // RCR Eb,Ib + (const void *)&gInstructions[ 2070] // RCR Eb,Ib }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_c0_modrmreg_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2022] // RCL Eb,Ib + (const void *)&gInstructions[ 2026] // RCL Eb,Ib }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_c0_modrmreg_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2174] // ROR Eb,Ib + (const void *)&gInstructions[ 2180] // ROR Eb,Ib }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_c0_modrmreg_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2132] // ROL Eb,Ib + (const void *)&gInstructions[ 2138] // ROL Eb,Ib }; const ND_TABLE_MODRM_REG gLegacyMap_opcode_c0_modrmreg = @@ -2857,13 +2857,13 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_b0_leaf = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_af_dsize_03_auxiliary_05_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2316] // SCASQ RAX,Yv + (const void *)&gInstructions[ 2322] // SCASQ RAX,Yv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_af_dsize_03_auxiliary_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2315] // SCASQ RAX,Yv + (const void *)&gInstructions[ 2321] // SCASQ RAX,Yv }; const ND_TABLE_AUXILIARY gLegacyMap_opcode_af_dsize_03_auxiliary = @@ -2886,13 +2886,13 @@ const ND_TABLE_AUXILIARY gLegacyMap_opcode_af_dsize_03_auxiliary = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_af_dsize_02_auxiliary_05_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2314] // SCASD EAX,Yv + (const void *)&gInstructions[ 2320] // SCASD EAX,Yv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_af_dsize_02_auxiliary_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2313] // SCASD EAX,Yv + (const void *)&gInstructions[ 2319] // SCASD EAX,Yv }; const ND_TABLE_AUXILIARY gLegacyMap_opcode_af_dsize_02_auxiliary = @@ -2915,13 +2915,13 @@ const ND_TABLE_AUXILIARY gLegacyMap_opcode_af_dsize_02_auxiliary = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_af_dsize_01_auxiliary_05_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2318] // SCASW AX,Yv + (const void *)&gInstructions[ 2324] // SCASW AX,Yv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_af_dsize_01_auxiliary_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2317] // SCASW AX,Yv + (const void *)&gInstructions[ 2323] // SCASW AX,Yv }; const ND_TABLE_AUXILIARY gLegacyMap_opcode_af_dsize_01_auxiliary = @@ -2957,13 +2957,13 @@ const ND_TABLE_DSIZE gLegacyMap_opcode_af_dsize = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_ae_auxiliary_05_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2312] // SCASB AL,Yb + (const void *)&gInstructions[ 2318] // SCASB AL,Yb }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_ae_auxiliary_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2311] // SCASB AL,Yb + (const void *)&gInstructions[ 2317] // SCASB AL,Yb }; const ND_TABLE_AUXILIARY gLegacyMap_opcode_ae_auxiliary = @@ -3115,13 +3115,13 @@ const ND_TABLE_AUXILIARY gLegacyMap_opcode_ac_auxiliary = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_ab_dsize_03_auxiliary_05_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2515] // STOSQ Yv,RAX + (const void *)&gInstructions[ 2521] // STOSQ Yv,RAX }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_ab_dsize_03_auxiliary_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2514] // STOSQ Yv,RAX + (const void *)&gInstructions[ 2520] // STOSQ Yv,RAX }; const ND_TABLE_AUXILIARY gLegacyMap_opcode_ab_dsize_03_auxiliary = @@ -3144,13 +3144,13 @@ const ND_TABLE_AUXILIARY gLegacyMap_opcode_ab_dsize_03_auxiliary = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_ab_dsize_02_auxiliary_05_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2513] // STOSD Yv,EAX + (const void *)&gInstructions[ 2519] // STOSD Yv,EAX }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_ab_dsize_02_auxiliary_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2512] // STOSD Yv,EAX + (const void *)&gInstructions[ 2518] // STOSD Yv,EAX }; const ND_TABLE_AUXILIARY gLegacyMap_opcode_ab_dsize_02_auxiliary = @@ -3173,13 +3173,13 @@ const ND_TABLE_AUXILIARY gLegacyMap_opcode_ab_dsize_02_auxiliary = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_ab_dsize_01_auxiliary_05_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2517] // STOSW Yv,AX + (const void *)&gInstructions[ 2523] // STOSW Yv,AX }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_ab_dsize_01_auxiliary_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2516] // STOSW Yv,AX + (const void *)&gInstructions[ 2522] // STOSW Yv,AX }; const ND_TABLE_AUXILIARY gLegacyMap_opcode_ab_dsize_01_auxiliary = @@ -3215,13 +3215,13 @@ const ND_TABLE_DSIZE gLegacyMap_opcode_ab_dsize = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_aa_auxiliary_05_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2511] // STOSB Yb,AL + (const void *)&gInstructions[ 2517] // STOSB Yb,AL }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_aa_auxiliary_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2510] // STOSB Yb,AL + (const void *)&gInstructions[ 2516] // STOSB Yb,AL }; const ND_TABLE_AUXILIARY gLegacyMap_opcode_aa_auxiliary = @@ -3244,13 +3244,13 @@ const ND_TABLE_AUXILIARY gLegacyMap_opcode_aa_auxiliary = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_a9_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2599] // TEST rAX,Iz + (const void *)&gInstructions[ 2629] // TEST rAX,Iz }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_a8_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2598] // TEST AL,Ib + (const void *)&gInstructions[ 2628] // TEST AL,Ib }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_a7_dsize_03_auxiliary_05_leaf = @@ -3385,13 +3385,13 @@ const ND_TABLE_AUXILIARY gLegacyMap_opcode_a6_auxiliary = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_a5_dsize_03_auxiliary_05_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1456] // MOVSQ Yv,Xv + (const void *)&gInstructions[ 1458] // MOVSQ Yv,Xv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_a5_dsize_03_auxiliary_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1455] // MOVSQ Yv,Xv + (const void *)&gInstructions[ 1457] // MOVSQ Yv,Xv }; const ND_TABLE_AUXILIARY gLegacyMap_opcode_a5_dsize_03_auxiliary = @@ -3414,13 +3414,13 @@ const ND_TABLE_AUXILIARY gLegacyMap_opcode_a5_dsize_03_auxiliary = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_a5_dsize_02_auxiliary_05_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1450] // MOVSD Yv,Xv + (const void *)&gInstructions[ 1452] // MOVSD Yv,Xv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_a5_dsize_02_auxiliary_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1449] // MOVSD Yv,Xv + (const void *)&gInstructions[ 1451] // MOVSD Yv,Xv }; const ND_TABLE_AUXILIARY gLegacyMap_opcode_a5_dsize_02_auxiliary = @@ -3443,13 +3443,13 @@ const ND_TABLE_AUXILIARY gLegacyMap_opcode_a5_dsize_02_auxiliary = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_a5_dsize_01_auxiliary_05_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1460] // MOVSW Yv,Xv + (const void *)&gInstructions[ 1462] // MOVSW Yv,Xv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_a5_dsize_01_auxiliary_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1459] // MOVSW Yv,Xv + (const void *)&gInstructions[ 1461] // MOVSW Yv,Xv }; const ND_TABLE_AUXILIARY gLegacyMap_opcode_a5_dsize_01_auxiliary = @@ -3485,13 +3485,13 @@ const ND_TABLE_DSIZE gLegacyMap_opcode_a5_dsize = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_a4_auxiliary_05_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1448] // MOVSB Yb,Xb + (const void *)&gInstructions[ 1450] // MOVSB Yb,Xb }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_a4_auxiliary_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1447] // MOVSB Yb,Xb + (const void *)&gInstructions[ 1449] // MOVSB Yb,Xb }; const ND_TABLE_AUXILIARY gLegacyMap_opcode_a4_auxiliary = @@ -3576,25 +3576,25 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_9f_leaf = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_9e_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2190] // SAHF + (const void *)&gInstructions[ 2196] // SAHF }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_9d_dsize_04_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1839] // POPFQ Fv + (const void *)&gInstructions[ 1841] // POPFQ Fv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_9d_dsize_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1838] // POPFD Fv + (const void *)&gInstructions[ 1840] // POPFD Fv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_9d_dsize_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1840] // POPFW Fv + (const void *)&gInstructions[ 1842] // POPFW Fv }; const ND_TABLE_DSIZE gLegacyMap_opcode_9d_dsize = @@ -3613,19 +3613,19 @@ const ND_TABLE_DSIZE gLegacyMap_opcode_9d_dsize = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_9c_dsize_04_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1973] // PUSHFQ Fv + (const void *)&gInstructions[ 1977] // PUSHFQ Fv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_9c_dsize_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1972] // PUSHFD Fv + (const void *)&gInstructions[ 1976] // PUSHFD Fv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_9c_dsize_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1974] // PUSHFW Fv + (const void *)&gInstructions[ 1978] // PUSHFW Fv }; const ND_TABLE_DSIZE gLegacyMap_opcode_9c_dsize = @@ -3644,7 +3644,7 @@ const ND_TABLE_DSIZE gLegacyMap_opcode_9c_dsize = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_9b_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4051] // WAIT + (const void *)&gInstructions[ 4098] // WAIT }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_9a_leaf = @@ -3718,61 +3718,61 @@ const ND_TABLE_DSIZE gLegacyMap_opcode_98_dsize = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_97_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4081] // XCHG Zv,rAX + (const void *)&gInstructions[ 4130] // XCHG Zv,rAX }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_96_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4080] // XCHG Zv,rAX + (const void *)&gInstructions[ 4129] // XCHG Zv,rAX }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_95_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4079] // XCHG Zv,rAX + (const void *)&gInstructions[ 4128] // XCHG Zv,rAX }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_94_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4078] // XCHG Zv,rAX + (const void *)&gInstructions[ 4127] // XCHG Zv,rAX }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_93_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4077] // XCHG Zv,rAX + (const void *)&gInstructions[ 4126] // XCHG Zv,rAX }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_92_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4076] // XCHG Zv,rAX + (const void *)&gInstructions[ 4125] // XCHG Zv,rAX }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_91_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4075] // XCHG Zv,rAX + (const void *)&gInstructions[ 4124] // XCHG Zv,rAX }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_90_auxiliary_04_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1681] // PAUSE + (const void *)&gInstructions[ 1683] // PAUSE }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_90_auxiliary_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4074] // XCHG Zv,rAX + (const void *)&gInstructions[ 4123] // XCHG Zv,rAX }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_90_auxiliary_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1501] // NOP + (const void *)&gInstructions[ 1503] // NOP }; const ND_TABLE_AUXILIARY gLegacyMap_opcode_90_auxiliary = @@ -3795,7 +3795,7 @@ const ND_TABLE_AUXILIARY gLegacyMap_opcode_90_auxiliary = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_8f_modrmreg_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1826] // POP Ev + (const void *)&gInstructions[ 1828] // POP Ev }; const ND_TABLE_MODRM_REG gLegacyMap_opcode_8f_modrmreg = @@ -3897,25 +3897,25 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_88_leaf = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_87_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4073] // XCHG Ev,Gv + (const void *)&gInstructions[ 4122] // XCHG Ev,Gv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_86_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4072] // XCHG Eb,Gb + (const void *)&gInstructions[ 4121] // XCHG Eb,Gb }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_85_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2597] // TEST Ev,Gv + (const void *)&gInstructions[ 2627] // TEST Ev,Gv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_84_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2596] // TEST Eb,Gb + (const void *)&gInstructions[ 2626] // TEST Eb,Gb }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_83_modrmreg_07_leaf = @@ -3927,13 +3927,13 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_83_modrmreg_07_leaf = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_83_modrmreg_06_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4138] // XOR Ev,Ib + (const void *)&gInstructions[ 4187] // XOR Ev,Ib }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_83_modrmreg_05_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2576] // SUB Ev,Ib + (const void *)&gInstructions[ 2582] // SUB Ev,Ib }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_83_modrmreg_04_leaf = @@ -3945,7 +3945,7 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_83_modrmreg_04_leaf = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_83_modrmreg_03_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2310] // SBB Ev,Ib + (const void *)&gInstructions[ 2316] // SBB Ev,Ib }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_83_modrmreg_02_leaf = @@ -3957,7 +3957,7 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_83_modrmreg_02_leaf = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_83_modrmreg_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1633] // OR Ev,Ib + (const void *)&gInstructions[ 1635] // OR Ev,Ib }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_83_modrmreg_00_leaf = @@ -3990,13 +3990,13 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_82_modrmreg_07_leaf = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_82_modrmreg_06_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4137] // XOR Eb,Ib + (const void *)&gInstructions[ 4186] // XOR Eb,Ib }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_82_modrmreg_05_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2575] // SUB Eb,Ib + (const void *)&gInstructions[ 2581] // SUB Eb,Ib }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_82_modrmreg_04_leaf = @@ -4008,7 +4008,7 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_82_modrmreg_04_leaf = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_82_modrmreg_03_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2309] // SBB Eb,Ib + (const void *)&gInstructions[ 2315] // SBB Eb,Ib }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_82_modrmreg_02_leaf = @@ -4020,7 +4020,7 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_82_modrmreg_02_leaf = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_82_modrmreg_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1632] // OR Eb,Ib + (const void *)&gInstructions[ 1634] // OR Eb,Ib }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_82_modrmreg_00_leaf = @@ -4053,13 +4053,13 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_81_modrmreg_07_leaf = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_81_modrmreg_06_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4136] // XOR Ev,Iz + (const void *)&gInstructions[ 4185] // XOR Ev,Iz }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_81_modrmreg_05_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2574] // SUB Ev,Iz + (const void *)&gInstructions[ 2580] // SUB Ev,Iz }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_81_modrmreg_04_leaf = @@ -4071,7 +4071,7 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_81_modrmreg_04_leaf = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_81_modrmreg_03_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2308] // SBB Ev,Iz + (const void *)&gInstructions[ 2314] // SBB Ev,Iz }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_81_modrmreg_02_leaf = @@ -4083,7 +4083,7 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_81_modrmreg_02_leaf = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_81_modrmreg_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1631] // OR Ev,Iz + (const void *)&gInstructions[ 1633] // OR Ev,Iz }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_81_modrmreg_00_leaf = @@ -4116,13 +4116,13 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_80_modrmreg_07_leaf = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_80_modrmreg_06_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4135] // XOR Eb,Ib + (const void *)&gInstructions[ 4184] // XOR Eb,Ib }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_80_modrmreg_05_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2573] // SUB Eb,Ib + (const void *)&gInstructions[ 2579] // SUB Eb,Ib }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_80_modrmreg_04_leaf = @@ -4134,7 +4134,7 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_80_modrmreg_04_leaf = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_80_modrmreg_03_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2307] // SBB Eb,Ib + (const void *)&gInstructions[ 2313] // SBB Eb,Ib }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_80_modrmreg_02_leaf = @@ -4146,7 +4146,7 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_80_modrmreg_02_leaf = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_80_modrmreg_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1630] // OR Eb,Ib + (const void *)&gInstructions[ 1632] // OR Eb,Ib }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_80_modrmreg_00_leaf = @@ -4269,13 +4269,13 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_70_leaf = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_6f_dsize_01_auxiliary_05_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1645] // OUTSW DX,Xz + (const void *)&gInstructions[ 1647] // OUTSW DX,Xz }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_6f_dsize_01_auxiliary_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1644] // OUTSW DX,Xz + (const void *)&gInstructions[ 1646] // OUTSW DX,Xz }; const ND_TABLE_AUXILIARY gLegacyMap_opcode_6f_dsize_01_auxiliary = @@ -4298,13 +4298,13 @@ const ND_TABLE_AUXILIARY gLegacyMap_opcode_6f_dsize_01_auxiliary = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_6f_dsize_00_auxiliary_05_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1643] // OUTSD DX,Xz + (const void *)&gInstructions[ 1645] // OUTSD DX,Xz }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_6f_dsize_00_auxiliary_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1642] // OUTSD DX,Xz + (const void *)&gInstructions[ 1644] // OUTSD DX,Xz }; const ND_TABLE_AUXILIARY gLegacyMap_opcode_6f_dsize_00_auxiliary = @@ -4340,13 +4340,13 @@ const ND_TABLE_DSIZE gLegacyMap_opcode_6f_dsize = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_6e_auxiliary_05_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1641] // OUTSB DX,Xb + (const void *)&gInstructions[ 1643] // OUTSB DX,Xb }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_6e_auxiliary_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1640] // OUTSB DX,Xb + (const void *)&gInstructions[ 1642] // OUTSB DX,Xb }; const ND_TABLE_AUXILIARY gLegacyMap_opcode_6e_auxiliary = @@ -4475,7 +4475,7 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_6b_leaf = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_6a_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1964] // PUSH Ib + (const void *)&gInstructions[ 1968] // PUSH Ib }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_69_leaf = @@ -4487,13 +4487,13 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_69_leaf = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_68_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1963] // PUSH Iz + (const void *)&gInstructions[ 1967] // PUSH Iz }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_63_auxiliary_03_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1463] // MOVSXD Gv,Ez + (const void *)&gInstructions[ 1465] // MOVSXD Gv,Ez }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_63_auxiliary_00_leaf = @@ -4537,13 +4537,13 @@ const ND_TABLE_MODRM_MOD gLegacyMap_opcode_62_modrmmod = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_61_dsize_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1832] // POPAD + (const void *)&gInstructions[ 1834] // POPAD }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_61_dsize_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1831] // POPA + (const void *)&gInstructions[ 1833] // POPA }; const ND_TABLE_DSIZE gLegacyMap_opcode_61_dsize = @@ -4562,13 +4562,13 @@ const ND_TABLE_DSIZE gLegacyMap_opcode_61_dsize = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_60_dsize_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1971] // PUSHAD + (const void *)&gInstructions[ 1975] // PUSHAD }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_60_dsize_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1970] // PUSHA + (const void *)&gInstructions[ 1974] // PUSHA }; const ND_TABLE_DSIZE gLegacyMap_opcode_60_dsize = @@ -4587,13 +4587,13 @@ const ND_TABLE_DSIZE gLegacyMap_opcode_60_dsize = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_5f_auxiliary_08_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1848] // POPP Zv + (const void *)&gInstructions[ 1850] // POPP Zv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_5f_auxiliary_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1825] // POP Zv + (const void *)&gInstructions[ 1827] // POP Zv }; const ND_TABLE_AUXILIARY gLegacyMap_opcode_5f_auxiliary = @@ -4616,13 +4616,13 @@ const ND_TABLE_AUXILIARY gLegacyMap_opcode_5f_auxiliary = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_5e_auxiliary_08_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1847] // POPP Zv + (const void *)&gInstructions[ 1849] // POPP Zv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_5e_auxiliary_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1824] // POP Zv + (const void *)&gInstructions[ 1826] // POP Zv }; const ND_TABLE_AUXILIARY gLegacyMap_opcode_5e_auxiliary = @@ -4645,13 +4645,13 @@ const ND_TABLE_AUXILIARY gLegacyMap_opcode_5e_auxiliary = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_5d_auxiliary_08_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1846] // POPP Zv + (const void *)&gInstructions[ 1848] // POPP Zv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_5d_auxiliary_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1823] // POP Zv + (const void *)&gInstructions[ 1825] // POP Zv }; const ND_TABLE_AUXILIARY gLegacyMap_opcode_5d_auxiliary = @@ -4674,13 +4674,13 @@ const ND_TABLE_AUXILIARY gLegacyMap_opcode_5d_auxiliary = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_5c_auxiliary_08_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1845] // POPP Zv + (const void *)&gInstructions[ 1847] // POPP Zv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_5c_auxiliary_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1822] // POP Zv + (const void *)&gInstructions[ 1824] // POP Zv }; const ND_TABLE_AUXILIARY gLegacyMap_opcode_5c_auxiliary = @@ -4703,13 +4703,13 @@ const ND_TABLE_AUXILIARY gLegacyMap_opcode_5c_auxiliary = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_5b_auxiliary_08_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1844] // POPP Zv + (const void *)&gInstructions[ 1846] // POPP Zv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_5b_auxiliary_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1821] // POP Zv + (const void *)&gInstructions[ 1823] // POP Zv }; const ND_TABLE_AUXILIARY gLegacyMap_opcode_5b_auxiliary = @@ -4732,13 +4732,13 @@ const ND_TABLE_AUXILIARY gLegacyMap_opcode_5b_auxiliary = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_5a_auxiliary_08_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1843] // POPP Zv + (const void *)&gInstructions[ 1845] // POPP Zv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_5a_auxiliary_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1820] // POP Zv + (const void *)&gInstructions[ 1822] // POP Zv }; const ND_TABLE_AUXILIARY gLegacyMap_opcode_5a_auxiliary = @@ -4761,13 +4761,13 @@ const ND_TABLE_AUXILIARY gLegacyMap_opcode_5a_auxiliary = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_59_auxiliary_08_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1842] // POPP Zv + (const void *)&gInstructions[ 1844] // POPP Zv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_59_auxiliary_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1819] // POP Zv + (const void *)&gInstructions[ 1821] // POP Zv }; const ND_TABLE_AUXILIARY gLegacyMap_opcode_59_auxiliary = @@ -4790,13 +4790,13 @@ const ND_TABLE_AUXILIARY gLegacyMap_opcode_59_auxiliary = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_58_auxiliary_08_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1841] // POPP Zv + (const void *)&gInstructions[ 1843] // POPP Zv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_58_auxiliary_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1818] // POP Zv + (const void *)&gInstructions[ 1820] // POP Zv }; const ND_TABLE_AUXILIARY gLegacyMap_opcode_58_auxiliary = @@ -4819,13 +4819,13 @@ const ND_TABLE_AUXILIARY gLegacyMap_opcode_58_auxiliary = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_57_auxiliary_08_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1982] // PUSHP Zv + (const void *)&gInstructions[ 1986] // PUSHP Zv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_57_auxiliary_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1962] // PUSH Zv + (const void *)&gInstructions[ 1966] // PUSH Zv }; const ND_TABLE_AUXILIARY gLegacyMap_opcode_57_auxiliary = @@ -4848,13 +4848,13 @@ const ND_TABLE_AUXILIARY gLegacyMap_opcode_57_auxiliary = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_56_auxiliary_08_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1981] // PUSHP Zv + (const void *)&gInstructions[ 1985] // PUSHP Zv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_56_auxiliary_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1961] // PUSH Zv + (const void *)&gInstructions[ 1965] // PUSH Zv }; const ND_TABLE_AUXILIARY gLegacyMap_opcode_56_auxiliary = @@ -4877,13 +4877,13 @@ const ND_TABLE_AUXILIARY gLegacyMap_opcode_56_auxiliary = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_55_auxiliary_08_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1980] // PUSHP Zv + (const void *)&gInstructions[ 1984] // PUSHP Zv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_55_auxiliary_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1960] // PUSH Zv + (const void *)&gInstructions[ 1964] // PUSH Zv }; const ND_TABLE_AUXILIARY gLegacyMap_opcode_55_auxiliary = @@ -4906,13 +4906,13 @@ const ND_TABLE_AUXILIARY gLegacyMap_opcode_55_auxiliary = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_54_auxiliary_08_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1979] // PUSHP Zv + (const void *)&gInstructions[ 1983] // PUSHP Zv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_54_auxiliary_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1959] // PUSH Zv + (const void *)&gInstructions[ 1963] // PUSH Zv }; const ND_TABLE_AUXILIARY gLegacyMap_opcode_54_auxiliary = @@ -4935,13 +4935,13 @@ const ND_TABLE_AUXILIARY gLegacyMap_opcode_54_auxiliary = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_53_auxiliary_08_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1978] // PUSHP Zv + (const void *)&gInstructions[ 1982] // PUSHP Zv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_53_auxiliary_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1958] // PUSH Zv + (const void *)&gInstructions[ 1962] // PUSH Zv }; const ND_TABLE_AUXILIARY gLegacyMap_opcode_53_auxiliary = @@ -4964,13 +4964,13 @@ const ND_TABLE_AUXILIARY gLegacyMap_opcode_53_auxiliary = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_52_auxiliary_08_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1977] // PUSHP Zv + (const void *)&gInstructions[ 1981] // PUSHP Zv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_52_auxiliary_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1957] // PUSH Zv + (const void *)&gInstructions[ 1961] // PUSH Zv }; const ND_TABLE_AUXILIARY gLegacyMap_opcode_52_auxiliary = @@ -4993,13 +4993,13 @@ const ND_TABLE_AUXILIARY gLegacyMap_opcode_52_auxiliary = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_51_auxiliary_08_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1976] // PUSHP Zv + (const void *)&gInstructions[ 1980] // PUSHP Zv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_51_auxiliary_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1956] // PUSH Zv + (const void *)&gInstructions[ 1960] // PUSH Zv }; const ND_TABLE_AUXILIARY gLegacyMap_opcode_51_auxiliary = @@ -5022,13 +5022,13 @@ const ND_TABLE_AUXILIARY gLegacyMap_opcode_51_auxiliary = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_50_auxiliary_08_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1975] // PUSHP Zv + (const void *)&gInstructions[ 1979] // PUSHP Zv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_50_auxiliary_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1955] // PUSH Zv + (const void *)&gInstructions[ 1959] // PUSH Zv }; const ND_TABLE_AUXILIARY gLegacyMap_opcode_50_auxiliary = @@ -5195,37 +5195,37 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_37_leaf = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_35_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4134] // XOR rAX,Iz + (const void *)&gInstructions[ 4183] // XOR rAX,Iz }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_34_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4133] // XOR AL,Ib + (const void *)&gInstructions[ 4182] // XOR AL,Ib }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_33_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4132] // XOR Gv,Ev + (const void *)&gInstructions[ 4181] // XOR Gv,Ev }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_32_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4131] // XOR Gb,Eb + (const void *)&gInstructions[ 4180] // XOR Gb,Eb }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_31_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4130] // XOR Ev,Gv + (const void *)&gInstructions[ 4179] // XOR Ev,Gv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_30_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4129] // XOR Eb,Gb + (const void *)&gInstructions[ 4178] // XOR Eb,Gb }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_2f_leaf = @@ -5237,37 +5237,37 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_2f_leaf = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_2d_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2572] // SUB rAX,Iz + (const void *)&gInstructions[ 2578] // SUB rAX,Iz }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_2c_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2571] // SUB AL,Ib + (const void *)&gInstructions[ 2577] // SUB AL,Ib }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_2b_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2570] // SUB Gv,Ev + (const void *)&gInstructions[ 2576] // SUB Gv,Ev }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_2a_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2569] // SUB Gb,Eb + (const void *)&gInstructions[ 2575] // SUB Gb,Eb }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_29_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2568] // SUB Ev,Gv + (const void *)&gInstructions[ 2574] // SUB Ev,Gv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_28_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2567] // SUB Eb,Gb + (const void *)&gInstructions[ 2573] // SUB Eb,Gb }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_27_leaf = @@ -5315,61 +5315,61 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_20_leaf = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_1f_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1817] // POP DS + (const void *)&gInstructions[ 1819] // POP DS }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_1e_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1954] // PUSH DS + (const void *)&gInstructions[ 1958] // PUSH DS }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_1d_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2306] // SBB rAX,Iz + (const void *)&gInstructions[ 2312] // SBB rAX,Iz }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_1c_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2305] // SBB AL,Ib + (const void *)&gInstructions[ 2311] // SBB AL,Ib }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_1b_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2304] // SBB Gv,Ev + (const void *)&gInstructions[ 2310] // SBB Gv,Ev }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_1a_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2303] // SBB Gb,Eb + (const void *)&gInstructions[ 2309] // SBB Gb,Eb }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_19_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2302] // SBB Ev,Gv + (const void *)&gInstructions[ 2308] // SBB Ev,Gv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_18_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2301] // SBB Eb,Gb + (const void *)&gInstructions[ 2307] // SBB Eb,Gb }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_17_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1816] // POP SS + (const void *)&gInstructions[ 1818] // POP SS }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_16_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1953] // PUSH SS + (const void *)&gInstructions[ 1957] // PUSH SS }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_15_leaf = @@ -5411,19 +5411,19 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_10_leaf = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_ff_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2623] // UD0 Gd,Ed + (const void *)&gInstructions[ 2664] // UD0 Gd,Ed }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_fe_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1662] // PADDD Vx,Wx + (const void *)&gInstructions[ 1664] // PADDD Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_fe_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1661] // PADDD Pq,Qq + (const void *)&gInstructions[ 1663] // PADDD Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_fe_prefix = @@ -5440,13 +5440,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_fe_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_fd_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1674] // PADDW Vx,Wx + (const void *)&gInstructions[ 1676] // PADDW Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_fd_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1673] // PADDW Pq,Qq + (const void *)&gInstructions[ 1675] // PADDW Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_fd_prefix = @@ -5463,13 +5463,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_fd_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_fc_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1660] // PADDB Vx,Wx + (const void *)&gInstructions[ 1662] // PADDB Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_fc_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1659] // PADDB Pq,Qq + (const void *)&gInstructions[ 1661] // PADDB Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_fc_prefix = @@ -5486,13 +5486,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_fc_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_fb_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1923] // PSUBQ Vx,Wx + (const void *)&gInstructions[ 1927] // PSUBQ Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_fb_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1922] // PSUBQ Pq,Qq + (const void *)&gInstructions[ 1926] // PSUBQ Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_fb_prefix = @@ -5509,13 +5509,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_fb_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_fa_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1921] // PSUBD Vx,Wx + (const void *)&gInstructions[ 1925] // PSUBD Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_fa_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1920] // PSUBD Pq,Qq + (const void *)&gInstructions[ 1924] // PSUBD Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_fa_prefix = @@ -5532,13 +5532,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_fa_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_f9_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1933] // PSUBW Vx,Wx + (const void *)&gInstructions[ 1937] // PSUBW Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_f9_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1932] // PSUBW Pq,Qq + (const void *)&gInstructions[ 1936] // PSUBW Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_f9_prefix = @@ -5555,13 +5555,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_f9_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_f8_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1919] // PSUBB Vx,Wx + (const void *)&gInstructions[ 1923] // PSUBB Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_f8_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1918] // PSUBB Pq,Qq + (const void *)&gInstructions[ 1922] // PSUBB Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_f8_prefix = @@ -5619,13 +5619,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_f7_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_f6_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1870] // PSADBW Vx,Wx + (const void *)&gInstructions[ 1874] // PSADBW Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_f6_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1869] // PSADBW Pq,Qq + (const void *)&gInstructions[ 1873] // PSADBW Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_f6_prefix = @@ -5642,13 +5642,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_f6_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_f5_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1771] // PMADDWD Vx,Wx + (const void *)&gInstructions[ 1773] // PMADDWD Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_f5_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1770] // PMADDWD Pq,Qq + (const void *)&gInstructions[ 1772] // PMADDWD Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_f5_prefix = @@ -5665,13 +5665,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_f5_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_f4_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1814] // PMULUDQ Vx,Wx + (const void *)&gInstructions[ 1816] // PMULUDQ Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_f4_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1813] // PMULUDQ Pq,Qq + (const void *)&gInstructions[ 1815] // PMULUDQ Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_f4_prefix = @@ -5688,13 +5688,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_f4_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_f3_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1891] // PSLLQ Vx,Wx + (const void *)&gInstructions[ 1895] // PSLLQ Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_f3_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1890] // PSLLQ Pq,Qq + (const void *)&gInstructions[ 1894] // PSLLQ Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_f3_prefix = @@ -5711,13 +5711,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_f3_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_f2_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1886] // PSLLD Vx,Wx + (const void *)&gInstructions[ 1890] // PSLLD Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_f2_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1885] // PSLLD Pq,Qq + (const void *)&gInstructions[ 1889] // PSLLD Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_f2_prefix = @@ -5734,13 +5734,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_f2_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_f1_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1895] // PSLLW Vx,Wx + (const void *)&gInstructions[ 1899] // PSLLW Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_f1_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1894] // PSLLW Pq,Qq + (const void *)&gInstructions[ 1898] // PSLLW Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_f1_prefix = @@ -5783,13 +5783,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_f0_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_ef_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1985] // PXOR Vx,Wx + (const void *)&gInstructions[ 1989] // PXOR Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_ef_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1984] // PXOR Pq,Qq + (const void *)&gInstructions[ 1988] // PXOR Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_ef_prefix = @@ -5806,13 +5806,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_ef_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_ee_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1775] // PMAXSW Vx,Wx + (const void *)&gInstructions[ 1777] // PMAXSW Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_ee_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1774] // PMAXSW Pq,Qq + (const void *)&gInstructions[ 1776] // PMAXSW Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_ee_prefix = @@ -5829,13 +5829,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_ee_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_ed_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1668] // PADDSW Vx,Wx + (const void *)&gInstructions[ 1670] // PADDSW Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_ed_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1667] // PADDSW Pq,Qq + (const void *)&gInstructions[ 1669] // PADDSW Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_ed_prefix = @@ -5852,13 +5852,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_ed_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_ec_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1666] // PADDSB Vx,Wx + (const void *)&gInstructions[ 1668] // PADDSB Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_ec_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1665] // PADDSB Pq,Qq + (const void *)&gInstructions[ 1667] // PADDSB Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_ec_prefix = @@ -5875,13 +5875,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_ec_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_eb_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1850] // POR Vx,Wx + (const void *)&gInstructions[ 1852] // POR Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_eb_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1849] // POR Pq,Qq + (const void *)&gInstructions[ 1851] // POR Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_eb_prefix = @@ -5898,13 +5898,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_eb_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_ea_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1783] // PMINSW Vx,Wx + (const void *)&gInstructions[ 1785] // PMINSW Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_ea_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1782] // PMINSW Pq,Qq + (const void *)&gInstructions[ 1784] // PMINSW Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_ea_prefix = @@ -5921,13 +5921,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_ea_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_e9_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1927] // PSUBSW Vx,Wx + (const void *)&gInstructions[ 1931] // PSUBSW Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_e9_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1926] // PSUBSW Pq,Qq + (const void *)&gInstructions[ 1930] // PSUBSW Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_e9_prefix = @@ -5944,13 +5944,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_e9_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_e8_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1925] // PSUBSB Vx,Wx + (const void *)&gInstructions[ 1929] // PSUBSB Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_e8_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1924] // PSUBSB Pq,Qq + (const void *)&gInstructions[ 1928] // PSUBSB Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_e8_prefix = @@ -6037,13 +6037,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_e6_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_e5_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1809] // PMULHW Vx,Wx + (const void *)&gInstructions[ 1811] // PMULHW Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_e5_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1808] // PMULHW Pq,Qq + (const void *)&gInstructions[ 1810] // PMULHW Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_e5_prefix = @@ -6060,13 +6060,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_e5_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_e4_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1807] // PMULHUW Vx,Wx + (const void *)&gInstructions[ 1809] // PMULHUW Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_e4_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1806] // PMULHUW Pq,Qq + (const void *)&gInstructions[ 1808] // PMULHUW Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_e4_prefix = @@ -6083,13 +6083,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_e4_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_e3_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1686] // PAVGW Vx,Wx + (const void *)&gInstructions[ 1688] // PAVGW Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_e3_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1685] // PAVGW Pq,Qq + (const void *)&gInstructions[ 1687] // PAVGW Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_e3_prefix = @@ -6106,13 +6106,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_e3_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_e2_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1900] // PSRAD Vx,Wx + (const void *)&gInstructions[ 1904] // PSRAD Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_e2_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1899] // PSRAD Pq,Qq + (const void *)&gInstructions[ 1903] // PSRAD Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_e2_prefix = @@ -6129,13 +6129,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_e2_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_e1_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1904] // PSRAW Vx,Wx + (const void *)&gInstructions[ 1908] // PSRAW Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_e1_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1903] // PSRAW Pq,Qq + (const void *)&gInstructions[ 1907] // PSRAW Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_e1_prefix = @@ -6152,13 +6152,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_e1_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_e0_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1683] // PAVGB Vx,Wx + (const void *)&gInstructions[ 1685] // PAVGB Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_e0_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1682] // PAVGB Pq,Qq + (const void *)&gInstructions[ 1684] // PAVGB Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_e0_prefix = @@ -6175,13 +6175,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_e0_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_df_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1680] // PANDN Vx,Wx + (const void *)&gInstructions[ 1682] // PANDN Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_df_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1679] // PANDN Pq,Qq + (const void *)&gInstructions[ 1681] // PANDN Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_df_prefix = @@ -6198,13 +6198,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_df_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_de_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1777] // PMAXUB Vx,Wx + (const void *)&gInstructions[ 1779] // PMAXUB Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_de_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1776] // PMAXUB Pq,Qq + (const void *)&gInstructions[ 1778] // PMAXUB Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_de_prefix = @@ -6221,13 +6221,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_de_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_dd_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1672] // PADDUSW Vx,Wx + (const void *)&gInstructions[ 1674] // PADDUSW Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_dd_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1671] // PADDUSW Pq,Qq + (const void *)&gInstructions[ 1673] // PADDUSW Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_dd_prefix = @@ -6244,13 +6244,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_dd_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_dc_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1670] // PADDUSB Vx,Wx + (const void *)&gInstructions[ 1672] // PADDUSB Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_dc_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1669] // PADDUSB Pq,Qq + (const void *)&gInstructions[ 1671] // PADDUSB Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_dc_prefix = @@ -6267,13 +6267,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_dc_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_db_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1678] // PAND Vx,Wx + (const void *)&gInstructions[ 1680] // PAND Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_db_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1677] // PAND Pq,Qq + (const void *)&gInstructions[ 1679] // PAND Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_db_prefix = @@ -6290,13 +6290,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_db_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_da_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1785] // PMINUB Vx,Wx + (const void *)&gInstructions[ 1787] // PMINUB Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_da_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1784] // PMINUB Pq,Qq + (const void *)&gInstructions[ 1786] // PMINUB Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_da_prefix = @@ -6313,13 +6313,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_da_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_d9_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1931] // PSUBUSW Vx,Wx + (const void *)&gInstructions[ 1935] // PSUBUSW Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_d9_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1930] // PSUBUSW Pq,Qq + (const void *)&gInstructions[ 1934] // PSUBUSW Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_d9_prefix = @@ -6336,13 +6336,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_d9_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_d8_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1929] // PSUBUSB Vx,Wx + (const void *)&gInstructions[ 1933] // PSUBUSB Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_d8_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1928] // PSUBUSB Pq,Qq + (const void *)&gInstructions[ 1932] // PSUBUSB Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_d8_prefix = @@ -6359,7 +6359,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_d8_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_d7_prefix_01_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1789] // PMOVMSKB Gy,Ux + (const void *)&gInstructions[ 1791] // PMOVMSKB Gy,Ux }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_d7_prefix_01_modrmmod = @@ -6374,7 +6374,7 @@ const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_d7_prefix_01_modrmmod = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_d7_prefix_00_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1788] // PMOVMSKB Gy,Nq + (const void *)&gInstructions[ 1790] // PMOVMSKB Gy,Nq }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_d7_prefix_00_modrmmod = @@ -6447,13 +6447,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_d6_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_d5_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1812] // PMULLW Vx,Wx + (const void *)&gInstructions[ 1814] // PMULLW Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_d5_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1811] // PMULLW Pq,Qq + (const void *)&gInstructions[ 1813] // PMULLW Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_d5_prefix = @@ -6470,13 +6470,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_d5_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_d4_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1664] // PADDQ Vx,Wx + (const void *)&gInstructions[ 1666] // PADDQ Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_d4_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1663] // PADDQ Pq,Qq + (const void *)&gInstructions[ 1665] // PADDQ Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_d4_prefix = @@ -6493,13 +6493,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_d4_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_d3_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1913] // PSRLQ Vx,Wx + (const void *)&gInstructions[ 1917] // PSRLQ Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_d3_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1912] // PSRLQ Pq,Qq + (const void *)&gInstructions[ 1916] // PSRLQ Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_d3_prefix = @@ -6516,13 +6516,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_d3_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_d2_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1908] // PSRLD Vx,Wx + (const void *)&gInstructions[ 1912] // PSRLD Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_d2_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1907] // PSRLD Pq,Qq + (const void *)&gInstructions[ 1911] // PSRLD Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_d2_prefix = @@ -6539,13 +6539,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_d2_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_d1_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1917] // PSRLW Vx,Wx + (const void *)&gInstructions[ 1921] // PSRLW Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_d1_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1916] // PSRLW Pq,Qq + (const void *)&gInstructions[ 1920] // PSRLW Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_d1_prefix = @@ -6633,7 +6633,7 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_c8_leaf = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_c7_modrmreg_07_prefix_02_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2076] // RDPID Ryf + (const void *)&gInstructions[ 2082] // RDPID Ryf }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_c7_modrmreg_07_prefix_02_modrmmod = @@ -6648,7 +6648,7 @@ const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_c7_modrmreg_07_prefix_02_mo const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_c7_modrmreg_07_prefix_01_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2083] // RDSEED Rv + (const void *)&gInstructions[ 2089] // RDSEED Rv }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_c7_modrmreg_07_prefix_01_modrmmod = @@ -6663,13 +6663,13 @@ const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_c7_modrmreg_07_prefix_01_mo const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_c7_modrmreg_07_prefix_00_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2082] // RDSEED Rv + (const void *)&gInstructions[ 2088] // RDSEED Rv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_c7_modrmreg_07_prefix_00_modrmmod_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3342] // VMPTRST Mq + (const void *)&gInstructions[ 3387] // VMPTRST Mq }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_c7_modrmreg_07_prefix_00_modrmmod = @@ -6695,13 +6695,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_c7_modrmreg_07_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_c7_modrmreg_06_prefix_02_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2322] // SENDUIPI Rq + (const void *)&gInstructions[ 2328] // SENDUIPI Rq }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_c7_modrmreg_06_prefix_02_modrmmod_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3360] // VMXON Mq + (const void *)&gInstructions[ 3405] // VMXON Mq }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_c7_modrmreg_06_prefix_02_modrmmod = @@ -6716,13 +6716,13 @@ const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_c7_modrmreg_06_prefix_02_mo const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_c7_modrmreg_06_prefix_01_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2081] // RDRAND Rv + (const void *)&gInstructions[ 2087] // RDRAND Rv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_c7_modrmreg_06_prefix_01_modrmmod_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3202] // VMCLEAR Mq + (const void *)&gInstructions[ 3243] // VMCLEAR Mq }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_c7_modrmreg_06_prefix_01_modrmmod = @@ -6737,13 +6737,13 @@ const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_c7_modrmreg_06_prefix_01_mo const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_c7_modrmreg_06_prefix_00_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2080] // RDRAND Rv + (const void *)&gInstructions[ 2086] // RDRAND Rv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_c7_modrmreg_06_prefix_00_modrmmod_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3341] // VMPTRLD Mq + (const void *)&gInstructions[ 3386] // VMPTRLD Mq }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_c7_modrmreg_06_prefix_00_modrmmod = @@ -6769,13 +6769,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_c7_modrmreg_06_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_c7_modrmreg_05_prefix_00_modrmmod_00_auxiliary_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4153] // XSAVES64 M? + (const void *)&gInstructions[ 4202] // XSAVES64 M? }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_c7_modrmreg_05_prefix_00_modrmmod_00_auxiliary_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4152] // XSAVES M? + (const void *)&gInstructions[ 4201] // XSAVES M? }; const ND_TABLE_AUXILIARY gLegacyMap_opcode_0f_opcode_c7_modrmreg_05_prefix_00_modrmmod_00_auxiliary = @@ -6818,13 +6818,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_c7_modrmreg_05_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_c7_modrmreg_04_prefix_00_modrmmod_00_auxiliary_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4149] // XSAVEC64 M? + (const void *)&gInstructions[ 4198] // XSAVEC64 M? }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_c7_modrmreg_04_prefix_00_modrmmod_00_auxiliary_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4148] // XSAVEC M? + (const void *)&gInstructions[ 4197] // XSAVEC M? }; const ND_TABLE_AUXILIARY gLegacyMap_opcode_0f_opcode_c7_modrmreg_04_prefix_00_modrmmod_00_auxiliary = @@ -6867,13 +6867,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_c7_modrmreg_04_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_c7_modrmreg_03_prefix_00_modrmmod_00_auxiliary_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4145] // XRSTORS64 M? + (const void *)&gInstructions[ 4194] // XRSTORS64 M? }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_c7_modrmreg_03_prefix_00_modrmmod_00_auxiliary_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4144] // XRSTORS M? + (const void *)&gInstructions[ 4193] // XRSTORS M? }; const ND_TABLE_AUXILIARY gLegacyMap_opcode_0f_opcode_c7_modrmreg_03_prefix_00_modrmmod_00_auxiliary = @@ -6969,13 +6969,13 @@ const ND_TABLE_MODRM_REG gLegacyMap_opcode_0f_opcode_c7_modrmreg = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_c6_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2490] // SHUFPD Vpd,Wpd,Ib + (const void *)&gInstructions[ 2496] // SHUFPD Vpd,Wpd,Ib }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_c6_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2491] // SHUFPS Vps,Wps,Ib + (const void *)&gInstructions[ 2497] // SHUFPS Vps,Wps,Ib }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_c6_prefix = @@ -6992,7 +6992,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_c6_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_c5_prefix_01_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1721] // PEXTRW Gy,Udq,Ib + (const void *)&gInstructions[ 1723] // PEXTRW Gy,Udq,Ib }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_c5_prefix_01_modrmmod = @@ -7007,7 +7007,7 @@ const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_c5_prefix_01_modrmmod = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_c5_prefix_00_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1720] // PEXTRW Gy,Nq,Ib + (const void *)&gInstructions[ 1722] // PEXTRW Gy,Nq,Ib }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_c5_prefix_00_modrmmod = @@ -7033,13 +7033,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_c5_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_c4_prefix_01_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1766] // PINSRW Vdq,Rd,Ib + (const void *)&gInstructions[ 1768] // PINSRW Vdq,Rd,Ib }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_c4_prefix_01_modrmmod_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1767] // PINSRW Vdq,Mw,Ib + (const void *)&gInstructions[ 1769] // PINSRW Vdq,Mw,Ib }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_c4_prefix_01_modrmmod = @@ -7054,13 +7054,13 @@ const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_c4_prefix_01_modrmmod = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_c4_prefix_00_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1764] // PINSRW Pq,Rd,Ib + (const void *)&gInstructions[ 1766] // PINSRW Pq,Rd,Ib }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_c4_prefix_00_modrmmod_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1765] // PINSRW Pq,Mw,Ib + (const void *)&gInstructions[ 1767] // PINSRW Pq,Mw,Ib }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_c4_prefix_00_modrmmod = @@ -7147,25 +7147,25 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_c2_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_c1_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4070] // XADD Ev,Gv + (const void *)&gInstructions[ 4119] // XADD Ev,Gv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_c0_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4069] // XADD Eb,Gb + (const void *)&gInstructions[ 4118] // XADD Eb,Gb }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_bf_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1462] // MOVSX Gv,Ew + (const void *)&gInstructions[ 1464] // MOVSX Gv,Ew }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_be_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1461] // MOVSX Gv,Eb + (const void *)&gInstructions[ 1463] // MOVSX Gv,Eb }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_bd_auxiliary_04_leaf = @@ -7200,7 +7200,7 @@ const ND_TABLE_AUXILIARY gLegacyMap_opcode_0f_opcode_bd_auxiliary = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_bc_auxiliary_04_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2619] // TZCNT Gv,Ev + (const void *)&gInstructions[ 2660] // TZCNT Gv,Ev }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_bc_auxiliary_00_leaf = @@ -7274,13 +7274,13 @@ const ND_TABLE_MODRM_REG gLegacyMap_opcode_0f_opcode_ba_modrmreg = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_b9_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2624] // UD1 Gd,Ed + (const void *)&gInstructions[ 2665] // UD1 Gd,Ed }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_b8_auxiliary_04_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1837] // POPCNT Gv,Ev + (const void *)&gInstructions[ 1839] // POPCNT Gv,Ev }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_b8_auxiliary_00_leaf = @@ -7309,13 +7309,13 @@ const ND_TABLE_AUXILIARY gLegacyMap_opcode_0f_opcode_b8_auxiliary = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_b7_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1469] // MOVZX Gv,Ew + (const void *)&gInstructions[ 1471] // MOVZX Gv,Ew }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_b6_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1468] // MOVZX Gv,Eb + (const void *)&gInstructions[ 1470] // MOVZX Gv,Eb }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_b5_modrmmod_00_leaf = @@ -7390,7 +7390,7 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_af_leaf = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_ae_prefix_03_modrmreg_06_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2628] // UMWAIT Ry + (const void *)&gInstructions[ 2669] // UMWAIT Ry }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_ae_prefix_03_modrmreg_06_modrmmod = @@ -7420,7 +7420,7 @@ const ND_TABLE_MODRM_REG gLegacyMap_opcode_0f_opcode_ae_prefix_03_modrmreg = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_ae_prefix_02_modrmreg_06_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2627] // UMONITOR mMb + (const void *)&gInstructions[ 2668] // UMONITOR mMb }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_ae_prefix_02_modrmreg_06_modrmmod_00_leaf = @@ -7479,13 +7479,13 @@ const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_ae_prefix_02_modrmreg_05_mo const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_ae_prefix_02_modrmreg_04_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1936] // PTWRITE Ey + (const void *)&gInstructions[ 1940] // PTWRITE Ey }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_ae_prefix_02_modrmreg_03_modrmmod_01_auxiliary_03_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4055] // WRGSBASE Ry + (const void *)&gInstructions[ 4102] // WRGSBASE Ry }; const ND_TABLE_AUXILIARY gLegacyMap_opcode_0f_opcode_ae_prefix_02_modrmreg_03_modrmmod_01_auxiliary = @@ -7517,7 +7517,7 @@ const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_ae_prefix_02_modrmreg_03_mo const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_ae_prefix_02_modrmreg_02_modrmmod_01_auxiliary_03_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4054] // WRFSBASE Ry + (const void *)&gInstructions[ 4101] // WRFSBASE Ry }; const ND_TABLE_AUXILIARY gLegacyMap_opcode_0f_opcode_ae_prefix_02_modrmreg_02_modrmmod_01_auxiliary = @@ -7549,7 +7549,7 @@ const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_ae_prefix_02_modrmreg_02_mo const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_ae_prefix_02_modrmreg_01_modrmmod_01_auxiliary_03_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2073] // RDGSBASE Ry + (const void *)&gInstructions[ 2077] // RDGSBASE Ry }; const ND_TABLE_AUXILIARY gLegacyMap_opcode_0f_opcode_ae_prefix_02_modrmreg_01_modrmmod_01_auxiliary = @@ -7581,7 +7581,7 @@ const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_ae_prefix_02_modrmreg_01_mo const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_ae_prefix_02_modrmreg_00_modrmmod_01_auxiliary_03_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2072] // RDFSBASE Ry + (const void *)&gInstructions[ 2076] // RDFSBASE Ry }; const ND_TABLE_AUXILIARY gLegacyMap_opcode_0f_opcode_ae_prefix_02_modrmreg_00_modrmmod_01_auxiliary = @@ -7643,7 +7643,7 @@ const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_ae_prefix_01_modrmreg_07_mo const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_ae_prefix_01_modrmreg_06_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2614] // TPAUSE Ry + (const void *)&gInstructions[ 2649] // TPAUSE Ry }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_ae_prefix_01_modrmreg_06_modrmmod_00_leaf = @@ -7679,7 +7679,7 @@ const ND_TABLE_MODRM_REG gLegacyMap_opcode_0f_opcode_ae_prefix_01_modrmreg = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_ae_prefix_00_modrmreg_07_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2357] // SFENCE + (const void *)&gInstructions[ 2363] // SFENCE }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_ae_prefix_00_modrmreg_07_modrmmod_00_leaf = @@ -7706,13 +7706,13 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_ae_prefix_00_modrmreg_06_ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_ae_prefix_00_modrmreg_06_modrmmod_00_auxiliary_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4151] // XSAVEOPT64 M? + (const void *)&gInstructions[ 4200] // XSAVEOPT64 M? }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_ae_prefix_00_modrmreg_06_modrmmod_00_auxiliary_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4150] // XSAVEOPT M? + (const void *)&gInstructions[ 4199] // XSAVEOPT M? }; const ND_TABLE_AUXILIARY gLegacyMap_opcode_0f_opcode_ae_prefix_00_modrmreg_06_modrmmod_00_auxiliary = @@ -7750,13 +7750,13 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_ae_prefix_00_modrmreg_05_ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_ae_prefix_00_modrmreg_05_modrmmod_00_auxiliary_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4143] // XRSTOR64 M? + (const void *)&gInstructions[ 4192] // XRSTOR64 M? }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_ae_prefix_00_modrmreg_05_modrmmod_00_auxiliary_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4142] // XRSTOR M? + (const void *)&gInstructions[ 4191] // XRSTOR M? }; const ND_TABLE_AUXILIARY gLegacyMap_opcode_0f_opcode_ae_prefix_00_modrmreg_05_modrmmod_00_auxiliary = @@ -7788,13 +7788,13 @@ const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_ae_prefix_00_modrmreg_05_mo const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_ae_prefix_00_modrmreg_04_modrmmod_00_auxiliary_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4147] // XSAVE64 M? + (const void *)&gInstructions[ 4196] // XSAVE64 M? }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_ae_prefix_00_modrmreg_04_modrmmod_00_auxiliary_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4146] // XSAVE M? + (const void *)&gInstructions[ 4195] // XSAVE M? }; const ND_TABLE_AUXILIARY gLegacyMap_opcode_0f_opcode_ae_prefix_00_modrmreg_04_modrmmod_00_auxiliary = @@ -7826,7 +7826,7 @@ const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_ae_prefix_00_modrmreg_04_mo const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_ae_prefix_00_modrmreg_03_modrmmod_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2509] // STMXCSR Md + (const void *)&gInstructions[ 2515] // STMXCSR Md }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_ae_prefix_00_modrmreg_03_modrmmod = @@ -7958,13 +7958,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_ae_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_ad_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2487] // SHRD Ev,Gv,CL + (const void *)&gInstructions[ 2493] // SHRD Ev,Gv,CL }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_ac_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2486] // SHRD Ev,Gv,Ib + (const void *)&gInstructions[ 2492] // SHRD Ev,Gv,Ib }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_ab_leaf = @@ -7976,31 +7976,31 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_ab_leaf = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_aa_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2186] // RSM + (const void *)&gInstructions[ 2192] // RSM }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_a9_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1828] // POP GS + (const void *)&gInstructions[ 1830] // POP GS }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_a8_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1967] // PUSH GS + (const void *)&gInstructions[ 1971] // PUSH GS }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_a5_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2425] // SHLD Ev,Gv,CL + (const void *)&gInstructions[ 2431] // SHLD Ev,Gv,CL }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_a4_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2424] // SHLD Ev,Gv,Ib + (const void *)&gInstructions[ 2430] // SHLD Ev,Gv,Ib }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_a3_leaf = @@ -8018,109 +8018,109 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_a2_leaf = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_a1_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1827] // POP FS + (const void *)&gInstructions[ 1829] // POP FS }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_a0_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1966] // PUSH FS + (const void *)&gInstructions[ 1970] // PUSH FS }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_9f_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2339] // SETNLE Eb + (const void *)&gInstructions[ 2345] // SETNLE Eb }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_9e_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2331] // SETLE Eb + (const void *)&gInstructions[ 2337] // SETLE Eb }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_9d_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2337] // SETNL Eb + (const void *)&gInstructions[ 2343] // SETNL Eb }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_9c_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2329] // SETL Eb + (const void *)&gInstructions[ 2335] // SETL Eb }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_9b_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2343] // SETNP Eb + (const void *)&gInstructions[ 2349] // SETNP Eb }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_9a_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2351] // SETP Eb + (const void *)&gInstructions[ 2357] // SETP Eb }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_99_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2345] // SETNS Eb + (const void *)&gInstructions[ 2351] // SETNS Eb }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_98_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2353] // SETS Eb + (const void *)&gInstructions[ 2359] // SETS Eb }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_97_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2333] // SETNBE Eb + (const void *)&gInstructions[ 2339] // SETNBE Eb }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_96_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2325] // SETBE Eb + (const void *)&gInstructions[ 2331] // SETBE Eb }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_95_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2347] // SETNZ Eb + (const void *)&gInstructions[ 2353] // SETNZ Eb }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_94_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2356] // SETZ Eb + (const void *)&gInstructions[ 2362] // SETZ Eb }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_93_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2335] // SETNC Eb + (const void *)&gInstructions[ 2341] // SETNC Eb }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_92_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2327] // SETC Eb + (const void *)&gInstructions[ 2333] // SETC Eb }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_91_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2341] // SETNO Eb + (const void *)&gInstructions[ 2347] // SETNO Eb }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_90_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2349] // SETO Eb + (const void *)&gInstructions[ 2355] // SETO Eb }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_8f_leaf = @@ -8402,7 +8402,7 @@ const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_79_prefix_01_modrmmod = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_79_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3358] // VMWRITE Gy,Ey + (const void *)&gInstructions[ 3403] // VMWRITE Gy,Ey }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_79_prefix = @@ -8446,7 +8446,7 @@ const ND_TABLE_MODRM_REG gLegacyMap_opcode_0f_opcode_78_prefix_01_modrmreg = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_78_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3343] // VMREAD Ey,Gy + (const void *)&gInstructions[ 3388] // VMREAD Ey,Gy }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_78_prefix = @@ -8480,13 +8480,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_77_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_76_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1694] // PCMPEQD Vx,Wx + (const void *)&gInstructions[ 1696] // PCMPEQD Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_76_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1693] // PCMPEQD Pq,Qq + (const void *)&gInstructions[ 1695] // PCMPEQD Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_76_prefix = @@ -8503,13 +8503,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_76_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_75_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1697] // PCMPEQW Vx,Wx + (const void *)&gInstructions[ 1699] // PCMPEQW Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_75_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1696] // PCMPEQW Pq,Qq + (const void *)&gInstructions[ 1698] // PCMPEQW Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_75_prefix = @@ -8526,13 +8526,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_75_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_74_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1692] // PCMPEQB Vx,Wx + (const void *)&gInstructions[ 1694] // PCMPEQB Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_74_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1691] // PCMPEQB Pq,Qq + (const void *)&gInstructions[ 1693] // PCMPEQB Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_74_prefix = @@ -8549,7 +8549,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_74_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_73_prefix_01_modrmreg_07_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1887] // PSLLDQ Ux,Ib + (const void *)&gInstructions[ 1891] // PSLLDQ Ux,Ib }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_73_prefix_01_modrmreg_07_modrmmod = @@ -8564,7 +8564,7 @@ const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_73_prefix_01_modrmreg_07_mo const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_73_prefix_01_modrmreg_06_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1889] // PSLLQ Ux,Ib + (const void *)&gInstructions[ 1893] // PSLLQ Ux,Ib }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_73_prefix_01_modrmreg_06_modrmmod = @@ -8579,7 +8579,7 @@ const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_73_prefix_01_modrmreg_06_mo const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_73_prefix_01_modrmreg_03_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1909] // PSRLDQ Ux,Ib + (const void *)&gInstructions[ 1913] // PSRLDQ Ux,Ib }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_73_prefix_01_modrmreg_03_modrmmod = @@ -8594,7 +8594,7 @@ const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_73_prefix_01_modrmreg_03_mo const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_73_prefix_01_modrmreg_02_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1911] // PSRLQ Ux,Ib + (const void *)&gInstructions[ 1915] // PSRLQ Ux,Ib }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_73_prefix_01_modrmreg_02_modrmmod = @@ -8624,7 +8624,7 @@ const ND_TABLE_MODRM_REG gLegacyMap_opcode_0f_opcode_73_prefix_01_modrmreg = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_73_prefix_00_modrmreg_06_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1888] // PSLLQ Nq,Ib + (const void *)&gInstructions[ 1892] // PSLLQ Nq,Ib }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_73_prefix_00_modrmreg_06_modrmmod = @@ -8639,7 +8639,7 @@ const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_73_prefix_00_modrmreg_06_mo const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_73_prefix_00_modrmreg_02_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1910] // PSRLQ Nq,Ib + (const void *)&gInstructions[ 1914] // PSRLQ Nq,Ib }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_73_prefix_00_modrmreg_02_modrmmod = @@ -8680,7 +8680,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_73_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_72_prefix_01_modrmreg_06_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1884] // PSLLD Ux,Ib + (const void *)&gInstructions[ 1888] // PSLLD Ux,Ib }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_72_prefix_01_modrmreg_06_modrmmod = @@ -8695,7 +8695,7 @@ const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_72_prefix_01_modrmreg_06_mo const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_72_prefix_01_modrmreg_04_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1898] // PSRAD Ux,Ib + (const void *)&gInstructions[ 1902] // PSRAD Ux,Ib }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_72_prefix_01_modrmreg_04_modrmmod = @@ -8710,7 +8710,7 @@ const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_72_prefix_01_modrmreg_04_mo const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_72_prefix_01_modrmreg_02_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1906] // PSRLD Ux,Ib + (const void *)&gInstructions[ 1910] // PSRLD Ux,Ib }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_72_prefix_01_modrmreg_02_modrmmod = @@ -8740,7 +8740,7 @@ const ND_TABLE_MODRM_REG gLegacyMap_opcode_0f_opcode_72_prefix_01_modrmreg = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_72_prefix_00_modrmreg_06_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1883] // PSLLD Nq,Ib + (const void *)&gInstructions[ 1887] // PSLLD Nq,Ib }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_72_prefix_00_modrmreg_06_modrmmod = @@ -8755,7 +8755,7 @@ const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_72_prefix_00_modrmreg_06_mo const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_72_prefix_00_modrmreg_04_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1897] // PSRAD Nq,Ib + (const void *)&gInstructions[ 1901] // PSRAD Nq,Ib }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_72_prefix_00_modrmreg_04_modrmmod = @@ -8770,7 +8770,7 @@ const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_72_prefix_00_modrmreg_04_mo const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_72_prefix_00_modrmreg_02_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1905] // PSRLD Nq,Ib + (const void *)&gInstructions[ 1909] // PSRLD Nq,Ib }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_72_prefix_00_modrmreg_02_modrmmod = @@ -8811,7 +8811,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_72_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_71_prefix_01_modrmreg_06_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1893] // PSLLW Ux,Ib + (const void *)&gInstructions[ 1897] // PSLLW Ux,Ib }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_71_prefix_01_modrmreg_06_modrmmod = @@ -8826,7 +8826,7 @@ const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_71_prefix_01_modrmreg_06_mo const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_71_prefix_01_modrmreg_04_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1902] // PSRAW Ux,Ib + (const void *)&gInstructions[ 1906] // PSRAW Ux,Ib }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_71_prefix_01_modrmreg_04_modrmmod = @@ -8841,7 +8841,7 @@ const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_71_prefix_01_modrmreg_04_mo const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_71_prefix_01_modrmreg_02_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1915] // PSRLW Ux,Ib + (const void *)&gInstructions[ 1919] // PSRLW Ux,Ib }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_71_prefix_01_modrmreg_02_modrmmod = @@ -8871,7 +8871,7 @@ const ND_TABLE_MODRM_REG gLegacyMap_opcode_0f_opcode_71_prefix_01_modrmreg = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_71_prefix_00_modrmreg_06_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1892] // PSLLW Nq,Ib + (const void *)&gInstructions[ 1896] // PSLLW Nq,Ib }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_71_prefix_00_modrmreg_06_modrmmod = @@ -8886,7 +8886,7 @@ const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_71_prefix_00_modrmreg_06_mo const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_71_prefix_00_modrmreg_04_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1901] // PSRAW Nq,Ib + (const void *)&gInstructions[ 1905] // PSRAW Nq,Ib }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_71_prefix_00_modrmreg_04_modrmmod = @@ -8901,7 +8901,7 @@ const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_71_prefix_00_modrmreg_04_mo const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_71_prefix_00_modrmreg_02_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1914] // PSRLW Nq,Ib + (const void *)&gInstructions[ 1918] // PSRLW Nq,Ib }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_71_prefix_00_modrmreg_02_modrmmod = @@ -8942,25 +8942,25 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_71_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_70_prefix_03_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1875] // PSHUFLW Vx,Wx,Ib + (const void *)&gInstructions[ 1879] // PSHUFLW Vx,Wx,Ib }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_70_prefix_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1874] // PSHUFHW Vx,Wx,Ib + (const void *)&gInstructions[ 1878] // PSHUFHW Vx,Wx,Ib }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_70_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1873] // PSHUFD Vx,Wx,Ib + (const void *)&gInstructions[ 1877] // PSHUFD Vx,Wx,Ib }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_70_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1876] // PSHUFW Pq,Qq,Ib + (const void *)&gInstructions[ 1880] // PSHUFW Pq,Qq,Ib }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_70_prefix = @@ -9075,7 +9075,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_6e_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_6d_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1941] // PUNPCKHQDQ Vx,Wx + (const void *)&gInstructions[ 1945] // PUNPCKHQDQ Vx,Wx }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_6d_prefix = @@ -9092,7 +9092,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_6d_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_6c_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1948] // PUNPCKLQDQ Vx,Wx + (const void *)&gInstructions[ 1952] // PUNPCKLQDQ Vx,Wx }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_6c_prefix = @@ -9109,13 +9109,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_6c_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_6b_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1653] // PACKSSDW Vx,Wx + (const void *)&gInstructions[ 1655] // PACKSSDW Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_6b_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1652] // PACKSSDW Pq,Qq + (const void *)&gInstructions[ 1654] // PACKSSDW Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_6b_prefix = @@ -9132,13 +9132,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_6b_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_6a_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1940] // PUNPCKHDQ Vx,Wx + (const void *)&gInstructions[ 1944] // PUNPCKHDQ Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_6a_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1939] // PUNPCKHDQ Pq,Qq + (const void *)&gInstructions[ 1943] // PUNPCKHDQ Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_6a_prefix = @@ -9155,13 +9155,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_6a_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_69_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1943] // PUNPCKHWD Vx,Wx + (const void *)&gInstructions[ 1947] // PUNPCKHWD Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_69_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1942] // PUNPCKHWD Pq,Qq + (const void *)&gInstructions[ 1946] // PUNPCKHWD Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_69_prefix = @@ -9178,13 +9178,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_69_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_68_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1938] // PUNPCKHBW Vx,Wx + (const void *)&gInstructions[ 1942] // PUNPCKHBW Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_68_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1937] // PUNPCKHBW Pq,Qq + (const void *)&gInstructions[ 1941] // PUNPCKHBW Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_68_prefix = @@ -9201,13 +9201,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_68_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_67_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1658] // PACKUSWB Vx,Wx + (const void *)&gInstructions[ 1660] // PACKUSWB Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_67_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1657] // PACKUSWB Pq,Qq + (const void *)&gInstructions[ 1659] // PACKUSWB Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_67_prefix = @@ -9224,13 +9224,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_67_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_66_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1703] // PCMPGTD Vx,Wx + (const void *)&gInstructions[ 1705] // PCMPGTD Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_66_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1702] // PCMPGTD Pq,Qq + (const void *)&gInstructions[ 1704] // PCMPGTD Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_66_prefix = @@ -9247,13 +9247,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_66_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_65_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1706] // PCMPGTW Vx,Wx + (const void *)&gInstructions[ 1708] // PCMPGTW Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_65_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1705] // PCMPGTW Pq,Qq + (const void *)&gInstructions[ 1707] // PCMPGTW Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_65_prefix = @@ -9270,13 +9270,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_65_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_64_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1701] // PCMPGTB Vx,Wx + (const void *)&gInstructions[ 1703] // PCMPGTB Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_64_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1700] // PCMPGTB Pq,Qq + (const void *)&gInstructions[ 1702] // PCMPGTB Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_64_prefix = @@ -9293,13 +9293,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_64_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_63_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1655] // PACKSSWB Vx,Wx + (const void *)&gInstructions[ 1657] // PACKSSWB Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_63_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1654] // PACKSSWB Pq,Qq + (const void *)&gInstructions[ 1656] // PACKSSWB Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_63_prefix = @@ -9316,13 +9316,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_63_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_62_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1947] // PUNPCKLDQ Vx,Wx + (const void *)&gInstructions[ 1951] // PUNPCKLDQ Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_62_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1946] // PUNPCKLDQ Pq,Qd + (const void *)&gInstructions[ 1950] // PUNPCKLDQ Pq,Qd }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_62_prefix = @@ -9339,13 +9339,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_62_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_61_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1950] // PUNPCKLWD Vx,Wx + (const void *)&gInstructions[ 1954] // PUNPCKLWD Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_61_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1949] // PUNPCKLWD Pq,Qd + (const void *)&gInstructions[ 1953] // PUNPCKLWD Pq,Qd }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_61_prefix = @@ -9362,13 +9362,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_61_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_60_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1945] // PUNPCKLBW Vx,Wx + (const void *)&gInstructions[ 1949] // PUNPCKLBW Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_60_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1944] // PUNPCKLBW Pq,Qd + (const void *)&gInstructions[ 1948] // PUNPCKLBW Pq,Qd }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_60_prefix = @@ -9490,25 +9490,25 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_5d_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_5c_prefix_03_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2579] // SUBSD Vsd,Wsd + (const void *)&gInstructions[ 2585] // SUBSD Vsd,Wsd }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_5c_prefix_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2580] // SUBSS Vss,Wss + (const void *)&gInstructions[ 2586] // SUBSS Vss,Wss }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_5c_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2577] // SUBPD Vpd,Wpd + (const void *)&gInstructions[ 2583] // SUBPD Vpd,Wpd }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_5c_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2578] // SUBPS Vps,Wps + (const void *)&gInstructions[ 2584] // SUBPS Vps,Wps }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_5c_prefix = @@ -9589,25 +9589,25 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_5a_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_59_prefix_03_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1481] // MULSD Vsd,Wsd + (const void *)&gInstructions[ 1483] // MULSD Vsd,Wsd }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_59_prefix_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1482] // MULSS Vss,Wss + (const void *)&gInstructions[ 1484] // MULSS Vss,Wss }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_59_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1479] // MULPD Vpd,Wpd + (const void *)&gInstructions[ 1481] // MULPD Vpd,Wpd }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_59_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1480] // MULPS Vps,Wps + (const void *)&gInstructions[ 1482] // MULPS Vps,Wps }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_59_prefix = @@ -9659,13 +9659,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_58_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_57_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4139] // XORPD Vpd,Wpd + (const void *)&gInstructions[ 4188] // XORPD Vpd,Wpd }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_57_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4140] // XORPS Vps,Wps + (const void *)&gInstructions[ 4189] // XORPS Vps,Wps }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_57_prefix = @@ -9682,13 +9682,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_57_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_56_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1634] // ORPD Vpd,Wpd + (const void *)&gInstructions[ 1636] // ORPD Vpd,Wpd }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_56_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1635] // ORPS Vps,Wps + (const void *)&gInstructions[ 1637] // ORPS Vps,Wps }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_56_prefix = @@ -9751,13 +9751,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_54_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_53_prefix_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2029] // RCPSS Vss,Wss + (const void *)&gInstructions[ 2033] // RCPSS Vss,Wss }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_53_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2028] // RCPPS Vps,Wps + (const void *)&gInstructions[ 2032] // RCPPS Vps,Wps }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_53_prefix = @@ -9774,13 +9774,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_53_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_52_prefix_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2188] // RSQRTSS Vss,Wss + (const void *)&gInstructions[ 2194] // RSQRTSS Vss,Wss }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_52_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2187] // RSQRTPS Vps,Wps + (const void *)&gInstructions[ 2193] // RSQRTPS Vps,Wps }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_52_prefix = @@ -9797,25 +9797,25 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_52_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_51_prefix_03_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2502] // SQRTSD Vsd,Wsd + (const void *)&gInstructions[ 2508] // SQRTSD Vsd,Wsd }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_51_prefix_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2503] // SQRTSS Vss,Wss + (const void *)&gInstructions[ 2509] // SQRTSS Vss,Wss }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_51_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2500] // SQRTPD Vpd,Wpd + (const void *)&gInstructions[ 2506] // SQRTPD Vpd,Wpd }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_51_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2501] // SQRTPS Vps,Wps + (const void *)&gInstructions[ 2507] // SQRTPS Vps,Wps }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_51_prefix = @@ -10076,7 +10076,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_3a_opcode_ce_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_3a_opcode_cc_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2362] // SHA1RNDS4 Vdq,Wdq,Ib + (const void *)&gInstructions[ 2368] // SHA1RNDS4 Vdq,Wdq,Ib }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_3a_opcode_cc_prefix = @@ -10093,7 +10093,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_3a_opcode_cc_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_3a_opcode_63_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1707] // PCMPISTRI Vdq,Wdq,Ib + (const void *)&gInstructions[ 1709] // PCMPISTRI Vdq,Wdq,Ib }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_3a_opcode_63_prefix = @@ -10110,7 +10110,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_3a_opcode_63_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_3a_opcode_62_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1708] // PCMPISTRM Vdq,Wdq,Ib + (const void *)&gInstructions[ 1710] // PCMPISTRM Vdq,Wdq,Ib }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_3a_opcode_62_prefix = @@ -10127,7 +10127,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_3a_opcode_62_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_3a_opcode_61_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1698] // PCMPESTRI Vdq,Wdq,Ib + (const void *)&gInstructions[ 1700] // PCMPESTRI Vdq,Wdq,Ib }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_3a_opcode_61_prefix = @@ -10144,7 +10144,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_3a_opcode_61_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_3a_opcode_60_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1699] // PCMPESTRM Vdq,Wdq,Ib + (const void *)&gInstructions[ 1701] // PCMPESTRM Vdq,Wdq,Ib }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_3a_opcode_60_prefix = @@ -10161,7 +10161,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_3a_opcode_60_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_3a_opcode_44_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1690] // PCLMULQDQ Vdq,Wdq,Ib + (const void *)&gInstructions[ 1692] // PCLMULQDQ Vdq,Wdq,Ib }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_3a_opcode_44_prefix = @@ -10178,7 +10178,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_3a_opcode_44_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_3a_opcode_42_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1470] // MPSADBW Vdq,Wdq,Ib + (const void *)&gInstructions[ 1472] // MPSADBW Vdq,Wdq,Ib }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_3a_opcode_42_prefix = @@ -10229,13 +10229,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_3a_opcode_40_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_3a_opcode_22_prefix_01_auxiliary_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1763] // PINSRQ Vdq,Eq,Ib + (const void *)&gInstructions[ 1765] // PINSRQ Vdq,Eq,Ib }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_3a_opcode_22_prefix_01_auxiliary_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1762] // PINSRD Vdq,Ed,Ib + (const void *)&gInstructions[ 1764] // PINSRD Vdq,Ed,Ib }; const ND_TABLE_AUXILIARY gLegacyMap_opcode_0f_opcode_3a_opcode_22_prefix_01_auxiliary = @@ -10301,13 +10301,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_3a_opcode_21_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_3a_opcode_20_prefix_01_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1761] // PINSRB Vdq,Ry,Ib + (const void *)&gInstructions[ 1763] // PINSRB Vdq,Ry,Ib }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_3a_opcode_20_prefix_01_modrmmod_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1760] // PINSRB Vdq,Mb,Ib + (const void *)&gInstructions[ 1762] // PINSRB Vdq,Mb,Ib }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_3a_opcode_20_prefix_01_modrmmod = @@ -10350,13 +10350,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_3a_opcode_17_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_3a_opcode_16_prefix_01_modrmmod_01_auxiliary_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1719] // PEXTRQ Ry,Vdq,Ib + (const void *)&gInstructions[ 1721] // PEXTRQ Ry,Vdq,Ib }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_3a_opcode_16_prefix_01_modrmmod_01_auxiliary_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1717] // PEXTRD Ry,Vdq,Ib + (const void *)&gInstructions[ 1719] // PEXTRD Ry,Vdq,Ib }; const ND_TABLE_AUXILIARY gLegacyMap_opcode_0f_opcode_3a_opcode_16_prefix_01_modrmmod_01_auxiliary = @@ -10379,13 +10379,13 @@ const ND_TABLE_AUXILIARY gLegacyMap_opcode_0f_opcode_3a_opcode_16_prefix_01_modr const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_3a_opcode_16_prefix_01_modrmmod_00_auxiliary_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1718] // PEXTRQ Mq,Vdq,Ib + (const void *)&gInstructions[ 1720] // PEXTRQ Mq,Vdq,Ib }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_3a_opcode_16_prefix_01_modrmmod_00_auxiliary_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1716] // PEXTRD Md,Vdq,Ib + (const void *)&gInstructions[ 1718] // PEXTRD Md,Vdq,Ib }; const ND_TABLE_AUXILIARY gLegacyMap_opcode_0f_opcode_3a_opcode_16_prefix_01_modrmmod_00_auxiliary = @@ -10428,13 +10428,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_3a_opcode_16_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_3a_opcode_15_prefix_01_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1723] // PEXTRW Ry,Vdq,Ib + (const void *)&gInstructions[ 1725] // PEXTRW Ry,Vdq,Ib }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_3a_opcode_15_prefix_01_modrmmod_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1722] // PEXTRW Mw,Vdq,Ib + (const void *)&gInstructions[ 1724] // PEXTRW Mw,Vdq,Ib }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_3a_opcode_15_prefix_01_modrmmod = @@ -10460,13 +10460,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_3a_opcode_15_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_3a_opcode_14_prefix_01_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1715] // PEXTRB Ry,Vdq,Ib + (const void *)&gInstructions[ 1717] // PEXTRB Ry,Vdq,Ib }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_3a_opcode_14_prefix_01_modrmmod_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1714] // PEXTRB Mb,Vdq,Ib + (const void *)&gInstructions[ 1716] // PEXTRB Mb,Vdq,Ib }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_3a_opcode_14_prefix_01_modrmmod = @@ -10492,13 +10492,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_3a_opcode_14_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_3a_opcode_0f_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1676] // PALIGNR Vx,Wx,Ib + (const void *)&gInstructions[ 1678] // PALIGNR Vx,Wx,Ib }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_3a_opcode_0f_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1675] // PALIGNR Pq,Qq,Ib + (const void *)&gInstructions[ 1677] // PALIGNR Pq,Qq,Ib }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_3a_opcode_0f_prefix = @@ -10515,7 +10515,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_3a_opcode_0f_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_3a_opcode_0e_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1688] // PBLENDW Vx,Wx,Ib + (const void *)&gInstructions[ 1690] // PBLENDW Vx,Wx,Ib }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_3a_opcode_0e_prefix = @@ -10566,7 +10566,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_3a_opcode_0c_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_3a_opcode_0b_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2184] // ROUNDSD Vsd,Wsd,Ib + (const void *)&gInstructions[ 2190] // ROUNDSD Vsd,Wsd,Ib }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_3a_opcode_0b_prefix = @@ -10583,7 +10583,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_3a_opcode_0b_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_3a_opcode_0a_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2185] // ROUNDSS Vss,Wss,Ib + (const void *)&gInstructions[ 2191] // ROUNDSS Vss,Wss,Ib }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_3a_opcode_0a_prefix = @@ -10600,7 +10600,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_3a_opcode_0a_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_3a_opcode_09_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2182] // ROUNDPD Vx,Wx,Ib + (const void *)&gInstructions[ 2188] // ROUNDPD Vx,Wx,Ib }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_3a_opcode_09_prefix = @@ -10617,7 +10617,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_3a_opcode_09_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_3a_opcode_08_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2183] // ROUNDPS Vx,Wx,Ib + (const void *)&gInstructions[ 2189] // ROUNDPS Vx,Wx,Ib }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_3a_opcode_08_prefix = @@ -11046,7 +11046,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_f9_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_f8_prefix_03_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2635] // URDMSR Rq,Gq + (const void *)&gInstructions[ 2676] // URDMSR Rq,Gq }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_f8_prefix_03_modrmmod_00_leaf = @@ -11067,7 +11067,7 @@ const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_38_opcode_f8_prefix_03_modr const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_f8_prefix_02_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2639] // UWRMSR Gq,Rq + (const void *)&gInstructions[ 2680] // UWRMSR Gq,Rq }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_f8_prefix_02_modrmmod_00_leaf = @@ -11126,13 +11126,13 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_f6_prefix_01_le const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_f6_prefix_00_modrmmod_00_auxiliary_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4063] // WRSSQ My,Gy + (const void *)&gInstructions[ 4112] // WRSSQ My,Gy }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_f6_prefix_00_modrmmod_00_auxiliary_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4061] // WRSSD My,Gy + (const void *)&gInstructions[ 4110] // WRSSD My,Gy }; const ND_TABLE_AUXILIARY gLegacyMap_opcode_0f_opcode_38_opcode_f6_prefix_00_modrmmod_00_auxiliary = @@ -11175,13 +11175,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_f6_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_f5_prefix_01_modrmmod_00_auxiliary_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4067] // WRUSSQ My,Gy + (const void *)&gInstructions[ 4116] // WRUSSQ My,Gy }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_f5_prefix_01_modrmmod_00_auxiliary_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4065] // WRUSSD My,Gy + (const void *)&gInstructions[ 4114] // WRUSSD My,Gy }; const ND_TABLE_AUXILIARY gLegacyMap_opcode_0f_opcode_38_opcode_f5_prefix_01_modrmmod_00_auxiliary = @@ -11572,7 +11572,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_cf_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_cd_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2364] // SHA256MSG2 Vdq,Wdq + (const void *)&gInstructions[ 2370] // SHA256MSG2 Vdq,Wdq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_cd_prefix = @@ -11589,7 +11589,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_cd_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_cc_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2363] // SHA256MSG1 Vdq,Wdq + (const void *)&gInstructions[ 2369] // SHA256MSG1 Vdq,Wdq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_cc_prefix = @@ -11606,7 +11606,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_cc_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_cb_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2365] // SHA256RNDS2 Vdq,Wdq + (const void *)&gInstructions[ 2371] // SHA256RNDS2 Vdq,Wdq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_cb_prefix = @@ -11623,7 +11623,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_cb_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_ca_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2360] // SHA1MSG2 Vdq,Wdq + (const void *)&gInstructions[ 2366] // SHA1MSG2 Vdq,Wdq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_ca_prefix = @@ -11640,7 +11640,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_ca_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_c9_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2359] // SHA1MSG1 Vdq,Wdq + (const void *)&gInstructions[ 2365] // SHA1MSG1 Vdq,Wdq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_c9_prefix = @@ -11657,7 +11657,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_c9_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_c8_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2361] // SHA1NEXTE Vdq,Wdq + (const void *)&gInstructions[ 2367] // SHA1NEXTE Vdq,Wdq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_c8_prefix = @@ -11671,6 +11671,36 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_c8_prefix = } }; +const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_8b_modrmmod_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 1448] // MOVRS Gv,Mv +}; + +const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_38_opcode_8b_modrmmod = +{ + ND_ILUT_MODRM_MOD, + { + /* 00 */ (const void *)&gLegacyMap_opcode_0f_opcode_38_opcode_8b_modrmmod_00_leaf, + /* 01 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_8a_modrmmod_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 1447] // MOVRS Gb,Mb +}; + +const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_38_opcode_8a_modrmmod = +{ + ND_ILUT_MODRM_MOD, + { + /* 00 */ (const void *)&gLegacyMap_opcode_0f_opcode_38_opcode_8a_modrmmod_00_leaf, + /* 01 */ (const void *)ND_NULL, + } +}; + const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_82_prefix_01_modrmmod_00_leaf = { ND_ILUT_INSTRUCTION, @@ -11752,7 +11782,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_80_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_41_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1751] // PHMINPOSUW Vdq,Wdq + (const void *)&gInstructions[ 1753] // PHMINPOSUW Vdq,Wdq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_41_prefix = @@ -11769,7 +11799,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_41_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_40_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1810] // PMULLD Vx,Wx + (const void *)&gInstructions[ 1812] // PMULLD Vx,Wx }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_40_prefix = @@ -11786,7 +11816,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_40_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_3f_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1778] // PMAXUD Vx,Wx + (const void *)&gInstructions[ 1780] // PMAXUD Vx,Wx }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_3f_prefix = @@ -11803,7 +11833,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_3f_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_3e_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1779] // PMAXUW Vx,Wx + (const void *)&gInstructions[ 1781] // PMAXUW Vx,Wx }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_3e_prefix = @@ -11820,7 +11850,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_3e_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_3d_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1773] // PMAXSD Vx,Wx + (const void *)&gInstructions[ 1775] // PMAXSD Vx,Wx }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_3d_prefix = @@ -11837,7 +11867,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_3d_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_3c_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1772] // PMAXSB Vx,Wx + (const void *)&gInstructions[ 1774] // PMAXSB Vx,Wx }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_3c_prefix = @@ -11854,7 +11884,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_3c_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_3b_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1786] // PMINUD Vx,Wx + (const void *)&gInstructions[ 1788] // PMINUD Vx,Wx }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_3b_prefix = @@ -11871,7 +11901,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_3b_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_3a_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1787] // PMINUW Vx,Wx + (const void *)&gInstructions[ 1789] // PMINUW Vx,Wx }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_3a_prefix = @@ -11888,7 +11918,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_3a_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_39_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1781] // PMINSD Vx,Wx + (const void *)&gInstructions[ 1783] // PMINSD Vx,Wx }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_39_prefix = @@ -11905,7 +11935,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_39_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_38_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1780] // PMINSB Vx,Wx + (const void *)&gInstructions[ 1782] // PMINSB Vx,Wx }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_38_prefix = @@ -11922,7 +11952,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_38_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_37_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1704] // PCMPGTQ Vx,Wx + (const void *)&gInstructions[ 1706] // PCMPGTQ Vx,Wx }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_37_prefix = @@ -11939,7 +11969,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_37_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_35_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1799] // PMOVZXDQ Vdq,Wq + (const void *)&gInstructions[ 1801] // PMOVZXDQ Vdq,Wq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_35_prefix = @@ -11956,7 +11986,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_35_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_34_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1801] // PMOVZXWQ Vdq,Wd + (const void *)&gInstructions[ 1803] // PMOVZXWQ Vdq,Wd }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_34_prefix = @@ -11973,7 +12003,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_34_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_33_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1800] // PMOVZXWD Vdq,Wq + (const void *)&gInstructions[ 1802] // PMOVZXWD Vdq,Wq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_33_prefix = @@ -11990,7 +12020,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_33_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_32_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1797] // PMOVZXBQ Vdq,Ww + (const void *)&gInstructions[ 1799] // PMOVZXBQ Vdq,Ww }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_32_prefix = @@ -12007,7 +12037,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_32_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_31_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1796] // PMOVZXBD Vdq,Wd + (const void *)&gInstructions[ 1798] // PMOVZXBD Vdq,Wd }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_31_prefix = @@ -12024,7 +12054,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_31_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_30_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1798] // PMOVZXBW Vdq,Wq + (const void *)&gInstructions[ 1800] // PMOVZXBW Vdq,Wq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_30_prefix = @@ -12041,7 +12071,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_30_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_2b_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1656] // PACKUSDW Vx,Wx + (const void *)&gInstructions[ 1658] // PACKUSDW Vx,Wx }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_2b_prefix = @@ -12084,7 +12114,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_2a_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_29_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1695] // PCMPEQQ Vx,Wx + (const void *)&gInstructions[ 1697] // PCMPEQQ Vx,Wx }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_29_prefix = @@ -12101,7 +12131,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_29_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_28_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1802] // PMULDQ Vx,Wx + (const void *)&gInstructions[ 1804] // PMULDQ Vx,Wx }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_28_prefix = @@ -12118,7 +12148,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_28_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_25_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1793] // PMOVSXDQ Vdq,Wq + (const void *)&gInstructions[ 1795] // PMOVSXDQ Vdq,Wq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_25_prefix = @@ -12135,7 +12165,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_25_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_24_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1795] // PMOVSXWQ Vdq,Wd + (const void *)&gInstructions[ 1797] // PMOVSXWQ Vdq,Wd }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_24_prefix = @@ -12152,7 +12182,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_24_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_23_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1794] // PMOVSXWD Vdq,Wq + (const void *)&gInstructions[ 1796] // PMOVSXWD Vdq,Wq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_23_prefix = @@ -12169,7 +12199,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_23_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_22_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1791] // PMOVSXBQ Vdq,Ww + (const void *)&gInstructions[ 1793] // PMOVSXBQ Vdq,Ww }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_22_prefix = @@ -12186,7 +12216,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_22_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_21_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1790] // PMOVSXBD Vdq,Wd + (const void *)&gInstructions[ 1792] // PMOVSXBD Vdq,Wd }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_21_prefix = @@ -12203,7 +12233,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_21_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_20_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1792] // PMOVSXBW Vdq,Wq + (const void *)&gInstructions[ 1794] // PMOVSXBW Vdq,Wq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_20_prefix = @@ -12220,13 +12250,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_20_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_1e_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1649] // PABSD Vx,Wx + (const void *)&gInstructions[ 1651] // PABSD Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_1e_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1648] // PABSD Pq,Qq + (const void *)&gInstructions[ 1650] // PABSD Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_1e_prefix = @@ -12243,13 +12273,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_1e_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_1d_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1651] // PABSW Vx,Wx + (const void *)&gInstructions[ 1653] // PABSW Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_1d_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1650] // PABSW Pq,Qq + (const void *)&gInstructions[ 1652] // PABSW Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_1d_prefix = @@ -12266,13 +12296,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_1d_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_1c_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1647] // PABSB Vx,Wx + (const void *)&gInstructions[ 1649] // PABSB Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_1c_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1646] // PABSB Pq,Qq + (const void *)&gInstructions[ 1648] // PABSB Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_1c_prefix = @@ -12289,7 +12319,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_1c_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_17_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1935] // PTEST Vdq,Wdq + (const void *)&gInstructions[ 1939] // PTEST Vdq,Wdq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_17_prefix = @@ -12340,7 +12370,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_14_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_10_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1687] // PBLENDVB Vdq,Wdq + (const void *)&gInstructions[ 1689] // PBLENDVB Vdq,Wdq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_10_prefix = @@ -12357,13 +12387,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_10_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_0b_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1804] // PMULHRSW Vx,Wx + (const void *)&gInstructions[ 1806] // PMULHRSW Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_0b_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1803] // PMULHRSW Pq,Qq + (const void *)&gInstructions[ 1805] // PMULHRSW Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_0b_prefix = @@ -12380,13 +12410,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_0b_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_0a_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1880] // PSIGND Vx,Wx + (const void *)&gInstructions[ 1884] // PSIGND Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_0a_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1879] // PSIGND Pq,Qq + (const void *)&gInstructions[ 1883] // PSIGND Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_0a_prefix = @@ -12403,13 +12433,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_0a_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_09_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1882] // PSIGNW Vx,Wx + (const void *)&gInstructions[ 1886] // PSIGNW Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_09_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1881] // PSIGNW Pq,Qq + (const void *)&gInstructions[ 1885] // PSIGNW Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_09_prefix = @@ -12426,13 +12456,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_09_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_08_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1878] // PSIGNB Vx,Wx + (const void *)&gInstructions[ 1882] // PSIGNB Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_08_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1877] // PSIGNB Pq,Qq + (const void *)&gInstructions[ 1881] // PSIGNB Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_08_prefix = @@ -12449,13 +12479,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_08_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_07_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1755] // PHSUBSW Vx,Wx + (const void *)&gInstructions[ 1757] // PHSUBSW Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_07_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1754] // PHSUBSW Pq,Qq + (const void *)&gInstructions[ 1756] // PHSUBSW Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_07_prefix = @@ -12472,13 +12502,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_07_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_06_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1753] // PHSUBD Vx,Wx + (const void *)&gInstructions[ 1755] // PHSUBD Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_06_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1752] // PHSUBD Pq,Qq + (const void *)&gInstructions[ 1754] // PHSUBD Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_06_prefix = @@ -12495,13 +12525,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_06_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_05_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1757] // PHSUBW Vx,Wx + (const void *)&gInstructions[ 1759] // PHSUBW Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_05_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1756] // PHSUBW Pq,Qq + (const void *)&gInstructions[ 1758] // PHSUBW Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_05_prefix = @@ -12518,13 +12548,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_05_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_04_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1769] // PMADDUBSW Vx,Wx + (const void *)&gInstructions[ 1771] // PMADDUBSW Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_04_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1768] // PMADDUBSW Pq,Qq + (const void *)&gInstructions[ 1770] // PMADDUBSW Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_04_prefix = @@ -12541,13 +12571,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_04_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_03_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1748] // PHADDSW Vx,Wx + (const void *)&gInstructions[ 1750] // PHADDSW Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_03_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1747] // PHADDSW Pq,Qq + (const void *)&gInstructions[ 1749] // PHADDSW Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_03_prefix = @@ -12564,13 +12594,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_03_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_02_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1746] // PHADDD Vx,Wx + (const void *)&gInstructions[ 1748] // PHADDD Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_02_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1745] // PHADDD Pq,Qq + (const void *)&gInstructions[ 1747] // PHADDD Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_02_prefix = @@ -12587,13 +12617,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_02_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_01_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1750] // PHADDW Vx,Wx + (const void *)&gInstructions[ 1752] // PHADDW Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_01_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1749] // PHADDW Pq,Qq + (const void *)&gInstructions[ 1751] // PHADDW Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_01_prefix = @@ -12610,13 +12640,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_01_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_00_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1872] // PSHUFB Vx,Wx + (const void *)&gInstructions[ 1876] // PSHUFB Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_38_opcode_00_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1871] // PSHUFB Pq,Qq + (const void *)&gInstructions[ 1875] // PSHUFB Pq,Qq }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_38_opcode_00_prefix = @@ -12772,8 +12802,8 @@ const ND_TABLE_OPCODE gLegacyMap_opcode_0f_opcode_38_opcode = /* 87 */ (const void *)ND_NULL, /* 88 */ (const void *)ND_NULL, /* 89 */ (const void *)ND_NULL, - /* 8a */ (const void *)ND_NULL, - /* 8b */ (const void *)ND_NULL, + /* 8a */ (const void *)&gLegacyMap_opcode_0f_opcode_38_opcode_8a_modrmmod, + /* 8b */ (const void *)&gLegacyMap_opcode_0f_opcode_38_opcode_8b_modrmmod, /* 8c */ (const void *)ND_NULL, /* 8d */ (const void *)ND_NULL, /* 8e */ (const void *)ND_NULL, @@ -12913,37 +12943,37 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_37_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_35_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2584] // SYSEXIT + (const void *)&gInstructions[ 2590] // SYSEXIT }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_34_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2583] // SYSENTER + (const void *)&gInstructions[ 2589] // SYSENTER }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_33_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2078] // RDPMC + (const void *)&gInstructions[ 2084] // RDPMC }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_32_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2074] // RDMSR + (const void *)&gInstructions[ 2079] // RDMSR }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_31_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2086] // RDTSC + (const void *)&gInstructions[ 2092] // RDTSC }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_30_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4056] // WRMSR + (const void *)&gInstructions[ 4103] // WRMSR }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_2f_prefix_01_leaf = @@ -12972,13 +13002,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_2f_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_2e_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2621] // UCOMISD Vsd,Wsd + (const void *)&gInstructions[ 2662] // UCOMISD Vsd,Wsd }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_2e_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2622] // UCOMISS Vss,Wss + (const void *)&gInstructions[ 2663] // UCOMISS Vss,Wss }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_2e_prefix = @@ -13253,31 +13283,31 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_20_leaf = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_1f_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1534] // NOP Ev,Gv + (const void *)&gInstructions[ 1536] // NOP Ev,Gv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_1e_feature_02_modrmreg_07_modrmmod_01_modrmrm_07_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1571] // NOP Rv,Gv + (const void *)&gInstructions[ 1573] // NOP Rv,Gv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_1e_feature_02_modrmreg_07_modrmmod_01_modrmrm_06_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1570] // NOP Rv,Gv + (const void *)&gInstructions[ 1572] // NOP Rv,Gv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_1e_feature_02_modrmreg_07_modrmmod_01_modrmrm_05_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1569] // NOP Rv,Gv + (const void *)&gInstructions[ 1571] // NOP Rv,Gv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_1e_feature_02_modrmreg_07_modrmmod_01_modrmrm_04_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1568] // NOP Rv,Gv + (const void *)&gInstructions[ 1570] // NOP Rv,Gv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_1e_feature_02_modrmreg_07_modrmmod_01_modrmrm_03_auxiliary_04_leaf = @@ -13289,7 +13319,7 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_1e_feature_02_modrmreg_07 const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_1e_feature_02_modrmreg_07_modrmmod_01_modrmrm_03_auxiliary_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1567] // NOP Rv,Gv + (const void *)&gInstructions[ 1569] // NOP Rv,Gv }; const ND_TABLE_AUXILIARY gLegacyMap_opcode_0f_opcode_1e_feature_02_modrmreg_07_modrmmod_01_modrmrm_03_auxiliary = @@ -13318,7 +13348,7 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_1e_feature_02_modrmreg_07 const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_1e_feature_02_modrmreg_07_modrmmod_01_modrmrm_02_auxiliary_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1566] // NOP Rv,Gv + (const void *)&gInstructions[ 1568] // NOP Rv,Gv }; const ND_TABLE_AUXILIARY gLegacyMap_opcode_0f_opcode_1e_feature_02_modrmreg_07_modrmmod_01_modrmrm_02_auxiliary = @@ -13341,13 +13371,13 @@ const ND_TABLE_AUXILIARY gLegacyMap_opcode_0f_opcode_1e_feature_02_modrmreg_07_m const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_1e_feature_02_modrmreg_07_modrmmod_01_modrmrm_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1565] // NOP Rv,Gv + (const void *)&gInstructions[ 1567] // NOP Rv,Gv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_1e_feature_02_modrmreg_07_modrmmod_01_modrmrm_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1564] // NOP Rv,Gv + (const void *)&gInstructions[ 1566] // NOP Rv,Gv }; const ND_TABLE_MODRM_RM gLegacyMap_opcode_0f_opcode_1e_feature_02_modrmreg_07_modrmmod_01_modrmrm = @@ -13368,7 +13398,7 @@ const ND_TABLE_MODRM_RM gLegacyMap_opcode_0f_opcode_1e_feature_02_modrmreg_07_mo const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_1e_feature_02_modrmreg_07_modrmmod_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1563] // NOP Mv,Gv + (const void *)&gInstructions[ 1565] // NOP Mv,Gv }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_1e_feature_02_modrmreg_07_modrmmod = @@ -13383,13 +13413,13 @@ const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_1e_feature_02_modrmreg_07_m const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_1e_feature_02_modrmreg_06_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1562] // NOP Rv,Gv + (const void *)&gInstructions[ 1564] // NOP Rv,Gv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_1e_feature_02_modrmreg_06_modrmmod_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1561] // NOP Mv,Gv + (const void *)&gInstructions[ 1563] // NOP Mv,Gv }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_1e_feature_02_modrmreg_06_modrmmod = @@ -13404,13 +13434,13 @@ const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_1e_feature_02_modrmreg_06_m const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_1e_feature_02_modrmreg_05_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1560] // NOP Rv,Gv + (const void *)&gInstructions[ 1562] // NOP Rv,Gv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_1e_feature_02_modrmreg_05_modrmmod_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1559] // NOP Mv,Gv + (const void *)&gInstructions[ 1561] // NOP Mv,Gv }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_1e_feature_02_modrmreg_05_modrmmod = @@ -13425,13 +13455,13 @@ const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_1e_feature_02_modrmreg_05_m const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_1e_feature_02_modrmreg_04_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1558] // NOP Rv,Gv + (const void *)&gInstructions[ 1560] // NOP Rv,Gv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_1e_feature_02_modrmreg_04_modrmmod_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1557] // NOP Mv,Gv + (const void *)&gInstructions[ 1559] // NOP Mv,Gv }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_1e_feature_02_modrmreg_04_modrmmod = @@ -13446,13 +13476,13 @@ const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_1e_feature_02_modrmreg_04_m const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_1e_feature_02_modrmreg_03_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1556] // NOP Rv,Gv + (const void *)&gInstructions[ 1558] // NOP Rv,Gv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_1e_feature_02_modrmreg_03_modrmmod_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1555] // NOP Mv,Gv + (const void *)&gInstructions[ 1557] // NOP Mv,Gv }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_1e_feature_02_modrmreg_03_modrmmod = @@ -13467,13 +13497,13 @@ const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_1e_feature_02_modrmreg_03_m const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_1e_feature_02_modrmreg_02_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1554] // NOP Rv,Gv + (const void *)&gInstructions[ 1556] // NOP Rv,Gv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_1e_feature_02_modrmreg_02_modrmmod_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1553] // NOP Mv,Gv + (const void *)&gInstructions[ 1555] // NOP Mv,Gv }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_1e_feature_02_modrmreg_02_modrmmod = @@ -13488,13 +13518,13 @@ const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_1e_feature_02_modrmreg_02_m const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_1e_feature_02_modrmreg_01_modrmmod_01_auxiliary_04_auxiliary_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2085] // RDSSPQ Rq + (const void *)&gInstructions[ 2091] // RDSSPQ Rq }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_1e_feature_02_modrmreg_01_modrmmod_01_auxiliary_04_auxiliary_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2084] // RDSSPD Rd + (const void *)&gInstructions[ 2090] // RDSSPD Rd }; const ND_TABLE_AUXILIARY gLegacyMap_opcode_0f_opcode_1e_feature_02_modrmreg_01_modrmmod_01_auxiliary_04_auxiliary = @@ -13517,7 +13547,7 @@ const ND_TABLE_AUXILIARY gLegacyMap_opcode_0f_opcode_1e_feature_02_modrmreg_01_m const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_1e_feature_02_modrmreg_01_modrmmod_01_auxiliary_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1552] // NOP Rv,Gv + (const void *)&gInstructions[ 1554] // NOP Rv,Gv }; const ND_TABLE_AUXILIARY gLegacyMap_opcode_0f_opcode_1e_feature_02_modrmreg_01_modrmmod_01_auxiliary = @@ -13540,7 +13570,7 @@ const ND_TABLE_AUXILIARY gLegacyMap_opcode_0f_opcode_1e_feature_02_modrmreg_01_m const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_1e_feature_02_modrmreg_01_modrmmod_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1551] // NOP Mv,Gv + (const void *)&gInstructions[ 1553] // NOP Mv,Gv }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_1e_feature_02_modrmreg_01_modrmmod = @@ -13555,13 +13585,13 @@ const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_1e_feature_02_modrmreg_01_m const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_1e_feature_02_modrmreg_00_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1550] // NOP Rv,Gv + (const void *)&gInstructions[ 1552] // NOP Rv,Gv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_1e_feature_02_modrmreg_00_modrmmod_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1549] // NOP Mv,Gv + (const void *)&gInstructions[ 1551] // NOP Mv,Gv }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_1e_feature_02_modrmreg_00_modrmmod = @@ -13591,7 +13621,7 @@ const ND_TABLE_MODRM_REG gLegacyMap_opcode_0f_opcode_1e_feature_02_modrmreg = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_1e_feature_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1533] // NOP Ev,Gv + (const void *)&gInstructions[ 1535] // NOP Ev,Gv }; const ND_TABLE_FEATURE gLegacyMap_opcode_0f_opcode_1e_feature = @@ -13612,73 +13642,73 @@ const ND_TABLE_FEATURE gLegacyMap_opcode_0f_opcode_1e_feature = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_1d_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1532] // NOP Ev,Gv + (const void *)&gInstructions[ 1534] // NOP Ev,Gv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_1c_feature_03_modrmreg_07_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1548] // NOP Ev,Gv + (const void *)&gInstructions[ 1550] // NOP Ev,Gv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_1c_feature_03_modrmreg_06_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1547] // NOP Ev,Gv + (const void *)&gInstructions[ 1549] // NOP Ev,Gv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_1c_feature_03_modrmreg_05_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1546] // NOP Ev,Gv + (const void *)&gInstructions[ 1548] // NOP Ev,Gv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_1c_feature_03_modrmreg_04_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1545] // NOP Ev,Gv + (const void *)&gInstructions[ 1547] // NOP Ev,Gv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_1c_feature_03_modrmreg_03_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1544] // NOP Ev,Gv + (const void *)&gInstructions[ 1546] // NOP Ev,Gv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_1c_feature_03_modrmreg_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1543] // NOP Ev,Gv + (const void *)&gInstructions[ 1545] // NOP Ev,Gv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_1c_feature_03_modrmreg_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1542] // NOP Ev,Gv + (const void *)&gInstructions[ 1544] // NOP Ev,Gv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_1c_feature_03_modrmreg_00_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1541] // NOP Ev,Gv + (const void *)&gInstructions[ 1543] // NOP Ev,Gv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_1c_feature_03_modrmreg_00_modrmmod_00_prefix_03_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1540] // NOP Ev,Gv + (const void *)&gInstructions[ 1542] // NOP Ev,Gv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_1c_feature_03_modrmreg_00_modrmmod_00_prefix_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1539] // NOP Ev,Gv + (const void *)&gInstructions[ 1541] // NOP Ev,Gv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_1c_feature_03_modrmreg_00_modrmmod_00_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1538] // NOP Ev,Gv + (const void *)&gInstructions[ 1540] // NOP Ev,Gv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_1c_feature_03_modrmreg_00_modrmmod_00_prefix_00_leaf = @@ -13725,7 +13755,7 @@ const ND_TABLE_MODRM_REG gLegacyMap_opcode_0f_opcode_1c_feature_03_modrmreg = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_1c_feature_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1531] // NOP Ev,Gv + (const void *)&gInstructions[ 1533] // NOP Ev,Gv }; const ND_TABLE_FEATURE gLegacyMap_opcode_0f_opcode_1c_feature = @@ -13752,7 +13782,7 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_1b_feature_01_prefix_03_l const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_1b_feature_01_prefix_02_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1537] // NOP Gv,Ev + (const void *)&gInstructions[ 1539] // NOP Gv,Ev }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_1b_feature_01_prefix_02_modrmmod_00_leaf = @@ -13779,7 +13809,7 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_1b_feature_01_prefix_01_l const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_1b_feature_01_prefix_00_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1536] // NOP Gv,Ev + (const void *)&gInstructions[ 1538] // NOP Gv,Ev }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_1b_feature_01_prefix_00_modrmmod_00_leaf = @@ -13811,7 +13841,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_1b_feature_01_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_1b_feature_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1530] // NOP Gv,Ev + (const void *)&gInstructions[ 1532] // NOP Gv,Ev }; const ND_TABLE_FEATURE gLegacyMap_opcode_0f_opcode_1b_feature = @@ -13850,7 +13880,7 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_1a_feature_01_prefix_01_l const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_1a_feature_01_prefix_00_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1535] // NOP Gv,Ev + (const void *)&gInstructions[ 1537] // NOP Gv,Ev }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_1a_feature_01_prefix_00_modrmmod_00_leaf = @@ -13882,7 +13912,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_1a_feature_01_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_1a_feature_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1529] // NOP Ev,Gv + (const void *)&gInstructions[ 1531] // NOP Ev,Gv }; const ND_TABLE_FEATURE gLegacyMap_opcode_0f_opcode_1a_feature = @@ -13903,25 +13933,25 @@ const ND_TABLE_FEATURE gLegacyMap_opcode_0f_opcode_1a_feature = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_19_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1518] // NOP Ev + (const void *)&gInstructions[ 1520] // NOP Ev }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_18_feature_04_modrmreg_07_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1528] // NOP Ev + (const void *)&gInstructions[ 1530] // NOP Ev }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_18_feature_04_modrmreg_07_modrmmod_00_auxiliary_06_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1856] // PREFETCHIT0 Mb + (const void *)&gInstructions[ 1858] // PREFETCHIT0 Mb }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_18_feature_04_modrmreg_07_modrmmod_00_auxiliary_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1527] // NOP Ev + (const void *)&gInstructions[ 1529] // NOP Ev }; const ND_TABLE_AUXILIARY gLegacyMap_opcode_0f_opcode_18_feature_04_modrmreg_07_modrmmod_00_auxiliary = @@ -13953,19 +13983,19 @@ const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_18_feature_04_modrmreg_07_m const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_18_feature_04_modrmreg_06_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1526] // NOP Ev + (const void *)&gInstructions[ 1528] // NOP Ev }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_18_feature_04_modrmreg_06_modrmmod_00_auxiliary_06_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1857] // PREFETCHIT1 Mb + (const void *)&gInstructions[ 1859] // PREFETCHIT1 Mb }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_18_feature_04_modrmreg_06_modrmmod_00_auxiliary_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1525] // NOP Ev + (const void *)&gInstructions[ 1527] // NOP Ev }; const ND_TABLE_AUXILIARY gLegacyMap_opcode_0f_opcode_18_feature_04_modrmreg_06_modrmmod_00_auxiliary = @@ -13997,25 +14027,40 @@ const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_18_feature_04_modrmreg_06_m const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_18_feature_04_modrmreg_05_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1524] // NOP Ev + (const void *)&gInstructions[ 1526] // NOP Ev }; -const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_18_feature_04_modrmreg_04_leaf = +const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_18_feature_04_modrmreg_04_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1523] // NOP Ev + (const void *)&gInstructions[ 1525] // NOP Ev +}; + +const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_18_feature_04_modrmreg_04_modrmmod_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 1864] // PREFETCHRST2 Mb +}; + +const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_18_feature_04_modrmreg_04_modrmmod = +{ + ND_ILUT_MODRM_MOD, + { + /* 00 */ (const void *)&gLegacyMap_opcode_0f_opcode_18_feature_04_modrmreg_04_modrmmod_00_leaf, + /* 01 */ (const void *)&gLegacyMap_opcode_0f_opcode_18_feature_04_modrmreg_04_modrmmod_01_leaf, + } }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_18_feature_04_modrmreg_03_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1522] // NOP Ev + (const void *)&gInstructions[ 1524] // NOP Ev }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_18_feature_04_modrmreg_03_modrmmod_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1866] // PREFETCHT2 Mb + (const void *)&gInstructions[ 1870] // PREFETCHT2 Mb }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_18_feature_04_modrmreg_03_modrmmod = @@ -14030,13 +14075,13 @@ const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_18_feature_04_modrmreg_03_m const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_18_feature_04_modrmreg_02_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1521] // NOP Ev + (const void *)&gInstructions[ 1523] // NOP Ev }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_18_feature_04_modrmreg_02_modrmmod_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1864] // PREFETCHT1 Mb + (const void *)&gInstructions[ 1868] // PREFETCHT1 Mb }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_18_feature_04_modrmreg_02_modrmmod = @@ -14051,13 +14096,13 @@ const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_18_feature_04_modrmreg_02_m const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_18_feature_04_modrmreg_01_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1520] // NOP Ev + (const void *)&gInstructions[ 1522] // NOP Ev }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_18_feature_04_modrmreg_01_modrmmod_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1862] // PREFETCHT0 Mb + (const void *)&gInstructions[ 1866] // PREFETCHT0 Mb }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_18_feature_04_modrmreg_01_modrmmod = @@ -14072,13 +14117,13 @@ const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_18_feature_04_modrmreg_01_m const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_18_feature_04_modrmreg_00_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1519] // NOP Ev + (const void *)&gInstructions[ 1521] // NOP Ev }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_18_feature_04_modrmreg_00_modrmmod_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1860] // PREFETCHNTA Mb + (const void *)&gInstructions[ 1862] // PREFETCHNTA Mb }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_18_feature_04_modrmreg_00_modrmmod = @@ -14098,7 +14143,7 @@ const ND_TABLE_MODRM_REG gLegacyMap_opcode_0f_opcode_18_feature_04_modrmreg = /* 01 */ (const void *)&gLegacyMap_opcode_0f_opcode_18_feature_04_modrmreg_01_modrmmod, /* 02 */ (const void *)&gLegacyMap_opcode_0f_opcode_18_feature_04_modrmreg_02_modrmmod, /* 03 */ (const void *)&gLegacyMap_opcode_0f_opcode_18_feature_04_modrmreg_03_modrmmod, - /* 04 */ (const void *)&gLegacyMap_opcode_0f_opcode_18_feature_04_modrmreg_04_leaf, + /* 04 */ (const void *)&gLegacyMap_opcode_0f_opcode_18_feature_04_modrmreg_04_modrmmod, /* 05 */ (const void *)&gLegacyMap_opcode_0f_opcode_18_feature_04_modrmreg_05_leaf, /* 06 */ (const void *)&gLegacyMap_opcode_0f_opcode_18_feature_04_modrmreg_06_modrmmod, /* 07 */ (const void *)&gLegacyMap_opcode_0f_opcode_18_feature_04_modrmreg_07_modrmmod, @@ -14108,37 +14153,52 @@ const ND_TABLE_MODRM_REG gLegacyMap_opcode_0f_opcode_18_feature_04_modrmreg = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_18_feature_00_modrmreg_07_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1517] // NOP Ev + (const void *)&gInstructions[ 1519] // NOP Ev }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_18_feature_00_modrmreg_06_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1516] // NOP Ev + (const void *)&gInstructions[ 1518] // NOP Ev }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_18_feature_00_modrmreg_05_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1515] // NOP Ev + (const void *)&gInstructions[ 1517] // NOP Ev }; -const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_18_feature_00_modrmreg_04_leaf = +const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_18_feature_00_modrmreg_04_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1514] // NOP Ev + (const void *)&gInstructions[ 1516] // NOP Ev +}; + +const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_18_feature_00_modrmreg_04_modrmmod_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 1863] // PREFETCHRST2 Mb +}; + +const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_18_feature_00_modrmreg_04_modrmmod = +{ + ND_ILUT_MODRM_MOD, + { + /* 00 */ (const void *)&gLegacyMap_opcode_0f_opcode_18_feature_00_modrmreg_04_modrmmod_00_leaf, + /* 01 */ (const void *)&gLegacyMap_opcode_0f_opcode_18_feature_00_modrmreg_04_modrmmod_01_leaf, + } }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_18_feature_00_modrmreg_03_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1513] // NOP Ev + (const void *)&gInstructions[ 1515] // NOP Ev }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_18_feature_00_modrmreg_03_modrmmod_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1865] // PREFETCHT2 Mb + (const void *)&gInstructions[ 1869] // PREFETCHT2 Mb }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_18_feature_00_modrmreg_03_modrmmod = @@ -14153,13 +14213,13 @@ const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_18_feature_00_modrmreg_03_m const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_18_feature_00_modrmreg_02_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1512] // NOP Ev + (const void *)&gInstructions[ 1514] // NOP Ev }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_18_feature_00_modrmreg_02_modrmmod_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1863] // PREFETCHT1 Mb + (const void *)&gInstructions[ 1867] // PREFETCHT1 Mb }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_18_feature_00_modrmreg_02_modrmmod = @@ -14174,13 +14234,13 @@ const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_18_feature_00_modrmreg_02_m const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_18_feature_00_modrmreg_01_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1511] // NOP Ev + (const void *)&gInstructions[ 1513] // NOP Ev }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_18_feature_00_modrmreg_01_modrmmod_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1861] // PREFETCHT0 Mb + (const void *)&gInstructions[ 1865] // PREFETCHT0 Mb }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_18_feature_00_modrmreg_01_modrmmod = @@ -14195,13 +14255,13 @@ const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_18_feature_00_modrmreg_01_m const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_18_feature_00_modrmreg_00_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1510] // NOP Ev + (const void *)&gInstructions[ 1512] // NOP Ev }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_18_feature_00_modrmreg_00_modrmmod_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1859] // PREFETCHNTA Mb + (const void *)&gInstructions[ 1861] // PREFETCHNTA Mb }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_18_feature_00_modrmreg_00_modrmmod = @@ -14221,7 +14281,7 @@ const ND_TABLE_MODRM_REG gLegacyMap_opcode_0f_opcode_18_feature_00_modrmreg = /* 01 */ (const void *)&gLegacyMap_opcode_0f_opcode_18_feature_00_modrmreg_01_modrmmod, /* 02 */ (const void *)&gLegacyMap_opcode_0f_opcode_18_feature_00_modrmreg_02_modrmmod, /* 03 */ (const void *)&gLegacyMap_opcode_0f_opcode_18_feature_00_modrmreg_03_modrmmod, - /* 04 */ (const void *)&gLegacyMap_opcode_0f_opcode_18_feature_00_modrmreg_04_leaf, + /* 04 */ (const void *)&gLegacyMap_opcode_0f_opcode_18_feature_00_modrmreg_04_modrmmod, /* 05 */ (const void *)&gLegacyMap_opcode_0f_opcode_18_feature_00_modrmreg_05_leaf, /* 06 */ (const void *)&gLegacyMap_opcode_0f_opcode_18_feature_00_modrmreg_06_leaf, /* 07 */ (const void *)&gLegacyMap_opcode_0f_opcode_18_feature_00_modrmreg_07_leaf, @@ -14287,7 +14347,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_17_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_16_prefix_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1453] // MOVSHDUP Vx,Wx + (const void *)&gInstructions[ 1455] // MOVSHDUP Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_16_prefix_01_modrmmod_00_leaf = @@ -14340,13 +14400,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_16_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_15_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2629] // UNPCKHPD Vx,Wx + (const void *)&gInstructions[ 2670] // UNPCKHPD Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_15_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2630] // UNPCKHPS Vx,Wx + (const void *)&gInstructions[ 2671] // UNPCKHPS Vx,Wx }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_15_prefix = @@ -14363,13 +14423,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_15_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_14_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2631] // UNPCKLPD Vx,Wx + (const void *)&gInstructions[ 2672] // UNPCKLPD Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_14_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2632] // UNPCKLPS Vx,Wx + (const void *)&gInstructions[ 2673] // UNPCKLPS Vx,Wx }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_14_prefix = @@ -14433,7 +14493,7 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_12_prefix_03_leaf = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_12_prefix_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1454] // MOVSLDUP Vx,Wx + (const void *)&gInstructions[ 1456] // MOVSLDUP Vx,Wx }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_12_prefix_01_modrmmod_00_leaf = @@ -14471,25 +14531,25 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_12_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_11_prefix_03_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1452] // MOVSD Wsd,Vsd + (const void *)&gInstructions[ 1454] // MOVSD Wsd,Vsd }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_11_prefix_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1458] // MOVSS Wss,Vss + (const void *)&gInstructions[ 1460] // MOVSS Wss,Vss }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_11_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1465] // MOVUPD Wpd,Vpd + (const void *)&gInstructions[ 1467] // MOVUPD Wpd,Vpd }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_11_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1467] // MOVUPS Wps,Vps + (const void *)&gInstructions[ 1469] // MOVUPS Wps,Vps }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_11_prefix = @@ -14506,25 +14566,25 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_11_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_10_prefix_03_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1451] // MOVSD Vsd,Wsd + (const void *)&gInstructions[ 1453] // MOVSD Vsd,Wsd }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_10_prefix_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1457] // MOVSS Vss,Wss + (const void *)&gInstructions[ 1459] // MOVSS Vss,Wss }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_10_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1464] // MOVUPD Vpd,Wpd + (const void *)&gInstructions[ 1466] // MOVUPD Vpd,Wpd }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_10_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1466] // MOVUPS Vps,Wps + (const void *)&gInstructions[ 1468] // MOVUPS Vps,Wps }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_10_prefix = @@ -14541,157 +14601,157 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_10_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_0f_opcode_last_bf_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1684] // PAVGUSB Pq,Qq + (const void *)&gInstructions[ 1686] // PAVGUSB Pq,Qq }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_0f_opcode_last_bb_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1934] // PSWAPD Pq,Qq + (const void *)&gInstructions[ 1938] // PSWAPD Pq,Qq }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_0f_opcode_last_b7_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1805] // PMULHRW Pq,Qq + (const void *)&gInstructions[ 1807] // PMULHRW Pq,Qq }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_0f_opcode_last_b6_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1738] // PFRCPIT2 Pq,Qq + (const void *)&gInstructions[ 1740] // PFRCPIT2 Pq,Qq }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_0f_opcode_last_b4_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1733] // PFMUL Pq,Qq + (const void *)&gInstructions[ 1735] // PFMUL Pq,Qq }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_0f_opcode_last_b0_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1728] // PFCMPEQ Pq,Qq + (const void *)&gInstructions[ 1730] // PFCMPEQ Pq,Qq }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_0f_opcode_last_ae_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1726] // PFACC Pq,Qq + (const void *)&gInstructions[ 1728] // PFACC Pq,Qq }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_0f_opcode_last_aa_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1744] // PFSUBR Pq,Qq + (const void *)&gInstructions[ 1746] // PFSUBR Pq,Qq }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_0f_opcode_last_a7_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1740] // PFRSQIT1 Pq,Qq + (const void *)&gInstructions[ 1742] // PFRSQIT1 Pq,Qq }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_0f_opcode_last_a6_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1737] // PFRCPIT1 Pq,Qq + (const void *)&gInstructions[ 1739] // PFRCPIT1 Pq,Qq }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_0f_opcode_last_a4_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1731] // PFMAX Pq,Qq + (const void *)&gInstructions[ 1733] // PFMAX Pq,Qq }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_0f_opcode_last_a0_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1730] // PFCMPGT Pq,Qq + (const void *)&gInstructions[ 1732] // PFCMPGT Pq,Qq }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_0f_opcode_last_9e_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1727] // PFADD Pq,Qq + (const void *)&gInstructions[ 1729] // PFADD Pq,Qq }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_0f_opcode_last_9a_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1743] // PFSUB Pq,Qq + (const void *)&gInstructions[ 1745] // PFSUB Pq,Qq }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_0f_opcode_last_97_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1741] // PFRSQRT Pq,Qq + (const void *)&gInstructions[ 1743] // PFRSQRT Pq,Qq }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_0f_opcode_last_96_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1736] // PFRCP Pq,Qq + (const void *)&gInstructions[ 1738] // PFRCP Pq,Qq }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_0f_opcode_last_94_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1732] // PFMIN Pq,Qq + (const void *)&gInstructions[ 1734] // PFMIN Pq,Qq }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_0f_opcode_last_90_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1729] // PFCMPGE Pq,Qq + (const void *)&gInstructions[ 1731] // PFCMPGE Pq,Qq }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_0f_opcode_last_8e_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1735] // PFPNACC Pq,Qq + (const void *)&gInstructions[ 1737] // PFPNACC Pq,Qq }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_0f_opcode_last_8a_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1734] // PFNACC Pq,Qq + (const void *)&gInstructions[ 1736] // PFNACC Pq,Qq }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_0f_opcode_last_87_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1742] // PFRSQRTV Pq,Qq + (const void *)&gInstructions[ 1744] // PFRSQRTV Pq,Qq }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_0f_opcode_last_86_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1739] // PFRCPV Pq,Qq + (const void *)&gInstructions[ 1741] // PFRCPV Pq,Qq }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_0f_opcode_last_1d_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1724] // PF2ID Pq,Qq + (const void *)&gInstructions[ 1726] // PF2ID Pq,Qq }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_0f_opcode_last_1c_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1725] // PF2IW Pq,Qq + (const void *)&gInstructions[ 1727] // PF2IW Pq,Qq }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_0f_opcode_last_0d_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1758] // PI2FD Pq,Qq + (const void *)&gInstructions[ 1760] // PI2FD Pq,Qq }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_0f_opcode_last_0c_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1759] // PI2FW Pq,Qq + (const void *)&gInstructions[ 1761] // PI2FW Pq,Qq }; const ND_TABLE_OPCODE gLegacyMap_opcode_0f_opcode_0f_opcode_last = @@ -14966,13 +15026,13 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_0e_leaf = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_0d_modrmreg_07_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1509] // NOP Ev,Gv + (const void *)&gInstructions[ 1511] // NOP Ev,Gv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_0d_modrmreg_07_modrmmod_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1854] // PREFETCH Mb + (const void *)&gInstructions[ 1856] // PREFETCH Mb }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_0d_modrmreg_07_modrmmod = @@ -14987,13 +15047,13 @@ const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_0d_modrmreg_07_modrmmod = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_0d_modrmreg_06_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1508] // NOP Ev,Gv + (const void *)&gInstructions[ 1510] // NOP Ev,Gv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_0d_modrmreg_06_modrmmod_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1853] // PREFETCH Mb + (const void *)&gInstructions[ 1855] // PREFETCH Mb }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_0d_modrmreg_06_modrmmod = @@ -15008,13 +15068,13 @@ const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_0d_modrmreg_06_modrmmod = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_0d_modrmreg_05_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1507] // NOP Ev,Gv + (const void *)&gInstructions[ 1509] // NOP Ev,Gv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_0d_modrmreg_05_modrmmod_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1852] // PREFETCH Mb + (const void *)&gInstructions[ 1854] // PREFETCH Mb }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_0d_modrmreg_05_modrmmod = @@ -15029,13 +15089,13 @@ const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_0d_modrmreg_05_modrmmod = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_0d_modrmreg_04_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1506] // NOP Ev,Gv + (const void *)&gInstructions[ 1508] // NOP Ev,Gv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_0d_modrmreg_04_modrmmod_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1851] // PREFETCH Mb + (const void *)&gInstructions[ 1853] // PREFETCH Mb }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_0d_modrmreg_04_modrmmod = @@ -15050,13 +15110,13 @@ const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_0d_modrmreg_04_modrmmod = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_0d_modrmreg_03_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1505] // NOP Ev,Gv + (const void *)&gInstructions[ 1507] // NOP Ev,Gv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_0d_modrmreg_03_modrmmod_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1858] // PREFETCHM Mb + (const void *)&gInstructions[ 1860] // PREFETCHM Mb }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_0d_modrmreg_03_modrmmod = @@ -15071,13 +15131,13 @@ const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_0d_modrmreg_03_modrmmod = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_0d_modrmreg_02_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1504] // NOP Ev,Gv + (const void *)&gInstructions[ 1506] // NOP Ev,Gv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_0d_modrmreg_02_modrmmod_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1868] // PREFETCHWT1 Mb + (const void *)&gInstructions[ 1872] // PREFETCHWT1 Mb }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_0d_modrmreg_02_modrmmod = @@ -15092,13 +15152,13 @@ const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_0d_modrmreg_02_modrmmod = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_0d_modrmreg_01_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1503] // NOP Ev,Gv + (const void *)&gInstructions[ 1505] // NOP Ev,Gv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_0d_modrmreg_01_modrmmod_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1867] // PREFETCHW Mb + (const void *)&gInstructions[ 1871] // PREFETCHW Mb }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_0d_modrmreg_01_modrmmod = @@ -15113,13 +15173,13 @@ const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_0d_modrmreg_01_modrmmod = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_0d_modrmreg_00_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1502] // NOP Ev,Gv + (const void *)&gInstructions[ 1504] // NOP Ev,Gv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_0d_modrmreg_00_modrmmod_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1855] // PREFETCHE Mb + (const void *)&gInstructions[ 1857] // PREFETCHE Mb }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_0d_modrmreg_00_modrmmod = @@ -15149,19 +15209,19 @@ const ND_TABLE_MODRM_REG gLegacyMap_opcode_0f_opcode_0d_modrmreg = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_0b_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2625] // UD2 + (const void *)&gInstructions[ 2666] // UD2 }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_09_auxiliary_04_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4053] // WBNOINVD + (const void *)&gInstructions[ 4100] // WBNOINVD }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_09_auxiliary_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4052] // WBINVD + (const void *)&gInstructions[ 4099] // WBINVD }; const ND_TABLE_AUXILIARY gLegacyMap_opcode_0f_opcode_09_auxiliary = @@ -15190,7 +15250,7 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_08_leaf = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_07_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2585] // SYSRET + (const void *)&gInstructions[ 2591] // SYSRET }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_06_leaf = @@ -15202,7 +15262,7 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_06_leaf = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_05_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2582] // SYSCALL + (const void *)&gInstructions[ 2588] // SYSCALL }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_03_modrmmod_01_leaf = @@ -15250,19 +15310,19 @@ const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_02_modrmmod = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_07_modrmmod_01_modrmrm_07_prefix_03_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1983] // PVALIDATE + (const void *)&gInstructions[ 1987] // PVALIDATE }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_07_modrmmod_01_modrmrm_07_prefix_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1896] // PSMASH + (const void *)&gInstructions[ 1900] // PSMASH }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_07_modrmmod_01_modrmrm_07_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2613] // TLBSYNC + (const void *)&gInstructions[ 2647] // TLBSYNC }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_01_modrmreg_07_modrmmod_01_modrmrm_07_prefix = @@ -15279,13 +15339,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_01_modrmreg_07_modrmmod_01_mo const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_07_modrmmod_01_modrmrm_06_prefix_03_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2095] // RMPUPDATE + (const void *)&gInstructions[ 2101] // RMPUPDATE }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_07_modrmmod_01_modrmrm_06_prefix_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2092] // RMPADJUST + (const void *)&gInstructions[ 2098] // RMPADJUST }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_07_modrmmod_01_modrmrm_06_prefix_00_leaf = @@ -15308,19 +15368,19 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_01_modrmreg_07_modrmmod_01_mo const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_07_modrmmod_01_modrmrm_05_prefix_03_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2094] // RMPREAD + (const void *)&gInstructions[ 2100] // RMPREAD }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_07_modrmmod_01_modrmrm_05_prefix_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2093] // RMPQUERY + (const void *)&gInstructions[ 2099] // RMPQUERY }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_07_modrmmod_01_modrmrm_05_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2079] // RDPRU + (const void *)&gInstructions[ 2085] // RDPRU }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_01_modrmreg_07_modrmmod_01_modrmrm_05_prefix = @@ -15343,7 +15403,7 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_07_modrmmod_0 const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_07_modrmmod_01_modrmrm_03_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1486] // MWAITX + (const void *)&gInstructions[ 1488] // MWAITX }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_01_modrmreg_07_modrmmod_01_modrmrm_03_prefix = @@ -15383,13 +15443,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_01_modrmreg_07_modrmmod_01_mo const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_07_modrmmod_01_modrmrm_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2087] // RDTSCP + (const void *)&gInstructions[ 2093] // RDTSCP }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_07_modrmmod_01_modrmrm_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2581] // SWAPGS + (const void *)&gInstructions[ 2587] // SWAPGS }; const ND_TABLE_MODRM_RM gLegacyMap_opcode_0f_opcode_01_modrmreg_07_modrmmod_01_modrmrm = @@ -15431,13 +15491,13 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_06_leaf = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_05_prefix_03_modrmmod_01_modrmrm_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4141] // XRESLDTRK + (const void *)&gInstructions[ 4190] // XRESLDTRK }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_05_prefix_03_modrmmod_01_modrmrm_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4155] // XSUSLDTRK + (const void *)&gInstructions[ 4204] // XSUSLDTRK }; const ND_TABLE_MODRM_RM gLegacyMap_opcode_0f_opcode_01_modrmreg_05_prefix_03_modrmmod_01_modrmrm = @@ -15467,7 +15527,7 @@ const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_01_modrmreg_05_prefix_03_mo const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_05_prefix_02_modrmmod_01_modrmrm_07_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2522] // STUI + (const void *)&gInstructions[ 2528] // STUI }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_05_prefix_02_modrmmod_01_modrmrm_06_leaf = @@ -15479,25 +15539,25 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_05_prefix_02_ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_05_prefix_02_modrmmod_01_modrmrm_05_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2604] // TESTUI + (const void *)&gInstructions[ 2634] // TESTUI }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_05_prefix_02_modrmmod_01_modrmrm_04_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2626] // UIRET + (const void *)&gInstructions[ 2667] // UIRET }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_05_prefix_02_modrmmod_01_modrmrm_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2278] // SAVEPREVSSP + (const void *)&gInstructions[ 2284] // SAVEPREVSSP }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_05_prefix_02_modrmmod_01_modrmrm_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2354] // SETSSBSY + (const void *)&gInstructions[ 2360] // SETSSBSY }; const ND_TABLE_MODRM_RM gLegacyMap_opcode_0f_opcode_01_modrmreg_05_prefix_02_modrmmod_01_modrmrm = @@ -15518,7 +15578,7 @@ const ND_TABLE_MODRM_RM gLegacyMap_opcode_0f_opcode_01_modrmreg_05_prefix_02_mod const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_05_prefix_02_modrmmod_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2189] // RSTORSSP Mq + (const void *)&gInstructions[ 2195] // RSTORSSP Mq }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_01_modrmreg_05_prefix_02_modrmmod = @@ -15533,19 +15593,19 @@ const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_01_modrmreg_05_prefix_02_mo const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_05_prefix_00_modrmmod_01_modrmrm_07_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4059] // WRPKRU + (const void *)&gInstructions[ 4108] // WRPKRU }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_05_prefix_00_modrmmod_01_modrmrm_06_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2077] // RDPKRU + (const void *)&gInstructions[ 2083] // RDPKRU }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_05_prefix_00_modrmmod_01_modrmrm_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2323] // SERIALIZE + (const void *)&gInstructions[ 2329] // SERIALIZE }; const ND_TABLE_MODRM_RM gLegacyMap_opcode_0f_opcode_01_modrmreg_05_prefix_00_modrmmod_01_modrmrm = @@ -15586,13 +15646,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_01_modrmreg_05_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_04_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2498] // SMSW Rv + (const void *)&gInstructions[ 2504] // SMSW Rv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_04_modrmmod_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2497] // SMSW Mw + (const void *)&gInstructions[ 2503] // SMSW Mw }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_01_modrmreg_04_modrmmod = @@ -15613,7 +15673,7 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_03_modrmmod_0 const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_03_modrmmod_01_modrmrm_06_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2493] // SKINIT + (const void *)&gInstructions[ 2499] // SKINIT }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_03_modrmmod_01_modrmrm_05_leaf = @@ -15625,43 +15685,43 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_03_modrmmod_0 const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_03_modrmmod_01_modrmrm_04_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2507] // STGI + (const void *)&gInstructions[ 2513] // STGI }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_03_modrmmod_01_modrmrm_03_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3346] // VMSAVE + (const void *)&gInstructions[ 3391] // VMSAVE }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_03_modrmmod_01_modrmrm_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3225] // VMLOAD + (const void *)&gInstructions[ 3266] // VMLOAD }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_03_modrmmod_01_modrmrm_01_prefix_03_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3205] // VMGEXIT + (const void *)&gInstructions[ 3246] // VMGEXIT }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_03_modrmmod_01_modrmrm_01_prefix_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3204] // VMGEXIT + (const void *)&gInstructions[ 3245] // VMGEXIT }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_03_modrmmod_01_modrmrm_01_prefix_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3227] // VMMCALL + (const void *)&gInstructions[ 3268] // VMMCALL }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_03_modrmmod_01_modrmrm_01_prefix_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3226] // VMMCALL + (const void *)&gInstructions[ 3267] // VMMCALL }; const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_01_modrmreg_03_modrmmod_01_modrmrm_01_prefix = @@ -15678,7 +15738,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_01_modrmreg_03_modrmmod_01_mo const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_03_modrmmod_01_modrmrm_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3345] // VMRUN + (const void *)&gInstructions[ 3390] // VMRUN }; const ND_TABLE_MODRM_RM gLegacyMap_opcode_0f_opcode_01_modrmreg_03_modrmmod_01_modrmrm = @@ -15720,31 +15780,31 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_02_modrmmod_0 const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_02_modrmmod_01_prefix_00_modrmrm_06_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4156] // XTEST + (const void *)&gInstructions[ 4205] // XTEST }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_02_modrmmod_01_prefix_00_modrmrm_05_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4082] // XEND + (const void *)&gInstructions[ 4131] // XEND }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_02_modrmmod_01_prefix_00_modrmrm_04_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3203] // VMFUNC + (const void *)&gInstructions[ 3244] // VMFUNC }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_02_modrmmod_01_prefix_00_modrmrm_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4154] // XSETBV + (const void *)&gInstructions[ 4203] // XSETBV }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_02_modrmmod_01_prefix_00_modrmrm_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4083] // XGETBV + (const void *)&gInstructions[ 4132] // XGETBV }; const ND_TABLE_MODRM_RM gLegacyMap_opcode_0f_opcode_01_modrmreg_02_modrmmod_01_prefix_00_modrmrm = @@ -15833,25 +15893,25 @@ const ND_TABLE_MODRM_RM gLegacyMap_opcode_0f_opcode_01_modrmreg_01_modrmmod_01_p const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_01_modrmmod_01_prefix_01_modrmrm_07_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2319] // SEAMCALL + (const void *)&gInstructions[ 2325] // SEAMCALL }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_01_modrmmod_01_prefix_01_modrmrm_06_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2320] // SEAMOPS + (const void *)&gInstructions[ 2326] // SEAMOPS }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_01_modrmmod_01_prefix_01_modrmrm_05_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2321] // SEAMRET + (const void *)&gInstructions[ 2327] // SEAMRET }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_01_modrmmod_01_prefix_01_modrmrm_04_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2589] // TDCALL + (const void *)&gInstructions[ 2615] // TDCALL }; const ND_TABLE_MODRM_RM gLegacyMap_opcode_0f_opcode_01_modrmreg_01_modrmmod_01_prefix_01_modrmrm = @@ -15878,7 +15938,7 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_01_modrmmod_0 const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_01_modrmmod_01_prefix_00_modrmrm_03_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2504] // STAC + (const void *)&gInstructions[ 2510] // STAC }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_01_modrmmod_01_prefix_00_modrmrm_02_leaf = @@ -15890,7 +15950,7 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_01_modrmmod_0 const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_01_modrmmod_01_prefix_00_modrmrm_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1485] // MWAIT + (const void *)&gInstructions[ 1487] // MWAIT }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_01_modrmmod_01_prefix_00_modrmrm_00_leaf = @@ -15928,7 +15988,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_01_modrmreg_01_modrmmod_01_pr const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_01_modrmmod_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2492] // SIDT Ms + (const void *)&gInstructions[ 2498] // SIDT Ms }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_01_modrmreg_01_modrmmod = @@ -15943,7 +16003,7 @@ const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_01_modrmreg_01_modrmmod = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_00_modrmmod_01_prefix_03_modrmrm_06_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2075] // RDMSRLIST + (const void *)&gInstructions[ 2081] // RDMSRLIST }; const ND_TABLE_MODRM_RM gLegacyMap_opcode_0f_opcode_01_modrmreg_00_modrmmod_01_prefix_03_modrmrm = @@ -15964,7 +16024,7 @@ const ND_TABLE_MODRM_RM gLegacyMap_opcode_0f_opcode_01_modrmreg_00_modrmmod_01_p const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_00_modrmmod_01_prefix_02_modrmrm_06_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4057] // WRMSRLIST + (const void *)&gInstructions[ 4104] // WRMSRLIST }; const ND_TABLE_MODRM_RM gLegacyMap_opcode_0f_opcode_01_modrmreg_00_modrmmod_01_prefix_02_modrmrm = @@ -15985,43 +16045,43 @@ const ND_TABLE_MODRM_RM gLegacyMap_opcode_0f_opcode_01_modrmreg_00_modrmmod_01_p const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_00_modrmmod_01_prefix_00_modrmrm_07_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1689] // PBNDKB + (const void *)&gInstructions[ 1691] // PBNDKB }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_00_modrmmod_01_prefix_00_modrmrm_06_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4058] // WRMSRNS + (const void *)&gInstructions[ 4106] // WRMSRNS }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_00_modrmmod_01_prefix_00_modrmrm_05_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1709] // PCONFIG + (const void *)&gInstructions[ 1711] // PCONFIG }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_00_modrmmod_01_prefix_00_modrmrm_04_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3359] // VMXOFF + (const void *)&gInstructions[ 3404] // VMXOFF }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_00_modrmmod_01_prefix_00_modrmrm_03_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3344] // VMRESUME + (const void *)&gInstructions[ 3389] // VMRESUME }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_00_modrmmod_01_prefix_00_modrmrm_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3224] // VMLAUNCH + (const void *)&gInstructions[ 3265] // VMLAUNCH }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_00_modrmmod_01_prefix_00_modrmrm_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3201] // VMCALL + (const void *)&gInstructions[ 3242] // VMCALL }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_00_modrmmod_01_prefix_00_modrmrm_00_leaf = @@ -16059,7 +16119,7 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_01_modrmreg_00_modrmmod_01_pr const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_01_modrmreg_00_modrmmod_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2358] // SGDT Ms + (const void *)&gInstructions[ 2364] // SGDT Ms }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_01_modrmreg_00_modrmmod = @@ -16127,13 +16187,13 @@ const ND_TABLE_MPREFIX gLegacyMap_opcode_0f_opcode_00_modrmreg_06_prefix = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_00_modrmreg_05_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2885] // VERW Ew + (const void *)&gInstructions[ 2926] // VERW Ew }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_00_modrmreg_04_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2884] // VERR Ew + (const void *)&gInstructions[ 2925] // VERR Ew }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_00_modrmreg_03_leaf = @@ -16151,13 +16211,13 @@ const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_00_modrmreg_02_leaf = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_00_modrmreg_01_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2519] // STR Rv + (const void *)&gInstructions[ 2525] // STR Rv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_00_modrmreg_01_modrmmod_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2518] // STR Mw + (const void *)&gInstructions[ 2524] // STR Mw }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_00_modrmreg_01_modrmmod = @@ -16172,13 +16232,13 @@ const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_00_modrmreg_01_modrmmod = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_00_modrmreg_00_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2495] // SLDT Rv + (const void *)&gInstructions[ 2501] // SLDT Rv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0f_opcode_00_modrmreg_00_modrmmod_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2494] // SLDT Mw + (const void *)&gInstructions[ 2500] // SLDT Mw }; const ND_TABLE_MODRM_MOD gLegacyMap_opcode_0f_opcode_00_modrmreg_00_modrmmod = @@ -16471,55 +16531,55 @@ const ND_TABLE_OPCODE gLegacyMap_opcode_0f_opcode = const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0e_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1952] // PUSH CS + (const void *)&gInstructions[ 1956] // PUSH CS }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0d_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1629] // OR rAX,Iz + (const void *)&gInstructions[ 1631] // OR rAX,Iz }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0c_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1628] // OR AL,Ib + (const void *)&gInstructions[ 1630] // OR AL,Ib }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0b_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1627] // OR Gv,Ev + (const void *)&gInstructions[ 1629] // OR Gv,Ev }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_0a_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1626] // OR Gb,Eb + (const void *)&gInstructions[ 1628] // OR Gb,Eb }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_09_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1625] // OR Ev,Gv + (const void *)&gInstructions[ 1627] // OR Ev,Gv }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_08_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1624] // OR Eb,Gb + (const void *)&gInstructions[ 1626] // OR Eb,Gb }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_07_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1815] // POP ES + (const void *)&gInstructions[ 1817] // POP ES }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_06_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1951] // PUSH ES + (const void *)&gInstructions[ 1955] // PUSH ES }; const ND_TABLE_INSTRUCTION gLegacyMap_opcode_05_leaf = diff --git a/bddisasm/include/bdx86_table_vex.h b/bddisasm/include/bdx86_table_vex.h index bd13233..f1be108 100644 --- a/bddisasm/include/bdx86_table_vex.h +++ b/bddisasm/include/bdx86_table_vex.h @@ -13,7 +13,7 @@ const ND_TABLE_INSTRUCTION gVexMap_mmmmm_07_opcode_f8_pp_03_modrmreg_00_modrmmod_01_l_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2636] // URDMSR Rq,Id + (const void *)&gInstructions[ 2677] // URDMSR Rq,Id }; const ND_TABLE_EX_W gVexMap_mmmmm_07_opcode_f8_pp_03_modrmreg_00_modrmmod_01_l_00_w = @@ -63,7 +63,7 @@ const ND_TABLE_MODRM_REG gVexMap_mmmmm_07_opcode_f8_pp_03_modrmreg = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_07_opcode_f8_pp_02_modrmreg_00_modrmmod_01_l_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2640] // UWRMSR Id,Rq + (const void *)&gInstructions[ 2681] // UWRMSR Id,Rq }; const ND_TABLE_EX_W gVexMap_mmmmm_07_opcode_f8_pp_02_modrmreg_00_modrmmod_01_l_00_w = @@ -121,6 +121,117 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_07_opcode_f8_pp = } }; +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_07_opcode_f6_pp_03_modrmreg_00_modrmmod_01_l_00_w_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 2080] // RDMSR Rq,Id +}; + +const ND_TABLE_EX_W gVexMap_mmmmm_07_opcode_f6_pp_03_modrmreg_00_modrmmod_01_l_00_w = +{ + ND_ILUT_EX_W, + { + /* 00 */ (const void *)&gVexMap_mmmmm_07_opcode_f6_pp_03_modrmreg_00_modrmmod_01_l_00_w_00_leaf, + /* 01 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_L gVexMap_mmmmm_07_opcode_f6_pp_03_modrmreg_00_modrmmod_01_l = +{ + ND_ILUT_EX_L, + { + /* 00 */ (const void *)&gVexMap_mmmmm_07_opcode_f6_pp_03_modrmreg_00_modrmmod_01_l_00_w, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_07_opcode_f6_pp_03_modrmreg_00_modrmmod = +{ + ND_ILUT_MODRM_MOD, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_07_opcode_f6_pp_03_modrmreg_00_modrmmod_01_l, + } +}; + +const ND_TABLE_MODRM_REG gVexMap_mmmmm_07_opcode_f6_pp_03_modrmreg = +{ + ND_ILUT_MODRM_REG, + { + /* 00 */ (const void *)&gVexMap_mmmmm_07_opcode_f6_pp_03_modrmreg_00_modrmmod, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + /* 04 */ (const void *)ND_NULL, + /* 05 */ (const void *)ND_NULL, + /* 06 */ (const void *)ND_NULL, + /* 07 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_07_opcode_f6_pp_02_modrmreg_00_modrmmod_01_l_00_w_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 4107] // WRMSRNS Id,Rq +}; + +const ND_TABLE_EX_W gVexMap_mmmmm_07_opcode_f6_pp_02_modrmreg_00_modrmmod_01_l_00_w = +{ + ND_ILUT_EX_W, + { + /* 00 */ (const void *)&gVexMap_mmmmm_07_opcode_f6_pp_02_modrmreg_00_modrmmod_01_l_00_w_00_leaf, + /* 01 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_L gVexMap_mmmmm_07_opcode_f6_pp_02_modrmreg_00_modrmmod_01_l = +{ + ND_ILUT_EX_L, + { + /* 00 */ (const void *)&gVexMap_mmmmm_07_opcode_f6_pp_02_modrmreg_00_modrmmod_01_l_00_w, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_07_opcode_f6_pp_02_modrmreg_00_modrmmod = +{ + ND_ILUT_MODRM_MOD, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_07_opcode_f6_pp_02_modrmreg_00_modrmmod_01_l, + } +}; + +const ND_TABLE_MODRM_REG gVexMap_mmmmm_07_opcode_f6_pp_02_modrmreg = +{ + ND_ILUT_MODRM_REG, + { + /* 00 */ (const void *)&gVexMap_mmmmm_07_opcode_f6_pp_02_modrmreg_00_modrmmod, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + /* 04 */ (const void *)ND_NULL, + /* 05 */ (const void *)ND_NULL, + /* 06 */ (const void *)ND_NULL, + /* 07 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_PP gVexMap_mmmmm_07_opcode_f6_pp = +{ + ND_ILUT_EX_PP, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)&gVexMap_mmmmm_07_opcode_f6_pp_02_modrmreg, + /* 03 */ (const void *)&gVexMap_mmmmm_07_opcode_f6_pp_03_modrmreg, + } +}; + const ND_TABLE_OPCODE gVexMap_mmmmm_07_opcode = { ND_ILUT_OPCODE, @@ -371,7 +482,7 @@ const ND_TABLE_OPCODE gVexMap_mmmmm_07_opcode = /* f3 */ (const void *)ND_NULL, /* f4 */ (const void *)ND_NULL, /* f5 */ (const void *)ND_NULL, - /* f6 */ (const void *)ND_NULL, + /* f6 */ (const void *)&gVexMap_mmmmm_07_opcode_f6_pp, /* f7 */ (const void *)ND_NULL, /* f8 */ (const void *)&gVexMap_mmmmm_07_opcode_f8_pp, /* f9 */ (const void *)ND_NULL, @@ -384,2397 +495,2973 @@ const ND_TABLE_OPCODE gVexMap_mmmmm_07_opcode = } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_f0_pp_03_l_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_05_opcode_fd_pp_03_modrmmod_01_l_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2181] // RORX Gy,Ey,Ib + (const void *)&gInstructions[ 2618] // TDPBHF8PS rTt,mTt,vTt }; -const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_f0_pp_03_l = +const ND_TABLE_EX_W gVexMap_mmmmm_05_opcode_fd_pp_03_modrmmod_01_l_00_w = +{ + ND_ILUT_EX_W, + { + /* 00 */ (const void *)&gVexMap_mmmmm_05_opcode_fd_pp_03_modrmmod_01_l_00_w_00_leaf, + /* 01 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_L gVexMap_mmmmm_05_opcode_fd_pp_03_modrmmod_01_l = { ND_ILUT_EX_L, { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_f0_pp_03_l_00_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_05_opcode_fd_pp_03_modrmmod_01_l_00_w, /* 01 */ (const void *)ND_NULL, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_f0_pp = +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_05_opcode_fd_pp_03_modrmmod = { - ND_ILUT_EX_PP, + ND_ILUT_MODRM_MOD, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)ND_NULL, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)&gVexMap_mmmmm_03_opcode_f0_pp_03_l, + /* 01 */ (const void *)&gVexMap_mmmmm_05_opcode_fd_pp_03_modrmmod_01_l, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_df_pp_01_l_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_05_opcode_fd_pp_02_modrmmod_01_l_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2667] // VAESKEYGENASSIST Vdq,Wdq,Ib + (const void *)&gInstructions[ 2624] // TDPHBF8PS rTt,mTt,vTt }; -const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_df_pp_01_l = +const ND_TABLE_EX_W gVexMap_mmmmm_05_opcode_fd_pp_02_modrmmod_01_l_00_w = +{ + ND_ILUT_EX_W, + { + /* 00 */ (const void *)&gVexMap_mmmmm_05_opcode_fd_pp_02_modrmmod_01_l_00_w_00_leaf, + /* 01 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_L gVexMap_mmmmm_05_opcode_fd_pp_02_modrmmod_01_l = { ND_ILUT_EX_L, { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_df_pp_01_l_00_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_05_opcode_fd_pp_02_modrmmod_01_l_00_w, /* 01 */ (const void *)ND_NULL, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_df_pp = +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_05_opcode_fd_pp_02_modrmmod = { - ND_ILUT_EX_PP, + ND_ILUT_MODRM_MOD, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_df_pp_01_l, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_05_opcode_fd_pp_02_modrmmod_01_l, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_de_pp_01_l_00_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_05_opcode_fd_pp_01_modrmmod_01_l_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4001] // VSM3RNDS2 Vdq,Hdq,Wdq,Ib + (const void *)&gInstructions[ 2625] // TDPHF8PS rTt,mTt,vTt }; -const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_de_pp_01_l_00_w = +const ND_TABLE_EX_W gVexMap_mmmmm_05_opcode_fd_pp_01_modrmmod_01_l_00_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_de_pp_01_l_00_w_00_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_05_opcode_fd_pp_01_modrmmod_01_l_00_w_00_leaf, /* 01 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_de_pp_01_l = +const ND_TABLE_EX_L gVexMap_mmmmm_05_opcode_fd_pp_01_modrmmod_01_l = { ND_ILUT_EX_L, { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_de_pp_01_l_00_w, + /* 00 */ (const void *)&gVexMap_mmmmm_05_opcode_fd_pp_01_modrmmod_01_l_00_w, /* 01 */ (const void *)ND_NULL, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_de_pp = +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_05_opcode_fd_pp_01_modrmmod = { - ND_ILUT_EX_PP, + ND_ILUT_MODRM_MOD, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_de_pp_01_l, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_05_opcode_fd_pp_01_modrmmod_01_l, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_cf_pp_01_w_01_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_05_opcode_fd_pp_00_modrmmod_01_l_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3160] // VGF2P8AFFINEINVQB Vx,Hx,Wx,Ib + (const void *)&gInstructions[ 2617] // TDPBF8PS rTt,mTt,vTt }; -const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_cf_pp_01_w = +const ND_TABLE_EX_W gVexMap_mmmmm_05_opcode_fd_pp_00_modrmmod_01_l_00_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_cf_pp_01_w_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_05_opcode_fd_pp_00_modrmmod_01_l_00_w_00_leaf, + /* 01 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_cf_pp = +const ND_TABLE_EX_L gVexMap_mmmmm_05_opcode_fd_pp_00_modrmmod_01_l = { - ND_ILUT_EX_PP, + ND_ILUT_EX_L, { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_cf_pp_01_w, + /* 00 */ (const void *)&gVexMap_mmmmm_05_opcode_fd_pp_00_modrmmod_01_l_00_w, + /* 01 */ (const void *)ND_NULL, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_ce_pp_01_w_01_leaf = -{ - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3162] // VGF2P8AFFINEQB Vx,Hx,Wx,Ib -}; - -const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_ce_pp_01_w = +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_05_opcode_fd_pp_00_modrmmod = { - ND_ILUT_EX_W, + ND_ILUT_MODRM_MOD, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_ce_pp_01_w_01_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_05_opcode_fd_pp_00_modrmmod_01_l, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_ce_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_05_opcode_fd_pp = { ND_ILUT_EX_PP, { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_ce_pp_01_w, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)ND_NULL, + /* 00 */ (const void *)&gVexMap_mmmmm_05_opcode_fd_pp_00_modrmmod, + /* 01 */ (const void *)&gVexMap_mmmmm_05_opcode_fd_pp_01_modrmmod, + /* 02 */ (const void *)&gVexMap_mmmmm_05_opcode_fd_pp_02_modrmmod, + /* 03 */ (const void *)&gVexMap_mmmmm_05_opcode_fd_pp_03_modrmmod, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_7f_pp_01_w_01_leaf = -{ - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3115] // VFNMSUBSD Vdq,Hdq,Ldq,Wsd -}; - -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_7f_pp_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_05_opcode_f9_pp_01_modrmmod_00_l_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3114] // VFNMSUBSD Vdq,Hdq,Wsd,Ldq + (const void *)&gInstructions[ 2599] // T2RPNTLVWZ1RST1 rTt+1,Mt }; -const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_7f_pp_01_w = +const ND_TABLE_EX_W gVexMap_mmmmm_05_opcode_f9_pp_01_modrmmod_00_l_00_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_7f_pp_01_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_7f_pp_01_w_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_05_opcode_f9_pp_01_modrmmod_00_l_00_w_00_leaf, + /* 01 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_7f_pp = +const ND_TABLE_EX_L gVexMap_mmmmm_05_opcode_f9_pp_01_modrmmod_00_l = { - ND_ILUT_EX_PP, + ND_ILUT_EX_L, { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_7f_pp_01_w, + /* 00 */ (const void *)&gVexMap_mmmmm_05_opcode_f9_pp_01_modrmmod_00_l_00_w, + /* 01 */ (const void *)ND_NULL, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_7e_pp_01_w_01_leaf = +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_05_opcode_f9_pp_01_modrmmod = { - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3117] // VFNMSUBSS Vdq,Hdq,Ldq,Wss + ND_ILUT_MODRM_MOD, + { + /* 00 */ (const void *)&gVexMap_mmmmm_05_opcode_f9_pp_01_modrmmod_00_l, + /* 01 */ (const void *)ND_NULL, + } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_7e_pp_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_05_opcode_f9_pp_00_modrmmod_00_l_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3116] // VFNMSUBSS Vdq,Hdq,Wss,Ldq + (const void *)&gInstructions[ 2595] // T2RPNTLVWZ0RST1 rTt+1,Mt }; -const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_7e_pp_01_w = +const ND_TABLE_EX_W gVexMap_mmmmm_05_opcode_f9_pp_00_modrmmod_00_l_00_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_7e_pp_01_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_7e_pp_01_w_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_05_opcode_f9_pp_00_modrmmod_00_l_00_w_00_leaf, + /* 01 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_7e_pp = +const ND_TABLE_EX_L gVexMap_mmmmm_05_opcode_f9_pp_00_modrmmod_00_l = { - ND_ILUT_EX_PP, + ND_ILUT_EX_L, { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_7e_pp_01_w, + /* 00 */ (const void *)&gVexMap_mmmmm_05_opcode_f9_pp_00_modrmmod_00_l_00_w, + /* 01 */ (const void *)ND_NULL, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_7d_pp_01_w_01_leaf = -{ - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3111] // VFNMSUBPD Vx,Hx,Lx,Wx -}; - -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_7d_pp_01_w_00_leaf = -{ - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3110] // VFNMSUBPD Vx,Hx,Wx,Lx -}; - -const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_7d_pp_01_w = +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_05_opcode_f9_pp_00_modrmmod = { - ND_ILUT_EX_W, + ND_ILUT_MODRM_MOD, { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_7d_pp_01_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_7d_pp_01_w_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_05_opcode_f9_pp_00_modrmmod_00_l, + /* 01 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_7d_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_05_opcode_f9_pp = { ND_ILUT_EX_PP, { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_7d_pp_01_w, + /* 00 */ (const void *)&gVexMap_mmmmm_05_opcode_f9_pp_00_modrmmod, + /* 01 */ (const void *)&gVexMap_mmmmm_05_opcode_f9_pp_01_modrmmod, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_7c_pp_01_w_01_leaf = -{ - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3113] // VFNMSUBPS Vx,Hx,Lx,Wx -}; - -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_7c_pp_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_05_opcode_f8_pp_01_modrmmod_00_l_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3112] // VFNMSUBPS Vx,Hx,Wx,Lx + (const void *)&gInstructions[ 2598] // T2RPNTLVWZ1RS rTt+1,Mt }; -const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_7c_pp_01_w = +const ND_TABLE_EX_W gVexMap_mmmmm_05_opcode_f8_pp_01_modrmmod_00_l_00_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_7c_pp_01_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_7c_pp_01_w_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_05_opcode_f8_pp_01_modrmmod_00_l_00_w_00_leaf, + /* 01 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_7c_pp = +const ND_TABLE_EX_L gVexMap_mmmmm_05_opcode_f8_pp_01_modrmmod_00_l = { - ND_ILUT_EX_PP, + ND_ILUT_EX_L, { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_7c_pp_01_w, + /* 00 */ (const void *)&gVexMap_mmmmm_05_opcode_f8_pp_01_modrmmod_00_l_00_w, + /* 01 */ (const void *)ND_NULL, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_7b_pp_01_w_01_leaf = +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_05_opcode_f8_pp_01_modrmmod = { - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3074] // VFNMADDSD Vdq,Hdq,Ldq,Wsd + ND_ILUT_MODRM_MOD, + { + /* 00 */ (const void *)&gVexMap_mmmmm_05_opcode_f8_pp_01_modrmmod_00_l, + /* 01 */ (const void *)ND_NULL, + } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_7b_pp_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_05_opcode_f8_pp_00_modrmmod_00_l_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3073] // VFNMADDSD Vdq,Hdq,Wsd,Ldq + (const void *)&gInstructions[ 2594] // T2RPNTLVWZ0RS rTt+1,Mt }; -const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_7b_pp_01_w = +const ND_TABLE_EX_W gVexMap_mmmmm_05_opcode_f8_pp_00_modrmmod_00_l_00_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_7b_pp_01_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_7b_pp_01_w_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_05_opcode_f8_pp_00_modrmmod_00_l_00_w_00_leaf, + /* 01 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_7b_pp = +const ND_TABLE_EX_L gVexMap_mmmmm_05_opcode_f8_pp_00_modrmmod_00_l = { - ND_ILUT_EX_PP, + ND_ILUT_EX_L, { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_7b_pp_01_w, + /* 00 */ (const void *)&gVexMap_mmmmm_05_opcode_f8_pp_00_modrmmod_00_l_00_w, + /* 01 */ (const void *)ND_NULL, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_7a_pp_01_w_01_leaf = +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_05_opcode_f8_pp_00_modrmmod = { - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3076] // VFNMADDSS Vdq,Hdq,Ldq,Wss + ND_ILUT_MODRM_MOD, + { + /* 00 */ (const void *)&gVexMap_mmmmm_05_opcode_f8_pp_00_modrmmod_00_l, + /* 01 */ (const void *)ND_NULL, + } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_7a_pp_01_w_00_leaf = +const ND_TABLE_EX_PP gVexMap_mmmmm_05_opcode_f8_pp = { - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3075] // VFNMADDSS Vdq,Hdq,Wss,Ldq + ND_ILUT_EX_PP, + { + /* 00 */ (const void *)&gVexMap_mmmmm_05_opcode_f8_pp_00_modrmmod, + /* 01 */ (const void *)&gVexMap_mmmmm_05_opcode_f8_pp_01_modrmmod, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } }; -const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_7a_pp_01_w = +const ND_TABLE_OPCODE gVexMap_mmmmm_05_opcode = { - ND_ILUT_EX_W, - { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_7a_pp_01_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_7a_pp_01_w_01_leaf, - } -}; - -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_7a_pp = -{ - ND_ILUT_EX_PP, - { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_7a_pp_01_w, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)ND_NULL, - } -}; - -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_79_pp_01_w_01_leaf = -{ - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3070] // VFNMADDPD Vx,Hx,Lx,Wx -}; - -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_79_pp_01_w_00_leaf = -{ - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3069] // VFNMADDPD Vx,Hx,Wx,Lx -}; - -const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_79_pp_01_w = -{ - ND_ILUT_EX_W, - { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_79_pp_01_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_79_pp_01_w_01_leaf, - } -}; - -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_79_pp = -{ - ND_ILUT_EX_PP, - { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_79_pp_01_w, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)ND_NULL, - } -}; - -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_78_pp_01_w_01_leaf = -{ - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3072] // VFNMADDPS Vx,Hx,Lx,Wx -}; - -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_78_pp_01_w_00_leaf = -{ - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3071] // VFNMADDPS Vx,Hx,Wx,Lx -}; - -const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_78_pp_01_w = -{ - ND_ILUT_EX_W, - { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_78_pp_01_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_78_pp_01_w_01_leaf, - } -}; - -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_78_pp = -{ - ND_ILUT_EX_PP, - { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_78_pp_01_w, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)ND_NULL, - } -}; - -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_6f_pp_01_w_01_leaf = -{ - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3031] // VFMSUBSD Vdq,Hdq,Ldq,Wsd -}; - -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_6f_pp_01_w_00_leaf = -{ - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3030] // VFMSUBSD Vdq,Hdq,Wsd,Ldq -}; - -const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_6f_pp_01_w = -{ - ND_ILUT_EX_W, - { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_6f_pp_01_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_6f_pp_01_w_01_leaf, - } -}; - -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_6f_pp = -{ - ND_ILUT_EX_PP, - { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_6f_pp_01_w, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)ND_NULL, - } -}; - -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_6e_pp_01_w_01_leaf = -{ - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3033] // VFMSUBSS Vdq,Hdq,Ldq,Wss -}; - -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_6e_pp_01_w_00_leaf = -{ - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3032] // VFMSUBSS Vdq,Hdq,Wss,Ldq -}; - -const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_6e_pp_01_w = -{ - ND_ILUT_EX_W, - { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_6e_pp_01_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_6e_pp_01_w_01_leaf, - } -}; - -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_6e_pp = -{ - ND_ILUT_EX_PP, - { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_6e_pp_01_w, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)ND_NULL, - } -}; - -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_6d_pp_01_w_01_leaf = -{ - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3027] // VFMSUBPD Vx,Hx,Lx,Wx -}; - -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_6d_pp_01_w_00_leaf = -{ - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3026] // VFMSUBPD Vx,Hx,Wx,Lx -}; - -const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_6d_pp_01_w = -{ - ND_ILUT_EX_W, - { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_6d_pp_01_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_6d_pp_01_w_01_leaf, - } -}; - -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_6d_pp = -{ - ND_ILUT_EX_PP, - { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_6d_pp_01_w, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)ND_NULL, - } -}; - -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_6c_pp_01_w_01_leaf = -{ - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3029] // VFMSUBPS Vx,Hx,Lx,Wx -}; - -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_6c_pp_01_w_00_leaf = -{ - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3028] // VFMSUBPS Vx,Hx,Wx,Lx -}; - -const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_6c_pp_01_w = -{ - ND_ILUT_EX_W, - { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_6c_pp_01_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_6c_pp_01_w_01_leaf, - } -}; - -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_6c_pp = -{ - ND_ILUT_EX_PP, - { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_6c_pp_01_w, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)ND_NULL, - } -}; - -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_6b_pp_01_w_01_leaf = -{ - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2952] // VFMADDSD Vdq,Hdq,Ldq,Wsd -}; - -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_6b_pp_01_w_00_leaf = -{ - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2951] // VFMADDSD Vdq,Hdq,Wsd,Ldq -}; - -const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_6b_pp_01_w = -{ - ND_ILUT_EX_W, - { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_6b_pp_01_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_6b_pp_01_w_01_leaf, - } -}; - -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_6b_pp = -{ - ND_ILUT_EX_PP, - { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_6b_pp_01_w, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)ND_NULL, - } -}; - -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_6a_pp_01_w_01_leaf = -{ - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2954] // VFMADDSS Vdq,Hdq,Ldq,Wss -}; - -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_6a_pp_01_w_00_leaf = -{ - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2953] // VFMADDSS Vdq,Hdq,Wss,Ldq -}; - -const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_6a_pp_01_w = -{ - ND_ILUT_EX_W, - { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_6a_pp_01_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_6a_pp_01_w_01_leaf, - } -}; - -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_6a_pp = -{ - ND_ILUT_EX_PP, + ND_ILUT_OPCODE, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_6a_pp_01_w, + /* 01 */ (const void *)ND_NULL, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, - } -}; - -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_69_pp_01_w_01_leaf = -{ - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2948] // VFMADDPD Vx,Hx,Lx,Wx + /* 04 */ (const void *)ND_NULL, + /* 05 */ (const void *)ND_NULL, + /* 06 */ (const void *)ND_NULL, + /* 07 */ (const void *)ND_NULL, + /* 08 */ (const void *)ND_NULL, + /* 09 */ (const void *)ND_NULL, + /* 0a */ (const void *)ND_NULL, + /* 0b */ (const void *)ND_NULL, + /* 0c */ (const void *)ND_NULL, + /* 0d */ (const void *)ND_NULL, + /* 0e */ (const void *)ND_NULL, + /* 0f */ (const void *)ND_NULL, + /* 10 */ (const void *)ND_NULL, + /* 11 */ (const void *)ND_NULL, + /* 12 */ (const void *)ND_NULL, + /* 13 */ (const void *)ND_NULL, + /* 14 */ (const void *)ND_NULL, + /* 15 */ (const void *)ND_NULL, + /* 16 */ (const void *)ND_NULL, + /* 17 */ (const void *)ND_NULL, + /* 18 */ (const void *)ND_NULL, + /* 19 */ (const void *)ND_NULL, + /* 1a */ (const void *)ND_NULL, + /* 1b */ (const void *)ND_NULL, + /* 1c */ (const void *)ND_NULL, + /* 1d */ (const void *)ND_NULL, + /* 1e */ (const void *)ND_NULL, + /* 1f */ (const void *)ND_NULL, + /* 20 */ (const void *)ND_NULL, + /* 21 */ (const void *)ND_NULL, + /* 22 */ (const void *)ND_NULL, + /* 23 */ (const void *)ND_NULL, + /* 24 */ (const void *)ND_NULL, + /* 25 */ (const void *)ND_NULL, + /* 26 */ (const void *)ND_NULL, + /* 27 */ (const void *)ND_NULL, + /* 28 */ (const void *)ND_NULL, + /* 29 */ (const void *)ND_NULL, + /* 2a */ (const void *)ND_NULL, + /* 2b */ (const void *)ND_NULL, + /* 2c */ (const void *)ND_NULL, + /* 2d */ (const void *)ND_NULL, + /* 2e */ (const void *)ND_NULL, + /* 2f */ (const void *)ND_NULL, + /* 30 */ (const void *)ND_NULL, + /* 31 */ (const void *)ND_NULL, + /* 32 */ (const void *)ND_NULL, + /* 33 */ (const void *)ND_NULL, + /* 34 */ (const void *)ND_NULL, + /* 35 */ (const void *)ND_NULL, + /* 36 */ (const void *)ND_NULL, + /* 37 */ (const void *)ND_NULL, + /* 38 */ (const void *)ND_NULL, + /* 39 */ (const void *)ND_NULL, + /* 3a */ (const void *)ND_NULL, + /* 3b */ (const void *)ND_NULL, + /* 3c */ (const void *)ND_NULL, + /* 3d */ (const void *)ND_NULL, + /* 3e */ (const void *)ND_NULL, + /* 3f */ (const void *)ND_NULL, + /* 40 */ (const void *)ND_NULL, + /* 41 */ (const void *)ND_NULL, + /* 42 */ (const void *)ND_NULL, + /* 43 */ (const void *)ND_NULL, + /* 44 */ (const void *)ND_NULL, + /* 45 */ (const void *)ND_NULL, + /* 46 */ (const void *)ND_NULL, + /* 47 */ (const void *)ND_NULL, + /* 48 */ (const void *)ND_NULL, + /* 49 */ (const void *)ND_NULL, + /* 4a */ (const void *)ND_NULL, + /* 4b */ (const void *)ND_NULL, + /* 4c */ (const void *)ND_NULL, + /* 4d */ (const void *)ND_NULL, + /* 4e */ (const void *)ND_NULL, + /* 4f */ (const void *)ND_NULL, + /* 50 */ (const void *)ND_NULL, + /* 51 */ (const void *)ND_NULL, + /* 52 */ (const void *)ND_NULL, + /* 53 */ (const void *)ND_NULL, + /* 54 */ (const void *)ND_NULL, + /* 55 */ (const void *)ND_NULL, + /* 56 */ (const void *)ND_NULL, + /* 57 */ (const void *)ND_NULL, + /* 58 */ (const void *)ND_NULL, + /* 59 */ (const void *)ND_NULL, + /* 5a */ (const void *)ND_NULL, + /* 5b */ (const void *)ND_NULL, + /* 5c */ (const void *)ND_NULL, + /* 5d */ (const void *)ND_NULL, + /* 5e */ (const void *)ND_NULL, + /* 5f */ (const void *)ND_NULL, + /* 60 */ (const void *)ND_NULL, + /* 61 */ (const void *)ND_NULL, + /* 62 */ (const void *)ND_NULL, + /* 63 */ (const void *)ND_NULL, + /* 64 */ (const void *)ND_NULL, + /* 65 */ (const void *)ND_NULL, + /* 66 */ (const void *)ND_NULL, + /* 67 */ (const void *)ND_NULL, + /* 68 */ (const void *)ND_NULL, + /* 69 */ (const void *)ND_NULL, + /* 6a */ (const void *)ND_NULL, + /* 6b */ (const void *)ND_NULL, + /* 6c */ (const void *)ND_NULL, + /* 6d */ (const void *)ND_NULL, + /* 6e */ (const void *)ND_NULL, + /* 6f */ (const void *)ND_NULL, + /* 70 */ (const void *)ND_NULL, + /* 71 */ (const void *)ND_NULL, + /* 72 */ (const void *)ND_NULL, + /* 73 */ (const void *)ND_NULL, + /* 74 */ (const void *)ND_NULL, + /* 75 */ (const void *)ND_NULL, + /* 76 */ (const void *)ND_NULL, + /* 77 */ (const void *)ND_NULL, + /* 78 */ (const void *)ND_NULL, + /* 79 */ (const void *)ND_NULL, + /* 7a */ (const void *)ND_NULL, + /* 7b */ (const void *)ND_NULL, + /* 7c */ (const void *)ND_NULL, + /* 7d */ (const void *)ND_NULL, + /* 7e */ (const void *)ND_NULL, + /* 7f */ (const void *)ND_NULL, + /* 80 */ (const void *)ND_NULL, + /* 81 */ (const void *)ND_NULL, + /* 82 */ (const void *)ND_NULL, + /* 83 */ (const void *)ND_NULL, + /* 84 */ (const void *)ND_NULL, + /* 85 */ (const void *)ND_NULL, + /* 86 */ (const void *)ND_NULL, + /* 87 */ (const void *)ND_NULL, + /* 88 */ (const void *)ND_NULL, + /* 89 */ (const void *)ND_NULL, + /* 8a */ (const void *)ND_NULL, + /* 8b */ (const void *)ND_NULL, + /* 8c */ (const void *)ND_NULL, + /* 8d */ (const void *)ND_NULL, + /* 8e */ (const void *)ND_NULL, + /* 8f */ (const void *)ND_NULL, + /* 90 */ (const void *)ND_NULL, + /* 91 */ (const void *)ND_NULL, + /* 92 */ (const void *)ND_NULL, + /* 93 */ (const void *)ND_NULL, + /* 94 */ (const void *)ND_NULL, + /* 95 */ (const void *)ND_NULL, + /* 96 */ (const void *)ND_NULL, + /* 97 */ (const void *)ND_NULL, + /* 98 */ (const void *)ND_NULL, + /* 99 */ (const void *)ND_NULL, + /* 9a */ (const void *)ND_NULL, + /* 9b */ (const void *)ND_NULL, + /* 9c */ (const void *)ND_NULL, + /* 9d */ (const void *)ND_NULL, + /* 9e */ (const void *)ND_NULL, + /* 9f */ (const void *)ND_NULL, + /* a0 */ (const void *)ND_NULL, + /* a1 */ (const void *)ND_NULL, + /* a2 */ (const void *)ND_NULL, + /* a3 */ (const void *)ND_NULL, + /* a4 */ (const void *)ND_NULL, + /* a5 */ (const void *)ND_NULL, + /* a6 */ (const void *)ND_NULL, + /* a7 */ (const void *)ND_NULL, + /* a8 */ (const void *)ND_NULL, + /* a9 */ (const void *)ND_NULL, + /* aa */ (const void *)ND_NULL, + /* ab */ (const void *)ND_NULL, + /* ac */ (const void *)ND_NULL, + /* ad */ (const void *)ND_NULL, + /* ae */ (const void *)ND_NULL, + /* af */ (const void *)ND_NULL, + /* b0 */ (const void *)ND_NULL, + /* b1 */ (const void *)ND_NULL, + /* b2 */ (const void *)ND_NULL, + /* b3 */ (const void *)ND_NULL, + /* b4 */ (const void *)ND_NULL, + /* b5 */ (const void *)ND_NULL, + /* b6 */ (const void *)ND_NULL, + /* b7 */ (const void *)ND_NULL, + /* b8 */ (const void *)ND_NULL, + /* b9 */ (const void *)ND_NULL, + /* ba */ (const void *)ND_NULL, + /* bb */ (const void *)ND_NULL, + /* bc */ (const void *)ND_NULL, + /* bd */ (const void *)ND_NULL, + /* be */ (const void *)ND_NULL, + /* bf */ (const void *)ND_NULL, + /* c0 */ (const void *)ND_NULL, + /* c1 */ (const void *)ND_NULL, + /* c2 */ (const void *)ND_NULL, + /* c3 */ (const void *)ND_NULL, + /* c4 */ (const void *)ND_NULL, + /* c5 */ (const void *)ND_NULL, + /* c6 */ (const void *)ND_NULL, + /* c7 */ (const void *)ND_NULL, + /* c8 */ (const void *)ND_NULL, + /* c9 */ (const void *)ND_NULL, + /* ca */ (const void *)ND_NULL, + /* cb */ (const void *)ND_NULL, + /* cc */ (const void *)ND_NULL, + /* cd */ (const void *)ND_NULL, + /* ce */ (const void *)ND_NULL, + /* cf */ (const void *)ND_NULL, + /* d0 */ (const void *)ND_NULL, + /* d1 */ (const void *)ND_NULL, + /* d2 */ (const void *)ND_NULL, + /* d3 */ (const void *)ND_NULL, + /* d4 */ (const void *)ND_NULL, + /* d5 */ (const void *)ND_NULL, + /* d6 */ (const void *)ND_NULL, + /* d7 */ (const void *)ND_NULL, + /* d8 */ (const void *)ND_NULL, + /* d9 */ (const void *)ND_NULL, + /* da */ (const void *)ND_NULL, + /* db */ (const void *)ND_NULL, + /* dc */ (const void *)ND_NULL, + /* dd */ (const void *)ND_NULL, + /* de */ (const void *)ND_NULL, + /* df */ (const void *)ND_NULL, + /* e0 */ (const void *)ND_NULL, + /* e1 */ (const void *)ND_NULL, + /* e2 */ (const void *)ND_NULL, + /* e3 */ (const void *)ND_NULL, + /* e4 */ (const void *)ND_NULL, + /* e5 */ (const void *)ND_NULL, + /* e6 */ (const void *)ND_NULL, + /* e7 */ (const void *)ND_NULL, + /* e8 */ (const void *)ND_NULL, + /* e9 */ (const void *)ND_NULL, + /* ea */ (const void *)ND_NULL, + /* eb */ (const void *)ND_NULL, + /* ec */ (const void *)ND_NULL, + /* ed */ (const void *)ND_NULL, + /* ee */ (const void *)ND_NULL, + /* ef */ (const void *)ND_NULL, + /* f0 */ (const void *)ND_NULL, + /* f1 */ (const void *)ND_NULL, + /* f2 */ (const void *)ND_NULL, + /* f3 */ (const void *)ND_NULL, + /* f4 */ (const void *)ND_NULL, + /* f5 */ (const void *)ND_NULL, + /* f6 */ (const void *)ND_NULL, + /* f7 */ (const void *)ND_NULL, + /* f8 */ (const void *)&gVexMap_mmmmm_05_opcode_f8_pp, + /* f9 */ (const void *)&gVexMap_mmmmm_05_opcode_f9_pp, + /* fa */ (const void *)ND_NULL, + /* fb */ (const void *)ND_NULL, + /* fc */ (const void *)ND_NULL, + /* fd */ (const void *)&gVexMap_mmmmm_05_opcode_fd_pp, + /* fe */ (const void *)ND_NULL, + /* ff */ (const void *)ND_NULL, + } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_69_pp_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_f0_pp_03_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2947] // VFMADDPD Vx,Hx,Wx,Lx + (const void *)&gInstructions[ 2187] // RORX Gy,Ey,Ib }; -const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_69_pp_01_w = +const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_f0_pp_03_l = { - ND_ILUT_EX_W, + ND_ILUT_EX_L, { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_69_pp_01_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_69_pp_01_w_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_f0_pp_03_l_00_leaf, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_69_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_f0_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_69_pp_01_w, + /* 01 */ (const void *)ND_NULL, /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)ND_NULL, + /* 03 */ (const void *)&gVexMap_mmmmm_03_opcode_f0_pp_03_l, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_68_pp_01_w_01_leaf = -{ - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2950] // VFMADDPS Vx,Hx,Lx,Wx -}; - -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_68_pp_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_df_pp_01_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2949] // VFMADDPS Vx,Hx,Wx,Lx + (const void *)&gInstructions[ 2708] // VAESKEYGENASSIST Vdq,Wdq,Ib }; -const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_68_pp_01_w = +const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_df_pp_01_l = { - ND_ILUT_EX_W, + ND_ILUT_EX_L, { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_68_pp_01_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_68_pp_01_w_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_df_pp_01_l_00_leaf, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_68_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_df_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_68_pp_01_w, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_df_pp_01_l, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_63_pp_01_l_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_de_pp_01_l_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3457] // VPCMPISTRI Vdq,Wdq,Ib + (const void *)&gInstructions[ 4046] // VSM3RNDS2 Vdq,Hdq,Wdq,Ib }; -const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_63_pp_01_l = +const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_de_pp_01_l_00_w = +{ + ND_ILUT_EX_W, + { + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_de_pp_01_l_00_w_00_leaf, + /* 01 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_de_pp_01_l = { ND_ILUT_EX_L, { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_63_pp_01_l_00_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_de_pp_01_l_00_w, /* 01 */ (const void *)ND_NULL, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_63_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_de_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_63_pp_01_l, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_de_pp_01_l, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_62_pp_01_l_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_cf_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3458] // VPCMPISTRM Vdq,Wdq,Ib + (const void *)&gInstructions[ 3201] // VGF2P8AFFINEINVQB Vx,Hx,Wx,Ib }; -const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_62_pp_01_l = +const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_cf_pp_01_w = { - ND_ILUT_EX_L, + ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_62_pp_01_l_00_leaf, - /* 01 */ (const void *)ND_NULL, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)ND_NULL, + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_cf_pp_01_w_01_leaf, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_62_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_cf_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_62_pp_01_l, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_cf_pp_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_61_pp_01_l_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_ce_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3447] // VPCMPESTRI Vdq,Wdq,Ib + (const void *)&gInstructions[ 3203] // VGF2P8AFFINEQB Vx,Hx,Wx,Ib }; -const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_61_pp_01_l = +const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_ce_pp_01_w = { - ND_ILUT_EX_L, + ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_61_pp_01_l_00_leaf, - /* 01 */ (const void *)ND_NULL, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)ND_NULL, + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_ce_pp_01_w_01_leaf, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_61_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_ce_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_61_pp_01_l, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_ce_pp_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_60_pp_01_l_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_7f_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3448] // VPCMPESTRM Vdq,Wdq,Ib + (const void *)&gInstructions[ 3156] // VFNMSUBSD Vdq,Hdq,Ldq,Wsd }; -const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_60_pp_01_l = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_7f_pp_01_w_00_leaf = { - ND_ILUT_EX_L, + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 3155] // VFNMSUBSD Vdq,Hdq,Wsd,Ldq +}; + +const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_7f_pp_01_w = +{ + ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_60_pp_01_l_00_leaf, - /* 01 */ (const void *)ND_NULL, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)ND_NULL, + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_7f_pp_01_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_7f_pp_01_w_01_leaf, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_60_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_7f_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_60_pp_01_l, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_7f_pp_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_5f_pp_01_w_01_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_7e_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3023] // VFMSUBADDPD Vx,Hx,Lx,Wx + (const void *)&gInstructions[ 3158] // VFNMSUBSS Vdq,Hdq,Ldq,Wss }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_5f_pp_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_7e_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3022] // VFMSUBADDPD Vx,Hx,Wx,Lx + (const void *)&gInstructions[ 3157] // VFNMSUBSS Vdq,Hdq,Wss,Ldq }; -const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_5f_pp_01_w = +const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_7e_pp_01_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_5f_pp_01_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_5f_pp_01_w_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_7e_pp_01_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_7e_pp_01_w_01_leaf, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_5f_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_7e_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_5f_pp_01_w, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_7e_pp_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_5e_pp_01_w_01_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_7d_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3025] // VFMSUBADDPS Vx,Hx,Lx,Wx + (const void *)&gInstructions[ 3152] // VFNMSUBPD Vx,Hx,Lx,Wx }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_5e_pp_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_7d_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3024] // VFMSUBADDPS Vx,Hx,Wx,Lx + (const void *)&gInstructions[ 3151] // VFNMSUBPD Vx,Hx,Wx,Lx }; -const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_5e_pp_01_w = +const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_7d_pp_01_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_5e_pp_01_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_5e_pp_01_w_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_7d_pp_01_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_7d_pp_01_w_01_leaf, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_5e_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_7d_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_5e_pp_01_w, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_7d_pp_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_5d_pp_01_w_01_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_7c_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2971] // VFMADDSUBPD Vx,Hx,Lx,Wx + (const void *)&gInstructions[ 3154] // VFNMSUBPS Vx,Hx,Lx,Wx }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_5d_pp_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_7c_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2970] // VFMADDSUBPD Vx,Hx,Wx,Lx + (const void *)&gInstructions[ 3153] // VFNMSUBPS Vx,Hx,Wx,Lx }; -const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_5d_pp_01_w = +const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_7c_pp_01_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_5d_pp_01_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_5d_pp_01_w_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_7c_pp_01_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_7c_pp_01_w_01_leaf, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_5d_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_7c_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_5d_pp_01_w, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_7c_pp_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_5c_pp_01_w_01_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_7b_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2973] // VFMADDSUBPS Vx,Hx,Lx,Wx + (const void *)&gInstructions[ 3115] // VFNMADDSD Vdq,Hdq,Ldq,Wsd }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_5c_pp_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_7b_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2972] // VFMADDSUBPS Vx,Hx,Wx,Lx + (const void *)&gInstructions[ 3114] // VFNMADDSD Vdq,Hdq,Wsd,Ldq }; -const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_5c_pp_01_w = +const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_7b_pp_01_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_5c_pp_01_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_5c_pp_01_w_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_7b_pp_01_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_7b_pp_01_w_01_leaf, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_5c_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_7b_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_5c_pp_01_w, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_7b_pp_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_4c_pp_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_7a_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3417] // VPBLENDVB Vx,Hx,Wx,Lx + (const void *)&gInstructions[ 3117] // VFNMADDSS Vdq,Hdq,Ldq,Wss }; -const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_4c_pp_01_w = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_7a_pp_01_w_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 3116] // VFNMADDSS Vdq,Hdq,Wss,Ldq +}; + +const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_7a_pp_01_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_4c_pp_01_w_00_leaf, - /* 01 */ (const void *)ND_NULL, + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_7a_pp_01_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_7a_pp_01_w_01_leaf, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_4c_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_7a_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_4c_pp_01_w, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_7a_pp_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_4b_pp_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_79_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2684] // VBLENDVPD Vx,Hx,Wx,Lx + (const void *)&gInstructions[ 3111] // VFNMADDPD Vx,Hx,Lx,Wx }; -const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_4b_pp_01_w = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_79_pp_01_w_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 3110] // VFNMADDPD Vx,Hx,Wx,Lx +}; + +const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_79_pp_01_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_4b_pp_01_w_00_leaf, - /* 01 */ (const void *)ND_NULL, + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_79_pp_01_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_79_pp_01_w_01_leaf, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_4b_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_79_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_4b_pp_01_w, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_79_pp_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_4a_pp_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_78_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2685] // VBLENDVPS Vx,Hx,Wx,Lx + (const void *)&gInstructions[ 3113] // VFNMADDPS Vx,Hx,Lx,Wx }; -const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_4a_pp_01_w = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_78_pp_01_w_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 3112] // VFNMADDPS Vx,Hx,Wx,Lx +}; + +const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_78_pp_01_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_4a_pp_01_w_00_leaf, - /* 01 */ (const void *)ND_NULL, + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_78_pp_01_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_78_pp_01_w_01_leaf, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_4a_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_78_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_4a_pp_01_w, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_78_pp_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_49_pp_01_w_01_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_6f_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3523] // VPERMIL2PD Vx,Hx,Lx,Wx,m2zIb + (const void *)&gInstructions[ 3072] // VFMSUBSD Vdq,Hdq,Ldq,Wsd }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_49_pp_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_6f_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3522] // VPERMIL2PD Vx,Hx,Wx,Lx,m2zIb + (const void *)&gInstructions[ 3071] // VFMSUBSD Vdq,Hdq,Wsd,Ldq }; -const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_49_pp_01_w = +const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_6f_pp_01_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_49_pp_01_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_49_pp_01_w_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_6f_pp_01_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_6f_pp_01_w_01_leaf, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_49_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_6f_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_49_pp_01_w, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_6f_pp_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_48_pp_01_w_01_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_6e_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3525] // VPERMIL2PS Vx,Hx,Lx,Wx,m2zIb + (const void *)&gInstructions[ 3074] // VFMSUBSS Vdq,Hdq,Ldq,Wss }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_48_pp_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_6e_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3524] // VPERMIL2PS Vx,Hx,Wx,Lx,m2zIb + (const void *)&gInstructions[ 3073] // VFMSUBSS Vdq,Hdq,Wss,Ldq }; -const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_48_pp_01_w = +const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_6e_pp_01_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_48_pp_01_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_48_pp_01_w_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_6e_pp_01_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_6e_pp_01_w_01_leaf, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_48_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_6e_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_48_pp_01_w, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_6e_pp_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_46_pp_01_l_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_6d_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3512] // VPERM2I128 Vqq,Hqq,Wqq,Ib + (const void *)&gInstructions[ 3068] // VFMSUBPD Vx,Hx,Lx,Wx }; -const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_46_pp_01_l_01_w = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_6d_pp_01_w_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 3067] // VFMSUBPD Vx,Hx,Wx,Lx +}; + +const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_6d_pp_01_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_46_pp_01_l_01_w_00_leaf, - /* 01 */ (const void *)ND_NULL, + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_6d_pp_01_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_6d_pp_01_w_01_leaf, } }; -const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_46_pp_01_l = +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_6d_pp = { - ND_ILUT_EX_L, + ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_46_pp_01_l_01_w, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_6d_pp_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_46_pp = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_6c_pp_01_w_01_leaf = { - ND_ILUT_EX_PP, - { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_46_pp_01_l, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)ND_NULL, - } + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 3070] // VFMSUBPS Vx,Hx,Lx,Wx }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_44_pp_01_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_6c_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3434] // VPCLMULQDQ Vx,Hx,Wx,Ib + (const void *)&gInstructions[ 3069] // VFMSUBPS Vx,Hx,Wx,Lx }; -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_44_pp = +const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_6c_pp_01_w = { - ND_ILUT_EX_PP, + ND_ILUT_EX_W, { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_44_pp_01_leaf, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)ND_NULL, + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_6c_pp_01_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_6c_pp_01_w_01_leaf, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_42_pp_01_leaf = -{ - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3340] // VMPSADBW Vx,Hx,Wx,Ib -}; - -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_42_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_6c_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_42_pp_01_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_6c_pp_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_41_pp_01_l_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_6b_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2881] // VDPPD Vdq,Hdq,Wdq,Ib + (const void *)&gInstructions[ 2993] // VFMADDSD Vdq,Hdq,Ldq,Wsd }; -const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_41_pp_01_l = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_6b_pp_01_w_00_leaf = { - ND_ILUT_EX_L, - { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_41_pp_01_l_00_leaf, - /* 01 */ (const void *)ND_NULL, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)ND_NULL, - } + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 2992] // VFMADDSD Vdq,Hdq,Wsd,Ldq }; -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_41_pp = +const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_6b_pp_01_w = { - ND_ILUT_EX_PP, + ND_ILUT_EX_W, { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_41_pp_01_l, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)ND_NULL, + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_6b_pp_01_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_6b_pp_01_w_01_leaf, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_40_pp_01_leaf = -{ - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2883] // VDPPS Vx,Hx,Wx,Ib -}; - -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_40_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_6b_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_40_pp_01_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_6b_pp_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_39_pp_01_l_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_6a_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2895] // VEXTRACTI128 Wdq,Vqq,Ib + (const void *)&gInstructions[ 2995] // VFMADDSS Vdq,Hdq,Ldq,Wss }; -const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_39_pp_01_l_01_w = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_6a_pp_01_w_00_leaf = { - ND_ILUT_EX_W, - { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_39_pp_01_l_01_w_00_leaf, - /* 01 */ (const void *)ND_NULL, - } + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 2994] // VFMADDSS Vdq,Hdq,Wss,Ldq }; -const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_39_pp_01_l = +const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_6a_pp_01_w = { - ND_ILUT_EX_L, + ND_ILUT_EX_W, { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_39_pp_01_l_01_w, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)ND_NULL, + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_6a_pp_01_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_6a_pp_01_w_01_leaf, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_39_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_6a_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_39_pp_01_l, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_6a_pp_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_38_pp_01_l_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_69_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3174] // VINSERTI128 Vqq,Hqq,Wdq,Ib + (const void *)&gInstructions[ 2989] // VFMADDPD Vx,Hx,Lx,Wx }; -const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_38_pp_01_l_01_w = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_69_pp_01_w_00_leaf = { - ND_ILUT_EX_W, - { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_38_pp_01_l_01_w_00_leaf, - /* 01 */ (const void *)ND_NULL, - } + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 2988] // VFMADDPD Vx,Hx,Wx,Lx }; -const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_38_pp_01_l = +const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_69_pp_01_w = { - ND_ILUT_EX_L, + ND_ILUT_EX_W, { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_38_pp_01_l_01_w, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)ND_NULL, + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_69_pp_01_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_69_pp_01_w_01_leaf, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_38_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_69_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_38_pp_01_l, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_69_pp_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_33_pp_01_modrmmod_01_l_00_w_01_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_68_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1278] // KSHIFTLQ rKq,mKq,Ib + (const void *)&gInstructions[ 2991] // VFMADDPS Vx,Hx,Lx,Wx }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_33_pp_01_modrmmod_01_l_00_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_68_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1277] // KSHIFTLD rKd,mKd,Ib + (const void *)&gInstructions[ 2990] // VFMADDPS Vx,Hx,Wx,Lx }; -const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_33_pp_01_modrmmod_01_l_00_w = +const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_68_pp_01_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_33_pp_01_modrmmod_01_l_00_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_33_pp_01_modrmmod_01_l_00_w_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_68_pp_01_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_68_pp_01_w_01_leaf, } }; -const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_33_pp_01_modrmmod_01_l = +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_68_pp = { - ND_ILUT_EX_L, + ND_ILUT_EX_PP, { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_33_pp_01_modrmmod_01_l_00_w, - /* 01 */ (const void *)ND_NULL, + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_68_pp_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_MODRM_MOD gVexMap_mmmmm_03_opcode_33_pp_01_modrmmod = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_63_pp_01_l_00_leaf = { - ND_ILUT_MODRM_MOD, + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 3502] // VPCMPISTRI Vdq,Wdq,Ib +}; + +const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_63_pp_01_l = +{ + ND_ILUT_EX_L, { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_33_pp_01_modrmmod_01_l, + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_63_pp_01_l_00_leaf, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_33_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_63_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_33_pp_01_modrmmod, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_63_pp_01_l, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_32_pp_01_modrmmod_01_l_00_w_01_leaf = -{ - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1279] // KSHIFTLW rKw,mKw,Ib -}; - -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_32_pp_01_modrmmod_01_l_00_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_62_pp_01_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1276] // KSHIFTLB rKb,mKb,Ib -}; - -const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_32_pp_01_modrmmod_01_l_00_w = -{ - ND_ILUT_EX_W, - { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_32_pp_01_modrmmod_01_l_00_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_32_pp_01_modrmmod_01_l_00_w_01_leaf, - } + (const void *)&gInstructions[ 3503] // VPCMPISTRM Vdq,Wdq,Ib }; -const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_32_pp_01_modrmmod_01_l = +const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_62_pp_01_l = { ND_ILUT_EX_L, { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_32_pp_01_modrmmod_01_l_00_w, + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_62_pp_01_l_00_leaf, /* 01 */ (const void *)ND_NULL, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_MODRM_MOD gVexMap_mmmmm_03_opcode_32_pp_01_modrmmod = -{ - ND_ILUT_MODRM_MOD, - { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_32_pp_01_modrmmod_01_l, - } -}; - -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_32_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_62_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_32_pp_01_modrmmod, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_62_pp_01_l, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_31_pp_01_modrmmod_01_l_00_w_01_leaf = -{ - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1282] // KSHIFTRQ rKq,mKq,Ib -}; - -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_31_pp_01_modrmmod_01_l_00_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_61_pp_01_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1281] // KSHIFTRD rKd,mKd,Ib + (const void *)&gInstructions[ 3492] // VPCMPESTRI Vdq,Wdq,Ib }; -const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_31_pp_01_modrmmod_01_l_00_w = +const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_61_pp_01_l = { - ND_ILUT_EX_W, + ND_ILUT_EX_L, { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_31_pp_01_modrmmod_01_l_00_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_31_pp_01_modrmmod_01_l_00_w_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_61_pp_01_l_00_leaf, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_31_pp_01_modrmmod_01_l = +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_61_pp = { - ND_ILUT_EX_L, + ND_ILUT_EX_PP, { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_31_pp_01_modrmmod_01_l_00_w, - /* 01 */ (const void *)ND_NULL, + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_61_pp_01_l, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_MODRM_MOD gVexMap_mmmmm_03_opcode_31_pp_01_modrmmod = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_60_pp_01_l_00_leaf = { - ND_ILUT_MODRM_MOD, + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 3493] // VPCMPESTRM Vdq,Wdq,Ib +}; + +const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_60_pp_01_l = +{ + ND_ILUT_EX_L, { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_31_pp_01_modrmmod_01_l, + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_60_pp_01_l_00_leaf, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_31_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_60_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_31_pp_01_modrmmod, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_60_pp_01_l, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_30_pp_01_modrmmod_01_l_00_w_01_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_5f_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1283] // KSHIFTRW rKw,mKw,Ib + (const void *)&gInstructions[ 3064] // VFMSUBADDPD Vx,Hx,Lx,Wx }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_30_pp_01_modrmmod_01_l_00_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_5f_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1280] // KSHIFTRB rKb,mKb,Ib + (const void *)&gInstructions[ 3063] // VFMSUBADDPD Vx,Hx,Wx,Lx }; -const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_30_pp_01_modrmmod_01_l_00_w = +const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_5f_pp_01_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_30_pp_01_modrmmod_01_l_00_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_30_pp_01_modrmmod_01_l_00_w_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_5f_pp_01_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_5f_pp_01_w_01_leaf, } }; -const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_30_pp_01_modrmmod_01_l = +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_5f_pp = { - ND_ILUT_EX_L, + ND_ILUT_EX_PP, { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_30_pp_01_modrmmod_01_l_00_w, - /* 01 */ (const void *)ND_NULL, + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_5f_pp_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_MODRM_MOD gVexMap_mmmmm_03_opcode_30_pp_01_modrmmod = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_5e_pp_01_w_01_leaf = { - ND_ILUT_MODRM_MOD, + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 3066] // VFMSUBADDPS Vx,Hx,Lx,Wx +}; + +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_5e_pp_01_w_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 3065] // VFMSUBADDPS Vx,Hx,Wx,Lx +}; + +const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_5e_pp_01_w = +{ + ND_ILUT_EX_W, { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_30_pp_01_modrmmod_01_l, + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_5e_pp_01_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_5e_pp_01_w_01_leaf, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_30_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_5e_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_30_pp_01_modrmmod, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_5e_pp_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_22_pp_01_l_00_wi_01_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_5d_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3610] // VPINSRQ Vdq,Hdq,Ey,Ib + (const void *)&gInstructions[ 3012] // VFMADDSUBPD Vx,Hx,Lx,Wx }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_22_pp_01_l_00_wi_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_5d_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3608] // VPINSRD Vdq,Hdq,Ey,Ib + (const void *)&gInstructions[ 3011] // VFMADDSUBPD Vx,Hx,Wx,Lx }; -const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_22_pp_01_l_00_wi = +const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_5d_pp_01_w = { - ND_ILUT_EX_WI, + ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_22_pp_01_l_00_wi_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_22_pp_01_l_00_wi_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_5d_pp_01_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_5d_pp_01_w_01_leaf, } }; -const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_22_pp_01_l = +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_5d_pp = { - ND_ILUT_EX_L, + ND_ILUT_EX_PP, { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_22_pp_01_l_00_wi, - /* 01 */ (const void *)ND_NULL, + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_5d_pp_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_22_pp = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_5c_pp_01_w_01_leaf = { - ND_ILUT_EX_PP, - { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_22_pp_01_l, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)ND_NULL, - } + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 3014] // VFMADDSUBPS Vx,Hx,Lx,Wx }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_21_pp_01_modrmmod_01_l_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_5c_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3182] // VINSERTPS Vdq,Hdq,Udq,Ib + (const void *)&gInstructions[ 3013] // VFMADDSUBPS Vx,Hx,Wx,Lx }; -const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_21_pp_01_modrmmod_01_l = +const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_5c_pp_01_w = { - ND_ILUT_EX_L, + ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_21_pp_01_modrmmod_01_l_00_leaf, - /* 01 */ (const void *)ND_NULL, + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_5c_pp_01_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_5c_pp_01_w_01_leaf, + } +}; + +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_5c_pp = +{ + ND_ILUT_EX_PP, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_5c_pp_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_21_pp_01_modrmmod_00_l_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_4c_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3181] // VINSERTPS Vdq,Hdq,Md,Ib + (const void *)&gInstructions[ 3462] // VPBLENDVB Vx,Hx,Wx,Lx }; -const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_21_pp_01_modrmmod_00_l = +const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_4c_pp_01_w = { - ND_ILUT_EX_L, + ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_21_pp_01_modrmmod_00_l_00_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_4c_pp_01_w_00_leaf, /* 01 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_4c_pp = +{ + ND_ILUT_EX_PP, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_4c_pp_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_MODRM_MOD gVexMap_mmmmm_03_opcode_21_pp_01_modrmmod = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_4b_pp_01_w_00_leaf = { - ND_ILUT_MODRM_MOD, + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 2725] // VBLENDVPD Vx,Hx,Wx,Lx +}; + +const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_4b_pp_01_w = +{ + ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_21_pp_01_modrmmod_00_l, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_21_pp_01_modrmmod_01_l, + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_4b_pp_01_w_00_leaf, + /* 01 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_21_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_4b_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_21_pp_01_modrmmod, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_4b_pp_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_20_pp_01_modrmmod_01_l_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_4a_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3606] // VPINSRB Vdq,Hdq,Rd,Ib + (const void *)&gInstructions[ 2726] // VBLENDVPS Vx,Hx,Wx,Lx }; -const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_20_pp_01_modrmmod_01_l = +const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_4a_pp_01_w = { - ND_ILUT_EX_L, + ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_20_pp_01_modrmmod_01_l_00_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_4a_pp_01_w_00_leaf, /* 01 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_4a_pp = +{ + ND_ILUT_EX_PP, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_4a_pp_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_20_pp_01_modrmmod_00_l_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_49_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3605] // VPINSRB Vdq,Hdq,Mb,Ib + (const void *)&gInstructions[ 3568] // VPERMIL2PD Vx,Hx,Lx,Wx,m2zIb }; -const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_20_pp_01_modrmmod_00_l = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_49_pp_01_w_00_leaf = { - ND_ILUT_EX_L, - { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_20_pp_01_modrmmod_00_l_00_leaf, - /* 01 */ (const void *)ND_NULL, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)ND_NULL, - } + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 3567] // VPERMIL2PD Vx,Hx,Wx,Lx,m2zIb }; -const ND_TABLE_MODRM_MOD gVexMap_mmmmm_03_opcode_20_pp_01_modrmmod = +const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_49_pp_01_w = { - ND_ILUT_MODRM_MOD, + ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_20_pp_01_modrmmod_00_l, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_20_pp_01_modrmmod_01_l, + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_49_pp_01_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_49_pp_01_w_01_leaf, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_20_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_49_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_20_pp_01_modrmmod, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_49_pp_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_1d_pp_01_l_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_48_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2784] // VCVTPS2PH Wdq,Vqq,Ib -}; - -const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_1d_pp_01_l_01_w = -{ - ND_ILUT_EX_W, - { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_1d_pp_01_l_01_w_00_leaf, - /* 01 */ (const void *)ND_NULL, - } + (const void *)&gInstructions[ 3570] // VPERMIL2PS Vx,Hx,Lx,Wx,m2zIb }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_1d_pp_01_l_00_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_48_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2783] // VCVTPS2PH Wq,Vdq,Ib + (const void *)&gInstructions[ 3569] // VPERMIL2PS Vx,Hx,Wx,Lx,m2zIb }; -const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_1d_pp_01_l_00_w = +const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_48_pp_01_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_1d_pp_01_l_00_w_00_leaf, - /* 01 */ (const void *)ND_NULL, - } -}; - -const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_1d_pp_01_l = -{ - ND_ILUT_EX_L, - { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_1d_pp_01_l_00_w, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_1d_pp_01_l_01_w, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)ND_NULL, + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_48_pp_01_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_48_pp_01_w_01_leaf, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_1d_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_48_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_1d_pp_01_l, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_48_pp_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_19_pp_01_l_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_46_pp_01_l_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2890] // VEXTRACTF128 Wdq,Vqq,Ib + (const void *)&gInstructions[ 3557] // VPERM2I128 Vqq,Hqq,Wqq,Ib }; -const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_19_pp_01_l_01_w = +const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_46_pp_01_l_01_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_19_pp_01_l_01_w_00_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_46_pp_01_l_01_w_00_leaf, /* 01 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_19_pp_01_l = +const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_46_pp_01_l = { ND_ILUT_EX_L, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_19_pp_01_l_01_w, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_46_pp_01_l_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_19_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_46_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_19_pp_01_l, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_46_pp_01_l, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_18_pp_01_l_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_44_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3169] // VINSERTF128 Vqq,Hqq,Wdq,Ib -}; - -const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_18_pp_01_l_01_w = -{ - ND_ILUT_EX_W, - { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_18_pp_01_l_01_w_00_leaf, - /* 01 */ (const void *)ND_NULL, - } + (const void *)&gInstructions[ 3479] // VPCLMULQDQ Vx,Hx,Wx,Ib }; -const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_18_pp_01_l = +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_44_pp = { - ND_ILUT_EX_L, + ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_18_pp_01_l_01_w, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_44_pp_01_leaf, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_18_pp = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_42_pp_01_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 3385] // VMPSADBW Vx,Hx,Wx,Ib +}; + +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_42_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_18_pp_01_l, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_42_pp_01_leaf, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_17_pp_01_modrmmod_01_l_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_41_pp_01_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2903] // VEXTRACTPS Ry,Vdq,Ib + (const void *)&gInstructions[ 2922] // VDPPD Vdq,Hdq,Wdq,Ib }; -const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_17_pp_01_modrmmod_01_l = +const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_41_pp_01_l = { ND_ILUT_EX_L, { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_17_pp_01_modrmmod_01_l_00_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_41_pp_01_l_00_leaf, /* 01 */ (const void *)ND_NULL, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_17_pp_01_modrmmod_00_l_00_leaf = -{ - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2902] // VEXTRACTPS Md,Vdq,Ib -}; - -const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_17_pp_01_modrmmod_00_l = +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_41_pp = { - ND_ILUT_EX_L, + ND_ILUT_EX_PP, { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_17_pp_01_modrmmod_00_l_00_leaf, - /* 01 */ (const void *)ND_NULL, + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_41_pp_01_l, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_MODRM_MOD gVexMap_mmmmm_03_opcode_17_pp_01_modrmmod = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_40_pp_01_leaf = { - ND_ILUT_MODRM_MOD, - { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_17_pp_01_modrmmod_00_l, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_17_pp_01_modrmmod_01_l, - } + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 2924] // VDPPS Vx,Hx,Wx,Ib }; -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_17_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_40_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_17_pp_01_modrmmod, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_40_pp_01_leaf, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_16_pp_01_modrmmod_01_l_00_wi_01_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_39_pp_01_l_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3566] // VPEXTRQ Ry,Vdq,Ib + (const void *)&gInstructions[ 2936] // VEXTRACTI128 Wdq,Vqq,Ib }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_16_pp_01_modrmmod_01_l_00_wi_00_leaf = +const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_39_pp_01_l_01_w = { - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3562] // VPEXTRD Ry,Vdq,Ib -}; - -const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_16_pp_01_modrmmod_01_l_00_wi = -{ - ND_ILUT_EX_WI, + ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_16_pp_01_modrmmod_01_l_00_wi_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_16_pp_01_modrmmod_01_l_00_wi_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_39_pp_01_l_01_w_00_leaf, + /* 01 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_16_pp_01_modrmmod_01_l = +const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_39_pp_01_l = { ND_ILUT_EX_L, { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_16_pp_01_modrmmod_01_l_00_wi, - /* 01 */ (const void *)ND_NULL, + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_39_pp_01_l_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_16_pp_01_modrmmod_00_l_00_wi_01_leaf = +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_39_pp = { - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3565] // VPEXTRQ Mq,Vdq,Ib + ND_ILUT_EX_PP, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_39_pp_01_l, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_16_pp_01_modrmmod_00_l_00_wi_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_38_pp_01_l_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3561] // VPEXTRD Md,Vdq,Ib + (const void *)&gInstructions[ 3215] // VINSERTI128 Vqq,Hqq,Wdq,Ib }; -const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_16_pp_01_modrmmod_00_l_00_wi = +const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_38_pp_01_l_01_w = { - ND_ILUT_EX_WI, + ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_16_pp_01_modrmmod_00_l_00_wi_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_16_pp_01_modrmmod_00_l_00_wi_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_38_pp_01_l_01_w_00_leaf, + /* 01 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_16_pp_01_modrmmod_00_l = +const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_38_pp_01_l = { ND_ILUT_EX_L, { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_16_pp_01_modrmmod_00_l_00_wi, - /* 01 */ (const void *)ND_NULL, + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_38_pp_01_l_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_MODRM_MOD gVexMap_mmmmm_03_opcode_16_pp_01_modrmmod = -{ - ND_ILUT_MODRM_MOD, - { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_16_pp_01_modrmmod_00_l, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_16_pp_01_modrmmod_01_l, - } -}; - -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_16_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_38_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_16_pp_01_modrmmod, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_38_pp_01_l, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_15_pp_01_modrmmod_01_l_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_33_pp_01_modrmmod_01_l_00_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3572] // VPEXTRW Ry,Vdq,Ib + (const void *)&gInstructions[ 1278] // KSHIFTLQ rKq,mKq,Ib }; -const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_15_pp_01_modrmmod_01_l = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_33_pp_01_modrmmod_01_l_00_w_00_leaf = { - ND_ILUT_EX_L, - { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_15_pp_01_modrmmod_01_l_00_leaf, - /* 01 */ (const void *)ND_NULL, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)ND_NULL, - } + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 1277] // KSHIFTLD rKd,mKd,Ib }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_15_pp_01_modrmmod_00_l_00_leaf = +const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_33_pp_01_modrmmod_01_l_00_w = { - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3571] // VPEXTRW Mw,Vdq,Ib + ND_ILUT_EX_W, + { + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_33_pp_01_modrmmod_01_l_00_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_33_pp_01_modrmmod_01_l_00_w_01_leaf, + } }; -const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_15_pp_01_modrmmod_00_l = +const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_33_pp_01_modrmmod_01_l = { ND_ILUT_EX_L, { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_15_pp_01_modrmmod_00_l_00_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_33_pp_01_modrmmod_01_l_00_w, /* 01 */ (const void *)ND_NULL, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_MODRM_MOD gVexMap_mmmmm_03_opcode_15_pp_01_modrmmod = +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_03_opcode_33_pp_01_modrmmod = { ND_ILUT_MODRM_MOD, { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_15_pp_01_modrmmod_00_l, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_15_pp_01_modrmmod_01_l, + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_33_pp_01_modrmmod_01_l, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_15_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_33_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_15_pp_01_modrmmod, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_33_pp_01_modrmmod, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_14_pp_01_modrmmod_01_l_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_32_pp_01_modrmmod_01_l_00_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3558] // VPEXTRB Ry,Vdq,Ib + (const void *)&gInstructions[ 1279] // KSHIFTLW rKw,mKw,Ib }; -const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_14_pp_01_modrmmod_01_l = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_32_pp_01_modrmmod_01_l_00_w_00_leaf = { - ND_ILUT_EX_L, - { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_14_pp_01_modrmmod_01_l_00_leaf, - /* 01 */ (const void *)ND_NULL, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)ND_NULL, - } + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 1276] // KSHIFTLB rKb,mKb,Ib }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_14_pp_01_modrmmod_00_l_00_leaf = +const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_32_pp_01_modrmmod_01_l_00_w = { - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3557] // VPEXTRB Mb,Vdq,Ib + ND_ILUT_EX_W, + { + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_32_pp_01_modrmmod_01_l_00_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_32_pp_01_modrmmod_01_l_00_w_01_leaf, + } }; -const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_14_pp_01_modrmmod_00_l = +const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_32_pp_01_modrmmod_01_l = { ND_ILUT_EX_L, { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_14_pp_01_modrmmod_00_l_00_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_32_pp_01_modrmmod_01_l_00_w, /* 01 */ (const void *)ND_NULL, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_MODRM_MOD gVexMap_mmmmm_03_opcode_14_pp_01_modrmmod = +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_03_opcode_32_pp_01_modrmmod = { ND_ILUT_MODRM_MOD, { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_14_pp_01_modrmmod_00_l, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_14_pp_01_modrmmod_01_l, + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_32_pp_01_modrmmod_01_l, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_14_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_32_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_14_pp_01_modrmmod, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_32_pp_01_modrmmod, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_0f_pp_01_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_31_pp_01_modrmmod_01_l_00_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3401] // VPALIGNR Vx,Hx,Wx,Ib -}; - -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_0f_pp = -{ - ND_ILUT_EX_PP, - { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_0f_pp_01_leaf, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)ND_NULL, - } + (const void *)&gInstructions[ 1282] // KSHIFTRQ rKq,mKq,Ib }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_0e_pp_01_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_31_pp_01_modrmmod_01_l_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3418] // VPBLENDW Vx,Hx,Wx,Ib + (const void *)&gInstructions[ 1281] // KSHIFTRD rKd,mKd,Ib }; -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_0e_pp = +const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_31_pp_01_modrmmod_01_l_00_w = { - ND_ILUT_EX_PP, + ND_ILUT_EX_W, { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_0e_pp_01_leaf, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)ND_NULL, + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_31_pp_01_modrmmod_01_l_00_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_31_pp_01_modrmmod_01_l_00_w_01_leaf, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_0d_pp_01_leaf = -{ - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2682] // VBLENDPD Vx,Hx,Wx,Ib -}; - -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_0d_pp = +const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_31_pp_01_modrmmod_01_l = { - ND_ILUT_EX_PP, + ND_ILUT_EX_L, { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_0d_pp_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_31_pp_01_modrmmod_01_l_00_w, + /* 01 */ (const void *)ND_NULL, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_0c_pp_01_leaf = +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_03_opcode_31_pp_01_modrmmod = { - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2683] // VBLENDPS Vx,Hx,Wx,Ib + ND_ILUT_MODRM_MOD, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_31_pp_01_modrmmod_01_l, + } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_0c_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_31_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_0c_pp_01_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_31_pp_01_modrmmod, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_0b_pp_01_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_30_pp_01_modrmmod_01_l_00_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3954] // VROUNDSD Vsd,Hsd,Wsd,Ib + (const void *)&gInstructions[ 1283] // KSHIFTRW rKw,mKw,Ib }; -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_0b_pp = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_30_pp_01_modrmmod_01_l_00_w_00_leaf = { - ND_ILUT_EX_PP, - { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_0b_pp_01_leaf, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)ND_NULL, - } + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 1280] // KSHIFTRB rKb,mKb,Ib }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_0a_pp_01_leaf = +const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_30_pp_01_modrmmod_01_l_00_w = { - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3955] // VROUNDSS Vss,Hss,Wss,Ib + ND_ILUT_EX_W, + { + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_30_pp_01_modrmmod_01_l_00_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_30_pp_01_modrmmod_01_l_00_w_01_leaf, + } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_0a_pp = +const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_30_pp_01_modrmmod_01_l = { - ND_ILUT_EX_PP, + ND_ILUT_EX_L, { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_0a_pp_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_30_pp_01_modrmmod_01_l_00_w, + /* 01 */ (const void *)ND_NULL, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_09_pp_01_leaf = +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_03_opcode_30_pp_01_modrmmod = { - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3952] // VROUNDPD Vx,Wx,Ib + ND_ILUT_MODRM_MOD, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_30_pp_01_modrmmod_01_l, + } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_09_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_30_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_09_pp_01_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_30_pp_01_modrmmod, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_08_pp_01_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_22_pp_01_l_00_wi_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3953] // VROUNDPS Vx,Wx,Ib -}; - -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_08_pp = -{ - ND_ILUT_EX_PP, - { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_08_pp_01_leaf, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)ND_NULL, - } + (const void *)&gInstructions[ 3655] // VPINSRQ Vdq,Hdq,Ey,Ib }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_06_pp_01_l_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_22_pp_01_l_00_wi_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3511] // VPERM2F128 Vqq,Hqq,Wqq,Ib + (const void *)&gInstructions[ 3653] // VPINSRD Vdq,Hdq,Ey,Ib }; -const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_06_pp_01_l_01_w = +const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_22_pp_01_l_00_wi = { - ND_ILUT_EX_W, + ND_ILUT_EX_WI, { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_06_pp_01_l_01_w_00_leaf, - /* 01 */ (const void *)ND_NULL, + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_22_pp_01_l_00_wi_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_22_pp_01_l_00_wi_01_leaf, } }; -const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_06_pp_01_l = +const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_22_pp_01_l = { ND_ILUT_EX_L, { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_06_pp_01_l_01_w, + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_22_pp_01_l_00_wi, + /* 01 */ (const void *)ND_NULL, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_06_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_22_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_06_pp_01_l, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_22_pp_01_l, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_05_pp_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_21_pp_01_modrmmod_01_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3529] // VPERMILPD Vx,Wx,Ib + (const void *)&gInstructions[ 3223] // VINSERTPS Vdq,Hdq,Udq,Ib }; -const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_05_pp_01_w = +const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_21_pp_01_modrmmod_01_l = { - ND_ILUT_EX_W, + ND_ILUT_EX_L, { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_05_pp_01_w_00_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_21_pp_01_modrmmod_01_l_00_leaf, /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_05_pp = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_21_pp_01_modrmmod_00_l_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 3222] // VINSERTPS Vdq,Hdq,Md,Ib +}; + +const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_21_pp_01_modrmmod_00_l = +{ + ND_ILUT_EX_L, + { + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_21_pp_01_modrmmod_00_l_00_leaf, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_03_opcode_21_pp_01_modrmmod = +{ + ND_ILUT_MODRM_MOD, + { + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_21_pp_01_modrmmod_00_l, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_21_pp_01_modrmmod_01_l, + } +}; + +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_21_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_05_pp_01_w, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_21_pp_01_modrmmod, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_04_pp_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_20_pp_01_modrmmod_01_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3533] // VPERMILPS Vx,Wx,Ib + (const void *)&gInstructions[ 3651] // VPINSRB Vdq,Hdq,Rd,Ib }; -const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_04_pp_01_w = +const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_20_pp_01_modrmmod_01_l = { - ND_ILUT_EX_W, + ND_ILUT_EX_L, { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_04_pp_01_w_00_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_20_pp_01_modrmmod_01_l_00_leaf, /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_04_pp = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_20_pp_01_modrmmod_00_l_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 3650] // VPINSRB Vdq,Hdq,Mb,Ib +}; + +const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_20_pp_01_modrmmod_00_l = +{ + ND_ILUT_EX_L, + { + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_20_pp_01_modrmmod_00_l_00_leaf, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_03_opcode_20_pp_01_modrmmod = +{ + ND_ILUT_MODRM_MOD, + { + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_20_pp_01_modrmmod_00_l, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_20_pp_01_modrmmod_01_l, + } +}; + +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_20_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_04_pp_01_w, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_20_pp_01_modrmmod, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_02_pp_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_1d_pp_01_l_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3412] // VPBLENDD Vx,Hx,Wx,Ib + (const void *)&gInstructions[ 2825] // VCVTPS2PH Wdq,Vqq,Ib }; -const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_02_pp_01_w = +const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_1d_pp_01_l_01_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_02_pp_01_w_00_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_1d_pp_01_l_01_w_00_leaf, /* 01 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_02_pp = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_1d_pp_01_l_00_w_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 2824] // VCVTPS2PH Wq,Vdq,Ib +}; + +const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_1d_pp_01_l_00_w = +{ + ND_ILUT_EX_W, + { + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_1d_pp_01_l_00_w_00_leaf, + /* 01 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_1d_pp_01_l = +{ + ND_ILUT_EX_L, + { + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_1d_pp_01_l_00_w, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_1d_pp_01_l_01_w, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_1d_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_02_pp_01_w, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_1d_pp_01_l, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_01_pp_01_l_01_w_01_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_19_pp_01_l_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3537] // VPERMPD Vqq,Wqq,Ib + (const void *)&gInstructions[ 2931] // VEXTRACTF128 Wdq,Vqq,Ib }; -const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_01_pp_01_l_01_w = +const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_19_pp_01_l_01_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_01_pp_01_l_01_w_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_19_pp_01_l_01_w_00_leaf, + /* 01 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_01_pp_01_l = +const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_19_pp_01_l = { ND_ILUT_EX_L, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_01_pp_01_l_01_w, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_19_pp_01_l_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_01_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_19_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_01_pp_01_l, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_19_pp_01_l, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_00_pp_01_l_01_w_01_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_18_pp_01_l_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3543] // VPERMQ Vqq,Wqq,Ib + (const void *)&gInstructions[ 3210] // VINSERTF128 Vqq,Hqq,Wdq,Ib }; -const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_00_pp_01_l_01_w = +const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_18_pp_01_l_01_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_00_pp_01_l_01_w_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_18_pp_01_l_01_w_00_leaf, + /* 01 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_00_pp_01_l = +const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_18_pp_01_l = { ND_ILUT_EX_L, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_00_pp_01_l_01_w, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_18_pp_01_l_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_00_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_18_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_00_pp_01_l, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_18_pp_01_l, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_OPCODE gVexMap_mmmmm_03_opcode = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_17_pp_01_modrmmod_01_l_00_leaf = { - ND_ILUT_OPCODE, + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 2944] // VEXTRACTPS Ry,Vdq,Ib +}; + +const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_17_pp_01_modrmmod_01_l = +{ + ND_ILUT_EX_L, { - /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_00_pp, - /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_01_pp, - /* 02 */ (const void *)&gVexMap_mmmmm_03_opcode_02_pp, + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_17_pp_01_modrmmod_01_l_00_leaf, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, - /* 04 */ (const void *)&gVexMap_mmmmm_03_opcode_04_pp, - /* 05 */ (const void *)&gVexMap_mmmmm_03_opcode_05_pp, - /* 06 */ (const void *)&gVexMap_mmmmm_03_opcode_06_pp, - /* 07 */ (const void *)ND_NULL, - /* 08 */ (const void *)&gVexMap_mmmmm_03_opcode_08_pp, - /* 09 */ (const void *)&gVexMap_mmmmm_03_opcode_09_pp, - /* 0a */ (const void *)&gVexMap_mmmmm_03_opcode_0a_pp, - /* 0b */ (const void *)&gVexMap_mmmmm_03_opcode_0b_pp, - /* 0c */ (const void *)&gVexMap_mmmmm_03_opcode_0c_pp, - /* 0d */ (const void *)&gVexMap_mmmmm_03_opcode_0d_pp, - /* 0e */ (const void *)&gVexMap_mmmmm_03_opcode_0e_pp, - /* 0f */ (const void *)&gVexMap_mmmmm_03_opcode_0f_pp, - /* 10 */ (const void *)ND_NULL, - /* 11 */ (const void *)ND_NULL, - /* 12 */ (const void *)ND_NULL, - /* 13 */ (const void *)ND_NULL, - /* 14 */ (const void *)&gVexMap_mmmmm_03_opcode_14_pp, - /* 15 */ (const void *)&gVexMap_mmmmm_03_opcode_15_pp, - /* 16 */ (const void *)&gVexMap_mmmmm_03_opcode_16_pp, - /* 17 */ (const void *)&gVexMap_mmmmm_03_opcode_17_pp, - /* 18 */ (const void *)&gVexMap_mmmmm_03_opcode_18_pp, - /* 19 */ (const void *)&gVexMap_mmmmm_03_opcode_19_pp, - /* 1a */ (const void *)ND_NULL, - /* 1b */ (const void *)ND_NULL, - /* 1c */ (const void *)ND_NULL, - /* 1d */ (const void *)&gVexMap_mmmmm_03_opcode_1d_pp, - /* 1e */ (const void *)ND_NULL, - /* 1f */ (const void *)ND_NULL, - /* 20 */ (const void *)&gVexMap_mmmmm_03_opcode_20_pp, - /* 21 */ (const void *)&gVexMap_mmmmm_03_opcode_21_pp, - /* 22 */ (const void *)&gVexMap_mmmmm_03_opcode_22_pp, - /* 23 */ (const void *)ND_NULL, - /* 24 */ (const void *)ND_NULL, - /* 25 */ (const void *)ND_NULL, - /* 26 */ (const void *)ND_NULL, - /* 27 */ (const void *)ND_NULL, - /* 28 */ (const void *)ND_NULL, - /* 29 */ (const void *)ND_NULL, - /* 2a */ (const void *)ND_NULL, - /* 2b */ (const void *)ND_NULL, - /* 2c */ (const void *)ND_NULL, - /* 2d */ (const void *)ND_NULL, - /* 2e */ (const void *)ND_NULL, - /* 2f */ (const void *)ND_NULL, - /* 30 */ (const void *)&gVexMap_mmmmm_03_opcode_30_pp, - /* 31 */ (const void *)&gVexMap_mmmmm_03_opcode_31_pp, - /* 32 */ (const void *)&gVexMap_mmmmm_03_opcode_32_pp, - /* 33 */ (const void *)&gVexMap_mmmmm_03_opcode_33_pp, - /* 34 */ (const void *)ND_NULL, - /* 35 */ (const void *)ND_NULL, - /* 36 */ (const void *)ND_NULL, - /* 37 */ (const void *)ND_NULL, - /* 38 */ (const void *)&gVexMap_mmmmm_03_opcode_38_pp, - /* 39 */ (const void *)&gVexMap_mmmmm_03_opcode_39_pp, - /* 3a */ (const void *)ND_NULL, - /* 3b */ (const void *)ND_NULL, - /* 3c */ (const void *)ND_NULL, - /* 3d */ (const void *)ND_NULL, - /* 3e */ (const void *)ND_NULL, - /* 3f */ (const void *)ND_NULL, - /* 40 */ (const void *)&gVexMap_mmmmm_03_opcode_40_pp, - /* 41 */ (const void *)&gVexMap_mmmmm_03_opcode_41_pp, - /* 42 */ (const void *)&gVexMap_mmmmm_03_opcode_42_pp, - /* 43 */ (const void *)ND_NULL, - /* 44 */ (const void *)&gVexMap_mmmmm_03_opcode_44_pp, - /* 45 */ (const void *)ND_NULL, - /* 46 */ (const void *)&gVexMap_mmmmm_03_opcode_46_pp, - /* 47 */ (const void *)ND_NULL, - /* 48 */ (const void *)&gVexMap_mmmmm_03_opcode_48_pp, - /* 49 */ (const void *)&gVexMap_mmmmm_03_opcode_49_pp, - /* 4a */ (const void *)&gVexMap_mmmmm_03_opcode_4a_pp, - /* 4b */ (const void *)&gVexMap_mmmmm_03_opcode_4b_pp, - /* 4c */ (const void *)&gVexMap_mmmmm_03_opcode_4c_pp, - /* 4d */ (const void *)ND_NULL, - /* 4e */ (const void *)ND_NULL, - /* 4f */ (const void *)ND_NULL, - /* 50 */ (const void *)ND_NULL, - /* 51 */ (const void *)ND_NULL, - /* 52 */ (const void *)ND_NULL, - /* 53 */ (const void *)ND_NULL, - /* 54 */ (const void *)ND_NULL, - /* 55 */ (const void *)ND_NULL, - /* 56 */ (const void *)ND_NULL, - /* 57 */ (const void *)ND_NULL, - /* 58 */ (const void *)ND_NULL, - /* 59 */ (const void *)ND_NULL, - /* 5a */ (const void *)ND_NULL, - /* 5b */ (const void *)ND_NULL, - /* 5c */ (const void *)&gVexMap_mmmmm_03_opcode_5c_pp, - /* 5d */ (const void *)&gVexMap_mmmmm_03_opcode_5d_pp, - /* 5e */ (const void *)&gVexMap_mmmmm_03_opcode_5e_pp, - /* 5f */ (const void *)&gVexMap_mmmmm_03_opcode_5f_pp, - /* 60 */ (const void *)&gVexMap_mmmmm_03_opcode_60_pp, - /* 61 */ (const void *)&gVexMap_mmmmm_03_opcode_61_pp, - /* 62 */ (const void *)&gVexMap_mmmmm_03_opcode_62_pp, - /* 63 */ (const void *)&gVexMap_mmmmm_03_opcode_63_pp, - /* 64 */ (const void *)ND_NULL, - /* 65 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_17_pp_01_modrmmod_00_l_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 2943] // VEXTRACTPS Md,Vdq,Ib +}; + +const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_17_pp_01_modrmmod_00_l = +{ + ND_ILUT_EX_L, + { + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_17_pp_01_modrmmod_00_l_00_leaf, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_03_opcode_17_pp_01_modrmmod = +{ + ND_ILUT_MODRM_MOD, + { + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_17_pp_01_modrmmod_00_l, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_17_pp_01_modrmmod_01_l, + } +}; + +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_17_pp = +{ + ND_ILUT_EX_PP, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_17_pp_01_modrmmod, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_16_pp_01_modrmmod_01_l_00_wi_01_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 3611] // VPEXTRQ Ry,Vdq,Ib +}; + +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_16_pp_01_modrmmod_01_l_00_wi_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 3607] // VPEXTRD Ry,Vdq,Ib +}; + +const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_16_pp_01_modrmmod_01_l_00_wi = +{ + ND_ILUT_EX_WI, + { + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_16_pp_01_modrmmod_01_l_00_wi_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_16_pp_01_modrmmod_01_l_00_wi_01_leaf, + } +}; + +const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_16_pp_01_modrmmod_01_l = +{ + ND_ILUT_EX_L, + { + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_16_pp_01_modrmmod_01_l_00_wi, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_16_pp_01_modrmmod_00_l_00_wi_01_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 3610] // VPEXTRQ Mq,Vdq,Ib +}; + +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_16_pp_01_modrmmod_00_l_00_wi_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 3606] // VPEXTRD Md,Vdq,Ib +}; + +const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_16_pp_01_modrmmod_00_l_00_wi = +{ + ND_ILUT_EX_WI, + { + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_16_pp_01_modrmmod_00_l_00_wi_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_16_pp_01_modrmmod_00_l_00_wi_01_leaf, + } +}; + +const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_16_pp_01_modrmmod_00_l = +{ + ND_ILUT_EX_L, + { + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_16_pp_01_modrmmod_00_l_00_wi, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_03_opcode_16_pp_01_modrmmod = +{ + ND_ILUT_MODRM_MOD, + { + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_16_pp_01_modrmmod_00_l, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_16_pp_01_modrmmod_01_l, + } +}; + +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_16_pp = +{ + ND_ILUT_EX_PP, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_16_pp_01_modrmmod, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_15_pp_01_modrmmod_01_l_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 3617] // VPEXTRW Ry,Vdq,Ib +}; + +const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_15_pp_01_modrmmod_01_l = +{ + ND_ILUT_EX_L, + { + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_15_pp_01_modrmmod_01_l_00_leaf, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_15_pp_01_modrmmod_00_l_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 3616] // VPEXTRW Mw,Vdq,Ib +}; + +const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_15_pp_01_modrmmod_00_l = +{ + ND_ILUT_EX_L, + { + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_15_pp_01_modrmmod_00_l_00_leaf, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_03_opcode_15_pp_01_modrmmod = +{ + ND_ILUT_MODRM_MOD, + { + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_15_pp_01_modrmmod_00_l, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_15_pp_01_modrmmod_01_l, + } +}; + +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_15_pp = +{ + ND_ILUT_EX_PP, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_15_pp_01_modrmmod, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_14_pp_01_modrmmod_01_l_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 3603] // VPEXTRB Ry,Vdq,Ib +}; + +const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_14_pp_01_modrmmod_01_l = +{ + ND_ILUT_EX_L, + { + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_14_pp_01_modrmmod_01_l_00_leaf, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_14_pp_01_modrmmod_00_l_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 3602] // VPEXTRB Mb,Vdq,Ib +}; + +const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_14_pp_01_modrmmod_00_l = +{ + ND_ILUT_EX_L, + { + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_14_pp_01_modrmmod_00_l_00_leaf, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_03_opcode_14_pp_01_modrmmod = +{ + ND_ILUT_MODRM_MOD, + { + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_14_pp_01_modrmmod_00_l, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_14_pp_01_modrmmod_01_l, + } +}; + +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_14_pp = +{ + ND_ILUT_EX_PP, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_14_pp_01_modrmmod, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_0f_pp_01_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 3446] // VPALIGNR Vx,Hx,Wx,Ib +}; + +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_0f_pp = +{ + ND_ILUT_EX_PP, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_0f_pp_01_leaf, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_0e_pp_01_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 3463] // VPBLENDW Vx,Hx,Wx,Ib +}; + +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_0e_pp = +{ + ND_ILUT_EX_PP, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_0e_pp_01_leaf, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_0d_pp_01_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 2723] // VBLENDPD Vx,Hx,Wx,Ib +}; + +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_0d_pp = +{ + ND_ILUT_EX_PP, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_0d_pp_01_leaf, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_0c_pp_01_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 2724] // VBLENDPS Vx,Hx,Wx,Ib +}; + +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_0c_pp = +{ + ND_ILUT_EX_PP, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_0c_pp_01_leaf, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_0b_pp_01_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 3999] // VROUNDSD Vsd,Hsd,Wsd,Ib +}; + +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_0b_pp = +{ + ND_ILUT_EX_PP, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_0b_pp_01_leaf, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_0a_pp_01_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 4000] // VROUNDSS Vss,Hss,Wss,Ib +}; + +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_0a_pp = +{ + ND_ILUT_EX_PP, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_0a_pp_01_leaf, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_09_pp_01_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 3997] // VROUNDPD Vx,Wx,Ib +}; + +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_09_pp = +{ + ND_ILUT_EX_PP, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_09_pp_01_leaf, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_08_pp_01_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 3998] // VROUNDPS Vx,Wx,Ib +}; + +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_08_pp = +{ + ND_ILUT_EX_PP, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_08_pp_01_leaf, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_06_pp_01_l_01_w_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 3556] // VPERM2F128 Vqq,Hqq,Wqq,Ib +}; + +const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_06_pp_01_l_01_w = +{ + ND_ILUT_EX_W, + { + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_06_pp_01_l_01_w_00_leaf, + /* 01 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_06_pp_01_l = +{ + ND_ILUT_EX_L, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_06_pp_01_l_01_w, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_06_pp = +{ + ND_ILUT_EX_PP, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_06_pp_01_l, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_05_pp_01_w_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 3574] // VPERMILPD Vx,Wx,Ib +}; + +const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_05_pp_01_w = +{ + ND_ILUT_EX_W, + { + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_05_pp_01_w_00_leaf, + /* 01 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_05_pp = +{ + ND_ILUT_EX_PP, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_05_pp_01_w, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_04_pp_01_w_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 3578] // VPERMILPS Vx,Wx,Ib +}; + +const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_04_pp_01_w = +{ + ND_ILUT_EX_W, + { + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_04_pp_01_w_00_leaf, + /* 01 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_04_pp = +{ + ND_ILUT_EX_PP, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_04_pp_01_w, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_02_pp_01_w_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 3457] // VPBLENDD Vx,Hx,Wx,Ib +}; + +const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_02_pp_01_w = +{ + ND_ILUT_EX_W, + { + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_02_pp_01_w_00_leaf, + /* 01 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_02_pp = +{ + ND_ILUT_EX_PP, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_02_pp_01_w, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_01_pp_01_l_01_w_01_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 3582] // VPERMPD Vqq,Wqq,Ib +}; + +const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_01_pp_01_l_01_w = +{ + ND_ILUT_EX_W, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_01_pp_01_l_01_w_01_leaf, + } +}; + +const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_01_pp_01_l = +{ + ND_ILUT_EX_L, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_01_pp_01_l_01_w, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_01_pp = +{ + ND_ILUT_EX_PP, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_01_pp_01_l, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_03_opcode_00_pp_01_l_01_w_01_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 3588] // VPERMQ Vqq,Wqq,Ib +}; + +const ND_TABLE_EX_W gVexMap_mmmmm_03_opcode_00_pp_01_l_01_w = +{ + ND_ILUT_EX_W, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_00_pp_01_l_01_w_01_leaf, + } +}; + +const ND_TABLE_EX_L gVexMap_mmmmm_03_opcode_00_pp_01_l = +{ + ND_ILUT_EX_L, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_00_pp_01_l_01_w, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_PP gVexMap_mmmmm_03_opcode_00_pp = +{ + ND_ILUT_EX_PP, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_00_pp_01_l, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_OPCODE gVexMap_mmmmm_03_opcode = +{ + ND_ILUT_OPCODE, + { + /* 00 */ (const void *)&gVexMap_mmmmm_03_opcode_00_pp, + /* 01 */ (const void *)&gVexMap_mmmmm_03_opcode_01_pp, + /* 02 */ (const void *)&gVexMap_mmmmm_03_opcode_02_pp, + /* 03 */ (const void *)ND_NULL, + /* 04 */ (const void *)&gVexMap_mmmmm_03_opcode_04_pp, + /* 05 */ (const void *)&gVexMap_mmmmm_03_opcode_05_pp, + /* 06 */ (const void *)&gVexMap_mmmmm_03_opcode_06_pp, + /* 07 */ (const void *)ND_NULL, + /* 08 */ (const void *)&gVexMap_mmmmm_03_opcode_08_pp, + /* 09 */ (const void *)&gVexMap_mmmmm_03_opcode_09_pp, + /* 0a */ (const void *)&gVexMap_mmmmm_03_opcode_0a_pp, + /* 0b */ (const void *)&gVexMap_mmmmm_03_opcode_0b_pp, + /* 0c */ (const void *)&gVexMap_mmmmm_03_opcode_0c_pp, + /* 0d */ (const void *)&gVexMap_mmmmm_03_opcode_0d_pp, + /* 0e */ (const void *)&gVexMap_mmmmm_03_opcode_0e_pp, + /* 0f */ (const void *)&gVexMap_mmmmm_03_opcode_0f_pp, + /* 10 */ (const void *)ND_NULL, + /* 11 */ (const void *)ND_NULL, + /* 12 */ (const void *)ND_NULL, + /* 13 */ (const void *)ND_NULL, + /* 14 */ (const void *)&gVexMap_mmmmm_03_opcode_14_pp, + /* 15 */ (const void *)&gVexMap_mmmmm_03_opcode_15_pp, + /* 16 */ (const void *)&gVexMap_mmmmm_03_opcode_16_pp, + /* 17 */ (const void *)&gVexMap_mmmmm_03_opcode_17_pp, + /* 18 */ (const void *)&gVexMap_mmmmm_03_opcode_18_pp, + /* 19 */ (const void *)&gVexMap_mmmmm_03_opcode_19_pp, + /* 1a */ (const void *)ND_NULL, + /* 1b */ (const void *)ND_NULL, + /* 1c */ (const void *)ND_NULL, + /* 1d */ (const void *)&gVexMap_mmmmm_03_opcode_1d_pp, + /* 1e */ (const void *)ND_NULL, + /* 1f */ (const void *)ND_NULL, + /* 20 */ (const void *)&gVexMap_mmmmm_03_opcode_20_pp, + /* 21 */ (const void *)&gVexMap_mmmmm_03_opcode_21_pp, + /* 22 */ (const void *)&gVexMap_mmmmm_03_opcode_22_pp, + /* 23 */ (const void *)ND_NULL, + /* 24 */ (const void *)ND_NULL, + /* 25 */ (const void *)ND_NULL, + /* 26 */ (const void *)ND_NULL, + /* 27 */ (const void *)ND_NULL, + /* 28 */ (const void *)ND_NULL, + /* 29 */ (const void *)ND_NULL, + /* 2a */ (const void *)ND_NULL, + /* 2b */ (const void *)ND_NULL, + /* 2c */ (const void *)ND_NULL, + /* 2d */ (const void *)ND_NULL, + /* 2e */ (const void *)ND_NULL, + /* 2f */ (const void *)ND_NULL, + /* 30 */ (const void *)&gVexMap_mmmmm_03_opcode_30_pp, + /* 31 */ (const void *)&gVexMap_mmmmm_03_opcode_31_pp, + /* 32 */ (const void *)&gVexMap_mmmmm_03_opcode_32_pp, + /* 33 */ (const void *)&gVexMap_mmmmm_03_opcode_33_pp, + /* 34 */ (const void *)ND_NULL, + /* 35 */ (const void *)ND_NULL, + /* 36 */ (const void *)ND_NULL, + /* 37 */ (const void *)ND_NULL, + /* 38 */ (const void *)&gVexMap_mmmmm_03_opcode_38_pp, + /* 39 */ (const void *)&gVexMap_mmmmm_03_opcode_39_pp, + /* 3a */ (const void *)ND_NULL, + /* 3b */ (const void *)ND_NULL, + /* 3c */ (const void *)ND_NULL, + /* 3d */ (const void *)ND_NULL, + /* 3e */ (const void *)ND_NULL, + /* 3f */ (const void *)ND_NULL, + /* 40 */ (const void *)&gVexMap_mmmmm_03_opcode_40_pp, + /* 41 */ (const void *)&gVexMap_mmmmm_03_opcode_41_pp, + /* 42 */ (const void *)&gVexMap_mmmmm_03_opcode_42_pp, + /* 43 */ (const void *)ND_NULL, + /* 44 */ (const void *)&gVexMap_mmmmm_03_opcode_44_pp, + /* 45 */ (const void *)ND_NULL, + /* 46 */ (const void *)&gVexMap_mmmmm_03_opcode_46_pp, + /* 47 */ (const void *)ND_NULL, + /* 48 */ (const void *)&gVexMap_mmmmm_03_opcode_48_pp, + /* 49 */ (const void *)&gVexMap_mmmmm_03_opcode_49_pp, + /* 4a */ (const void *)&gVexMap_mmmmm_03_opcode_4a_pp, + /* 4b */ (const void *)&gVexMap_mmmmm_03_opcode_4b_pp, + /* 4c */ (const void *)&gVexMap_mmmmm_03_opcode_4c_pp, + /* 4d */ (const void *)ND_NULL, + /* 4e */ (const void *)ND_NULL, + /* 4f */ (const void *)ND_NULL, + /* 50 */ (const void *)ND_NULL, + /* 51 */ (const void *)ND_NULL, + /* 52 */ (const void *)ND_NULL, + /* 53 */ (const void *)ND_NULL, + /* 54 */ (const void *)ND_NULL, + /* 55 */ (const void *)ND_NULL, + /* 56 */ (const void *)ND_NULL, + /* 57 */ (const void *)ND_NULL, + /* 58 */ (const void *)ND_NULL, + /* 59 */ (const void *)ND_NULL, + /* 5a */ (const void *)ND_NULL, + /* 5b */ (const void *)ND_NULL, + /* 5c */ (const void *)&gVexMap_mmmmm_03_opcode_5c_pp, + /* 5d */ (const void *)&gVexMap_mmmmm_03_opcode_5d_pp, + /* 5e */ (const void *)&gVexMap_mmmmm_03_opcode_5e_pp, + /* 5f */ (const void *)&gVexMap_mmmmm_03_opcode_5f_pp, + /* 60 */ (const void *)&gVexMap_mmmmm_03_opcode_60_pp, + /* 61 */ (const void *)&gVexMap_mmmmm_03_opcode_61_pp, + /* 62 */ (const void *)&gVexMap_mmmmm_03_opcode_62_pp, + /* 63 */ (const void *)&gVexMap_mmmmm_03_opcode_63_pp, + /* 64 */ (const void *)ND_NULL, + /* 65 */ (const void *)ND_NULL, /* 66 */ (const void *)ND_NULL, /* 67 */ (const void *)ND_NULL, /* 68 */ (const void *)&gVexMap_mmmmm_03_opcode_68_pp, @@ -2932,2916 +3619,3345 @@ const ND_TABLE_OPCODE gVexMap_mmmmm_03_opcode = } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_f7_pp_03_l_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_f7_pp_03_l_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 2495] // SHRX Gy,Ey,By +}; + +const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_f7_pp_03_l = +{ + ND_ILUT_EX_L, + { + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_f7_pp_03_l_00_leaf, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_f7_pp_02_l_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 2283] // SARX Gy,Ey,By +}; + +const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_f7_pp_02_l = +{ + ND_ILUT_EX_L, + { + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_f7_pp_02_l_00_leaf, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_f7_pp_01_l_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 2433] // SHLX Gy,Ey,By +}; + +const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_f7_pp_01_l = +{ + ND_ILUT_EX_L, + { + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_f7_pp_01_l_00_leaf, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_f7_pp_00_l_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 188] // BEXTR Gy,Ey,By +}; + +const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_f7_pp_00_l = +{ + ND_ILUT_EX_L, + { + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_f7_pp_00_l_00_leaf, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_f7_pp = +{ + ND_ILUT_EX_PP, + { + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_f7_pp_00_l, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_f7_pp_01_l, + /* 02 */ (const void *)&gVexMap_mmmmm_02_opcode_f7_pp_02_l, + /* 03 */ (const void *)&gVexMap_mmmmm_02_opcode_f7_pp_03_l, + } +}; + +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_f6_pp_03_l_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 1486] // MULX Gy,By,Ey +}; + +const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_f6_pp_03_l = +{ + ND_ILUT_EX_L, + { + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_f6_pp_03_l_00_leaf, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_f6_pp = +{ + ND_ILUT_EX_PP, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)&gVexMap_mmmmm_02_opcode_f6_pp_03_l, + } +}; + +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_f5_pp_03_l_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 1713] // PDEP Gy,By,Ey +}; + +const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_f5_pp_03_l = +{ + ND_ILUT_EX_L, + { + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_f5_pp_03_l_00_leaf, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_f5_pp_02_l_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 1715] // PEXT Gy,By,Ey +}; + +const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_f5_pp_02_l = +{ + ND_ILUT_EX_L, + { + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_f5_pp_02_l_00_leaf, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_f5_pp_00_l_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 239] // BZHI Gy,Ey,By +}; + +const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_f5_pp_00_l = +{ + ND_ILUT_EX_L, + { + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_f5_pp_00_l_00_leaf, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_f5_pp = +{ + ND_ILUT_EX_PP, + { + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_f5_pp_00_l, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)&gVexMap_mmmmm_02_opcode_f5_pp_02_l, + /* 03 */ (const void *)&gVexMap_mmmmm_02_opcode_f5_pp_03_l, + } +}; + +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_f3_pp_00_modrmreg_03_l_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 202] // BLSI By,Ey +}; + +const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_f3_pp_00_modrmreg_03_l = +{ + ND_ILUT_EX_L, + { + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_f3_pp_00_modrmreg_03_l_00_leaf, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_f3_pp_00_modrmreg_02_l_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 206] // BLSMSK By,Ey +}; + +const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_f3_pp_00_modrmreg_02_l = +{ + ND_ILUT_EX_L, + { + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_f3_pp_00_modrmreg_02_l_00_leaf, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_f3_pp_00_modrmreg_01_l_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 209] // BLSR By,Ey +}; + +const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_f3_pp_00_modrmreg_01_l = +{ + ND_ILUT_EX_L, + { + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_f3_pp_00_modrmreg_01_l_00_leaf, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_MODRM_REG gVexMap_mmmmm_02_opcode_f3_pp_00_modrmreg = +{ + ND_ILUT_MODRM_REG, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_f3_pp_00_modrmreg_01_l, + /* 02 */ (const void *)&gVexMap_mmmmm_02_opcode_f3_pp_00_modrmreg_02_l, + /* 03 */ (const void *)&gVexMap_mmmmm_02_opcode_f3_pp_00_modrmreg_03_l, + /* 04 */ (const void *)ND_NULL, + /* 05 */ (const void *)ND_NULL, + /* 06 */ (const void *)ND_NULL, + /* 07 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_f3_pp = +{ + ND_ILUT_EX_PP, + { + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_f3_pp_00_modrmreg, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_f2_pp_00_l_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 176] // ANDN Gy,By,Ey +}; + +const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_f2_pp_00_l = +{ + ND_ILUT_EX_L, + { + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_f2_pp_00_l_00_leaf, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_f2_pp = +{ + ND_ILUT_EX_PP, + { + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_f2_pp_00_l, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_ef_pp_01_modrmmod_00_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2489] // SHRX Gy,Ey,By + (const void *)&gInstructions[ 638] // CMPNLEXADD My,Gy,By }; -const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_f7_pp_03_l = +const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_ef_pp_01_modrmmod_00_l = { ND_ILUT_EX_L, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_f7_pp_03_l_00_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_ef_pp_01_modrmmod_00_l_00_leaf, /* 01 */ (const void *)ND_NULL, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_f7_pp_02_l_00_leaf = +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_ef_pp_01_modrmmod = { - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2277] // SARX Gy,Ey,By + ND_ILUT_MODRM_MOD, + { + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_ef_pp_01_modrmmod_00_l, + /* 01 */ (const void *)ND_NULL, + } }; -const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_f7_pp_02_l = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_ef_pp = { - ND_ILUT_EX_L, + ND_ILUT_EX_PP, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_f7_pp_02_l_00_leaf, - /* 01 */ (const void *)ND_NULL, + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_ef_pp_01_modrmmod, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_f7_pp_01_l_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_ee_pp_01_modrmmod_00_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2427] // SHLX Gy,Ey,By + (const void *)&gInstructions[ 630] // CMPLEXADD My,Gy,By }; -const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_f7_pp_01_l = +const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_ee_pp_01_modrmmod_00_l = { ND_ILUT_EX_L, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_f7_pp_01_l_00_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_ee_pp_01_modrmmod_00_l_00_leaf, /* 01 */ (const void *)ND_NULL, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_f7_pp_00_l_00_leaf = +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_ee_pp_01_modrmmod = +{ + ND_ILUT_MODRM_MOD, + { + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_ee_pp_01_modrmmod_00_l, + /* 01 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_ee_pp = +{ + ND_ILUT_EX_PP, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_ee_pp_01_modrmmod, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_ed_pp_01_modrmmod_00_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 188] // BEXTR Gy,Ey,By + (const void *)&gInstructions[ 640] // CMPNLXADD My,Gy,By }; -const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_f7_pp_00_l = +const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_ed_pp_01_modrmmod_00_l = { ND_ILUT_EX_L, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_f7_pp_00_l_00_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_ed_pp_01_modrmmod_00_l_00_leaf, /* 01 */ (const void *)ND_NULL, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_f7_pp = +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_ed_pp_01_modrmmod = +{ + ND_ILUT_MODRM_MOD, + { + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_ed_pp_01_modrmmod_00_l, + /* 01 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_ed_pp = { ND_ILUT_EX_PP, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_f7_pp_00_l, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_f7_pp_01_l, - /* 02 */ (const void *)&gVexMap_mmmmm_02_opcode_f7_pp_02_l, - /* 03 */ (const void *)&gVexMap_mmmmm_02_opcode_f7_pp_03_l, + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_ed_pp_01_modrmmod, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_f6_pp_03_l_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_ec_pp_01_modrmmod_00_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1484] // MULX Gy,By,Ey + (const void *)&gInstructions[ 632] // CMPLXADD My,Gy,By }; -const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_f6_pp_03_l = +const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_ec_pp_01_modrmmod_00_l = { ND_ILUT_EX_L, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_f6_pp_03_l_00_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_ec_pp_01_modrmmod_00_l_00_leaf, /* 01 */ (const void *)ND_NULL, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_f6_pp = +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_ec_pp_01_modrmmod = +{ + ND_ILUT_MODRM_MOD, + { + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_ec_pp_01_modrmmod_00_l, + /* 01 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_ec_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_ec_pp_01_modrmmod, /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)&gVexMap_mmmmm_02_opcode_f6_pp_03_l, + /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_f5_pp_03_l_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_eb_pp_01_modrmmod_00_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1711] // PDEP Gy,By,Ey + (const void *)&gInstructions[ 644] // CMPNPXADD My,Gy,By }; -const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_f5_pp_03_l = +const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_eb_pp_01_modrmmod_00_l = { ND_ILUT_EX_L, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_f5_pp_03_l_00_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_eb_pp_01_modrmmod_00_l_00_leaf, /* 01 */ (const void *)ND_NULL, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_f5_pp_02_l_00_leaf = +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_eb_pp_01_modrmmod = { - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 1713] // PEXT Gy,By,Ey + ND_ILUT_MODRM_MOD, + { + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_eb_pp_01_modrmmod_00_l, + /* 01 */ (const void *)ND_NULL, + } }; -const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_f5_pp_02_l = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_eb_pp = { - ND_ILUT_EX_L, + ND_ILUT_EX_PP, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_f5_pp_02_l_00_leaf, - /* 01 */ (const void *)ND_NULL, + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_eb_pp_01_modrmmod, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_f5_pp_00_l_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_ea_pp_01_modrmmod_00_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 239] // BZHI Gy,Ey,By + (const void *)&gInstructions[ 654] // CMPPXADD My,Gy,By }; -const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_f5_pp_00_l = +const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_ea_pp_01_modrmmod_00_l = { ND_ILUT_EX_L, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_f5_pp_00_l_00_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_ea_pp_01_modrmmod_00_l_00_leaf, /* 01 */ (const void *)ND_NULL, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_f5_pp = +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_ea_pp_01_modrmmod = { - ND_ILUT_EX_PP, + ND_ILUT_MODRM_MOD, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_f5_pp_00_l, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_ea_pp_01_modrmmod_00_l, /* 01 */ (const void *)ND_NULL, - /* 02 */ (const void *)&gVexMap_mmmmm_02_opcode_f5_pp_02_l, - /* 03 */ (const void *)&gVexMap_mmmmm_02_opcode_f5_pp_03_l, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_f3_pp_00_modrmreg_03_l_00_leaf = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_ea_pp = +{ + ND_ILUT_EX_PP, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_ea_pp_01_modrmmod, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_e9_pp_01_modrmmod_00_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 202] // BLSI By,Ey + (const void *)&gInstructions[ 646] // CMPNSXADD My,Gy,By }; -const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_f3_pp_00_modrmreg_03_l = +const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_e9_pp_01_modrmmod_00_l = { ND_ILUT_EX_L, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_f3_pp_00_modrmreg_03_l_00_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_e9_pp_01_modrmmod_00_l_00_leaf, /* 01 */ (const void *)ND_NULL, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_f3_pp_00_modrmreg_02_l_00_leaf = +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_e9_pp_01_modrmmod = { - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 206] // BLSMSK By,Ey + ND_ILUT_MODRM_MOD, + { + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_e9_pp_01_modrmmod_00_l, + /* 01 */ (const void *)ND_NULL, + } }; -const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_f3_pp_00_modrmreg_02_l = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_e9_pp = { - ND_ILUT_EX_L, + ND_ILUT_EX_PP, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_f3_pp_00_modrmreg_02_l_00_leaf, - /* 01 */ (const void *)ND_NULL, + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_e9_pp_01_modrmmod, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_f3_pp_00_modrmreg_01_l_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_e8_pp_01_modrmmod_00_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 209] // BLSR By,Ey + (const void *)&gInstructions[ 666] // CMPSXADD My,Gy,By }; -const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_f3_pp_00_modrmreg_01_l = +const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_e8_pp_01_modrmmod_00_l = { ND_ILUT_EX_L, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_f3_pp_00_modrmreg_01_l_00_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_e8_pp_01_modrmmod_00_l_00_leaf, /* 01 */ (const void *)ND_NULL, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_MODRM_REG gVexMap_mmmmm_02_opcode_f3_pp_00_modrmreg = +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_e8_pp_01_modrmmod = { - ND_ILUT_MODRM_REG, + ND_ILUT_MODRM_MOD, { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_f3_pp_00_modrmreg_01_l, - /* 02 */ (const void *)&gVexMap_mmmmm_02_opcode_f3_pp_00_modrmreg_02_l, - /* 03 */ (const void *)&gVexMap_mmmmm_02_opcode_f3_pp_00_modrmreg_03_l, - /* 04 */ (const void *)ND_NULL, - /* 05 */ (const void *)ND_NULL, - /* 06 */ (const void *)ND_NULL, - /* 07 */ (const void *)ND_NULL, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_e8_pp_01_modrmmod_00_l, + /* 01 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_f3_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_e8_pp = { ND_ILUT_EX_PP, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_f3_pp_00_modrmreg, - /* 01 */ (const void *)ND_NULL, + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_e8_pp_01_modrmmod, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_f2_pp_00_l_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_e7_pp_01_modrmmod_00_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 176] // ANDN Gy,By,Ey + (const void *)&gInstructions[ 634] // CMPNBEXADD My,Gy,By }; -const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_f2_pp_00_l = +const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_e7_pp_01_modrmmod_00_l = { ND_ILUT_EX_L, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_f2_pp_00_l_00_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_e7_pp_01_modrmmod_00_l_00_leaf, /* 01 */ (const void *)ND_NULL, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_f2_pp = +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_e7_pp_01_modrmmod = { - ND_ILUT_EX_PP, + ND_ILUT_MODRM_MOD, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_f2_pp_00_l, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_e7_pp_01_modrmmod_00_l, /* 01 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_e7_pp = +{ + ND_ILUT_EX_PP, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_e7_pp_01_modrmmod, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_ef_pp_01_modrmmod_00_l_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_e6_pp_01_modrmmod_00_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 638] // CMPNLEXADD My,Gy,By + (const void *)&gInstructions[ 626] // CMPBEXADD My,Gy,By }; -const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_ef_pp_01_modrmmod_00_l = +const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_e6_pp_01_modrmmod_00_l = { ND_ILUT_EX_L, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_ef_pp_01_modrmmod_00_l_00_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_e6_pp_01_modrmmod_00_l_00_leaf, /* 01 */ (const void *)ND_NULL, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_ef_pp_01_modrmmod = +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_e6_pp_01_modrmmod = { ND_ILUT_MODRM_MOD, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_ef_pp_01_modrmmod_00_l, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_e6_pp_01_modrmmod_00_l, /* 01 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_ef_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_e6_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_ef_pp_01_modrmmod, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_e6_pp_01_modrmmod, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_ee_pp_01_modrmmod_00_l_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_e5_pp_01_modrmmod_00_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 630] // CMPLEXADD My,Gy,By + (const void *)&gInstructions[ 648] // CMPNZXADD My,Gy,By }; -const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_ee_pp_01_modrmmod_00_l = +const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_e5_pp_01_modrmmod_00_l = { ND_ILUT_EX_L, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_ee_pp_01_modrmmod_00_l_00_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_e5_pp_01_modrmmod_00_l_00_leaf, /* 01 */ (const void *)ND_NULL, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_ee_pp_01_modrmmod = +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_e5_pp_01_modrmmod = { ND_ILUT_MODRM_MOD, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_ee_pp_01_modrmmod_00_l, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_e5_pp_01_modrmmod_00_l, /* 01 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_ee_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_e5_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_ee_pp_01_modrmmod, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_e5_pp_01_modrmmod, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_ed_pp_01_modrmmod_00_l_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_e4_pp_01_modrmmod_00_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 640] // CMPNLXADD My,Gy,By + (const void *)&gInstructions[ 672] // CMPZXADD My,Gy,By }; -const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_ed_pp_01_modrmmod_00_l = +const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_e4_pp_01_modrmmod_00_l = { ND_ILUT_EX_L, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_ed_pp_01_modrmmod_00_l_00_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_e4_pp_01_modrmmod_00_l_00_leaf, /* 01 */ (const void *)ND_NULL, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_ed_pp_01_modrmmod = +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_e4_pp_01_modrmmod = { ND_ILUT_MODRM_MOD, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_ed_pp_01_modrmmod_00_l, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_e4_pp_01_modrmmod_00_l, /* 01 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_ed_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_e4_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_ed_pp_01_modrmmod, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_e4_pp_01_modrmmod, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_ec_pp_01_modrmmod_00_l_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_e3_pp_01_modrmmod_00_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 632] // CMPLXADD My,Gy,By + (const void *)&gInstructions[ 636] // CMPNCXADD My,Gy,By }; -const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_ec_pp_01_modrmmod_00_l = +const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_e3_pp_01_modrmmod_00_l = { ND_ILUT_EX_L, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_ec_pp_01_modrmmod_00_l_00_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_e3_pp_01_modrmmod_00_l_00_leaf, /* 01 */ (const void *)ND_NULL, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_ec_pp_01_modrmmod = +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_e3_pp_01_modrmmod = { ND_ILUT_MODRM_MOD, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_ec_pp_01_modrmmod_00_l, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_e3_pp_01_modrmmod_00_l, /* 01 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_ec_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_e3_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_ec_pp_01_modrmmod, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_e3_pp_01_modrmmod, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_eb_pp_01_modrmmod_00_l_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_e2_pp_01_modrmmod_00_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 644] // CMPNPXADD My,Gy,By + (const void *)&gInstructions[ 628] // CMPCXADD My,Gy,By }; -const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_eb_pp_01_modrmmod_00_l = +const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_e2_pp_01_modrmmod_00_l = { ND_ILUT_EX_L, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_eb_pp_01_modrmmod_00_l_00_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_e2_pp_01_modrmmod_00_l_00_leaf, /* 01 */ (const void *)ND_NULL, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_eb_pp_01_modrmmod = +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_e2_pp_01_modrmmod = { ND_ILUT_MODRM_MOD, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_eb_pp_01_modrmmod_00_l, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_e2_pp_01_modrmmod_00_l, /* 01 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_eb_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_e2_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_eb_pp_01_modrmmod, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_e2_pp_01_modrmmod, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_ea_pp_01_modrmmod_00_l_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_e1_pp_01_modrmmod_00_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 654] // CMPPXADD My,Gy,By + (const void *)&gInstructions[ 642] // CMPNOXADD My,Gy,By }; -const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_ea_pp_01_modrmmod_00_l = +const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_e1_pp_01_modrmmod_00_l = { ND_ILUT_EX_L, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_ea_pp_01_modrmmod_00_l_00_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_e1_pp_01_modrmmod_00_l_00_leaf, /* 01 */ (const void *)ND_NULL, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_ea_pp_01_modrmmod = +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_e1_pp_01_modrmmod = { ND_ILUT_MODRM_MOD, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_ea_pp_01_modrmmod_00_l, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_e1_pp_01_modrmmod_00_l, /* 01 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_ea_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_e1_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_ea_pp_01_modrmmod, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_e1_pp_01_modrmmod, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_e9_pp_01_modrmmod_00_l_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_e0_pp_01_modrmmod_00_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 646] // CMPNSXADD My,Gy,By + (const void *)&gInstructions[ 650] // CMPOXADD My,Gy,By }; -const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_e9_pp_01_modrmmod_00_l = +const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_e0_pp_01_modrmmod_00_l = { ND_ILUT_EX_L, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_e9_pp_01_modrmmod_00_l_00_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_e0_pp_01_modrmmod_00_l_00_leaf, /* 01 */ (const void *)ND_NULL, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_e9_pp_01_modrmmod = +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_e0_pp_01_modrmmod = { ND_ILUT_MODRM_MOD, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_e9_pp_01_modrmmod_00_l, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_e0_pp_01_modrmmod_00_l, /* 01 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_e9_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_e0_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_e9_pp_01_modrmmod, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_e0_pp_01_modrmmod, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_e8_pp_01_modrmmod_00_l_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_df_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 666] // CMPSXADD My,Gy,By + (const void *)&gInstructions[ 2702] // VAESDECLAST Vx,Hx,Wx }; -const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_e8_pp_01_modrmmod_00_l = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_df_pp = { - ND_ILUT_EX_L, + ND_ILUT_EX_PP, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_e8_pp_01_modrmmod_00_l_00_leaf, - /* 01 */ (const void *)ND_NULL, + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_df_pp_01_leaf, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_e8_pp_01_modrmmod = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_de_pp_01_leaf = { - ND_ILUT_MODRM_MOD, - { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_e8_pp_01_modrmmod_00_l, - /* 01 */ (const void *)ND_NULL, - } + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 2700] // VAESDEC Vx,Hx,Wx }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_e8_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_de_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_e8_pp_01_modrmmod, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_de_pp_01_leaf, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_e7_pp_01_modrmmod_00_l_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_dd_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 634] // CMPNBEXADD My,Gy,By + (const void *)&gInstructions[ 2706] // VAESENCLAST Vx,Hx,Wx }; -const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_e7_pp_01_modrmmod_00_l = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_dd_pp = { - ND_ILUT_EX_L, + ND_ILUT_EX_PP, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_e7_pp_01_modrmmod_00_l_00_leaf, - /* 01 */ (const void *)ND_NULL, + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_dd_pp_01_leaf, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_e7_pp_01_modrmmod = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_dc_pp_01_leaf = { - ND_ILUT_MODRM_MOD, - { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_e7_pp_01_modrmmod_00_l, - /* 01 */ (const void *)ND_NULL, - } + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 2704] // VAESENC Vx,Hx,Wx }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_e7_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_dc_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_e7_pp_01_modrmmod, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_dc_pp_01_leaf, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_e6_pp_01_modrmmod_00_l_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_db_pp_01_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 626] // CMPBEXADD My,Gy,By + (const void *)&gInstructions[ 2707] // VAESIMC Vdq,Wdq }; -const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_e6_pp_01_modrmmod_00_l = +const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_db_pp_01_l = { ND_ILUT_EX_L, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_e6_pp_01_modrmmod_00_l_00_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_db_pp_01_l_00_leaf, /* 01 */ (const void *)ND_NULL, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_e6_pp_01_modrmmod = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_db_pp = { - ND_ILUT_MODRM_MOD, + ND_ILUT_EX_PP, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_e6_pp_01_modrmmod_00_l, - /* 01 */ (const void *)ND_NULL, + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_db_pp_01_l, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_e6_pp = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_da_pp_03_w_00_leaf = { - ND_ILUT_EX_PP, + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 4050] // VSM4RNDS4 Vx,Hx,Wx +}; + +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_da_pp_03_w = +{ + ND_ILUT_EX_W, { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_e6_pp_01_modrmmod, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)ND_NULL, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_da_pp_03_w_00_leaf, + /* 01 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_e5_pp_01_modrmmod_00_l_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_da_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 648] // CMPNZXADD My,Gy,By + (const void *)&gInstructions[ 4048] // VSM4KEY4 Vx,Hx,Wx }; -const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_e5_pp_01_modrmmod_00_l = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_da_pp_02_w = { - ND_ILUT_EX_L, + ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_e5_pp_01_modrmmod_00_l_00_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_da_pp_02_w_00_leaf, /* 01 */ (const void *)ND_NULL, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_e5_pp_01_modrmmod = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_da_pp_01_l_00_w_00_leaf = { - ND_ILUT_MODRM_MOD, + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 4045] // VSM3MSG2 Vdq,Hdq,Wdq +}; + +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_da_pp_01_l_00_w = +{ + ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_e5_pp_01_modrmmod_00_l, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_da_pp_01_l_00_w_00_leaf, /* 01 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_e5_pp = +const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_da_pp_01_l = { - ND_ILUT_EX_PP, + ND_ILUT_EX_L, { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_e5_pp_01_modrmmod, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_da_pp_01_l_00_w, + /* 01 */ (const void *)ND_NULL, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_e4_pp_01_modrmmod_00_l_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_da_pp_00_l_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 672] // CMPZXADD My,Gy,By + (const void *)&gInstructions[ 4044] // VSM3MSG1 Vdq,Hdq,Wdq }; -const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_e4_pp_01_modrmmod_00_l = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_da_pp_00_l_00_w = +{ + ND_ILUT_EX_W, + { + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_da_pp_00_l_00_w_00_leaf, + /* 01 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_da_pp_00_l = { ND_ILUT_EX_L, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_e4_pp_01_modrmmod_00_l_00_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_da_pp_00_l_00_w, /* 01 */ (const void *)ND_NULL, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_e4_pp_01_modrmmod = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_da_pp = { - ND_ILUT_MODRM_MOD, + ND_ILUT_EX_PP, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_e4_pp_01_modrmmod_00_l, - /* 01 */ (const void *)ND_NULL, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_da_pp_00_l, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_da_pp_01_l, + /* 02 */ (const void *)&gVexMap_mmmmm_02_opcode_da_pp_02_w, + /* 03 */ (const void *)&gVexMap_mmmmm_02_opcode_da_pp_03_w, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_e4_pp = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_d3_pp_02_w_00_leaf = { - ND_ILUT_EX_PP, + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 3547] // VPDPWSUDS Vx,Hx,Wx +}; + +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_d3_pp_02_w = +{ + ND_ILUT_EX_W, { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_e4_pp_01_modrmmod, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)ND_NULL, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_d3_pp_02_w_00_leaf, + /* 01 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_e3_pp_01_modrmmod_00_l_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_d3_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 636] // CMPNCXADD My,Gy,By + (const void *)&gInstructions[ 3551] // VPDPWUSDS Vx,Hx,Wx }; -const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_e3_pp_01_modrmmod_00_l = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_d3_pp_01_w = { - ND_ILUT_EX_L, + ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_e3_pp_01_modrmmod_00_l_00_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_d3_pp_01_w_00_leaf, /* 01 */ (const void *)ND_NULL, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_e3_pp_01_modrmmod = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_d3_pp_00_w_00_leaf = { - ND_ILUT_MODRM_MOD, + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 3555] // VPDPWUUDS Vx,Hx,Wx +}; + +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_d3_pp_00_w = +{ + ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_e3_pp_01_modrmmod_00_l, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_d3_pp_00_w_00_leaf, /* 01 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_e3_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_d3_pp = { ND_ILUT_EX_PP, { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_e3_pp_01_modrmmod, - /* 02 */ (const void *)ND_NULL, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_d3_pp_00_w, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_d3_pp_01_w, + /* 02 */ (const void *)&gVexMap_mmmmm_02_opcode_d3_pp_02_w, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_e2_pp_01_modrmmod_00_l_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_d2_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 628] // CMPCXADD My,Gy,By + (const void *)&gInstructions[ 3545] // VPDPWSUD Vx,Hx,Wx }; -const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_e2_pp_01_modrmmod_00_l = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_d2_pp_02_w = { - ND_ILUT_EX_L, + ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_e2_pp_01_modrmmod_00_l_00_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_d2_pp_02_w_00_leaf, /* 01 */ (const void *)ND_NULL, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_e2_pp_01_modrmmod = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_d2_pp_01_w_00_leaf = { - ND_ILUT_MODRM_MOD, - { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_e2_pp_01_modrmmod_00_l, - /* 01 */ (const void *)ND_NULL, - } + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 3549] // VPDPWUSD Vx,Hx,Wx }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_e2_pp = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_d2_pp_01_w = { - ND_ILUT_EX_PP, + ND_ILUT_EX_W, { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_e2_pp_01_modrmmod, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)ND_NULL, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_d2_pp_01_w_00_leaf, + /* 01 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_e1_pp_01_modrmmod_00_l_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_d2_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 642] // CMPNOXADD My,Gy,By + (const void *)&gInstructions[ 3553] // VPDPWUUD Vx,Hx,Wx }; -const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_e1_pp_01_modrmmod_00_l = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_d2_pp_00_w = { - ND_ILUT_EX_L, + ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_e1_pp_01_modrmmod_00_l_00_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_d2_pp_00_w_00_leaf, /* 01 */ (const void *)ND_NULL, - /* 02 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_d2_pp = +{ + ND_ILUT_EX_PP, + { + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_d2_pp_00_w, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_d2_pp_01_w, + /* 02 */ (const void *)&gVexMap_mmmmm_02_opcode_d2_pp_02_w, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_e1_pp_01_modrmmod = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_cf_pp_01_w_00_leaf = { - ND_ILUT_MODRM_MOD, + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 3205] // VGF2P8MULB Vx,Hx,Wx +}; + +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_cf_pp_01_w = +{ + ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_e1_pp_01_modrmmod_00_l, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_cf_pp_01_w_00_leaf, /* 01 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_e1_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_cf_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_e1_pp_01_modrmmod, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_cf_pp_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_e0_pp_01_modrmmod_00_l_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_cd_pp_03_modrmmod_01_l_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 650] // CMPOXADD My,Gy,By -}; - -const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_e0_pp_01_modrmmod_00_l = -{ - ND_ILUT_EX_L, - { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_e0_pp_01_modrmmod_00_l_00_leaf, - /* 01 */ (const void *)ND_NULL, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)ND_NULL, - } + (const void *)&gInstructions[ 4034] // VSHA512MSG2 Vqq,Uqq }; -const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_e0_pp_01_modrmmod = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_cd_pp_03_modrmmod_01_l_01_w = { - ND_ILUT_MODRM_MOD, + ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_e0_pp_01_modrmmod_00_l, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_cd_pp_03_modrmmod_01_l_01_w_00_leaf, /* 01 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_e0_pp = +const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_cd_pp_03_modrmmod_01_l = { - ND_ILUT_EX_PP, + ND_ILUT_EX_L, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_e0_pp_01_modrmmod, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_cd_pp_03_modrmmod_01_l_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_df_pp_01_leaf = +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_cd_pp_03_modrmmod = { - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2661] // VAESDECLAST Vx,Hx,Wx + ND_ILUT_MODRM_MOD, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_cd_pp_03_modrmmod_01_l, + } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_df_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_cd_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_df_pp_01_leaf, + /* 01 */ (const void *)ND_NULL, /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)ND_NULL, + /* 03 */ (const void *)&gVexMap_mmmmm_02_opcode_cd_pp_03_modrmmod, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_de_pp_01_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_cc_pp_03_modrmmod_01_l_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2659] // VAESDEC Vx,Hx,Wx + (const void *)&gInstructions[ 4033] // VSHA512MSG1 Vqq,Udq }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_de_pp = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_cc_pp_03_modrmmod_01_l_01_w = { - ND_ILUT_EX_PP, + ND_ILUT_EX_W, { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_de_pp_01_leaf, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)ND_NULL, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_cc_pp_03_modrmmod_01_l_01_w_00_leaf, + /* 01 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_dd_pp_01_leaf = -{ - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2665] // VAESENCLAST Vx,Hx,Wx -}; - -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_dd_pp = +const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_cc_pp_03_modrmmod_01_l = { - ND_ILUT_EX_PP, + ND_ILUT_EX_L, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_dd_pp_01_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_cc_pp_03_modrmmod_01_l_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_dc_pp_01_leaf = +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_cc_pp_03_modrmmod = { - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2663] // VAESENC Vx,Hx,Wx + ND_ILUT_MODRM_MOD, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_cc_pp_03_modrmmod_01_l, + } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_dc_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_cc_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_dc_pp_01_leaf, + /* 01 */ (const void *)ND_NULL, /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)ND_NULL, + /* 03 */ (const void *)&gVexMap_mmmmm_02_opcode_cc_pp_03_modrmmod, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_db_pp_01_l_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_cb_pp_03_modrmmod_01_l_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2666] // VAESIMC Vdq,Wdq + (const void *)&gInstructions[ 4035] // VSHA512RNDS2 Vqq,Hqq,Udq }; -const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_db_pp_01_l = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_cb_pp_03_modrmmod_01_l_01_w = { - ND_ILUT_EX_L, + ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_db_pp_01_l_00_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_cb_pp_03_modrmmod_01_l_01_w_00_leaf, /* 01 */ (const void *)ND_NULL, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_db_pp = +const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_cb_pp_03_modrmmod_01_l = { - ND_ILUT_EX_PP, + ND_ILUT_EX_L, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_db_pp_01_l, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_cb_pp_03_modrmmod_01_l_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_da_pp_03_w_00_leaf = +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_cb_pp_03_modrmmod = { - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4003] // VSM4RNDS4 Vx,Hx,Wx + ND_ILUT_MODRM_MOD, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_cb_pp_03_modrmmod_01_l, + } }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_da_pp_03_w = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_cb_pp = { - ND_ILUT_EX_W, + ND_ILUT_EX_PP, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_da_pp_03_w_00_leaf, + /* 00 */ (const void *)ND_NULL, /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)&gVexMap_mmmmm_02_opcode_cb_pp_03_modrmmod, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_da_pp_02_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_bf_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4002] // VSM4KEY4 Vx,Hx,Wx -}; - -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_da_pp_02_w = -{ - ND_ILUT_EX_W, - { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_da_pp_02_w_00_leaf, - /* 01 */ (const void *)ND_NULL, - } + (const void *)&gInstructions[ 3147] // VFNMSUB231SD Vdq,Hdq,Wsd }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_da_pp_01_l_00_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_bf_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4000] // VSM3MSG2 Vdq,Hdq,Wdq + (const void *)&gInstructions[ 3150] // VFNMSUB231SS Vdq,Hdq,Wss }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_da_pp_01_l_00_w = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_bf_pp_01_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_da_pp_01_l_00_w_00_leaf, - /* 01 */ (const void *)ND_NULL, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_bf_pp_01_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_bf_pp_01_w_01_leaf, } }; -const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_da_pp_01_l = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_bf_pp = { - ND_ILUT_EX_L, + ND_ILUT_EX_PP, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_da_pp_01_l_00_w, - /* 01 */ (const void *)ND_NULL, + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_bf_pp_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_da_pp_00_l_00_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_be_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3999] // VSM3MSG1 Vdq,Hdq,Wdq + (const void *)&gInstructions[ 3142] // VFNMSUB231PD Vx,Hx,Wx }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_da_pp_00_l_00_w = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_be_pp_01_w_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 3145] // VFNMSUB231PS Vx,Hx,Wx +}; + +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_be_pp_01_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_da_pp_00_l_00_w_00_leaf, - /* 01 */ (const void *)ND_NULL, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_be_pp_01_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_be_pp_01_w_01_leaf, } }; -const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_da_pp_00_l = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_be_pp = { - ND_ILUT_EX_L, + ND_ILUT_EX_PP, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_da_pp_00_l_00_w, - /* 01 */ (const void *)ND_NULL, + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_be_pp_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_da_pp = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_bd_pp_01_w_01_leaf = { - ND_ILUT_EX_PP, - { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_da_pp_00_l, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_da_pp_01_l, - /* 02 */ (const void *)&gVexMap_mmmmm_02_opcode_da_pp_02_w, - /* 03 */ (const void *)&gVexMap_mmmmm_02_opcode_da_pp_03_w, - } + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 3106] // VFNMADD231SD Vdq,Hdq,Wsd }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_d3_pp_02_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_bd_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3502] // VPDPWSUDS Vx,Hx,Wx + (const void *)&gInstructions[ 3109] // VFNMADD231SS Vdq,Hdq,Wss }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_d3_pp_02_w = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_bd_pp_01_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_d3_pp_02_w_00_leaf, - /* 01 */ (const void *)ND_NULL, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_bd_pp_01_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_bd_pp_01_w_01_leaf, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_d3_pp_01_w_00_leaf = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_bd_pp = { - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3506] // VPDPWUSDS Vx,Hx,Wx + ND_ILUT_EX_PP, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_bd_pp_01_w, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_d3_pp_01_w = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_bc_pp_01_w_01_leaf = { - ND_ILUT_EX_W, - { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_d3_pp_01_w_00_leaf, - /* 01 */ (const void *)ND_NULL, - } + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 3101] // VFNMADD231PD Vx,Hx,Wx }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_d3_pp_00_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_bc_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3510] // VPDPWUUDS Vx,Hx,Wx + (const void *)&gInstructions[ 3104] // VFNMADD231PS Vx,Hx,Wx }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_d3_pp_00_w = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_bc_pp_01_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_d3_pp_00_w_00_leaf, - /* 01 */ (const void *)ND_NULL, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_bc_pp_01_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_bc_pp_01_w_01_leaf, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_d3_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_bc_pp = { ND_ILUT_EX_PP, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_d3_pp_00_w, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_d3_pp_01_w, - /* 02 */ (const void *)&gVexMap_mmmmm_02_opcode_d3_pp_02_w, + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_bc_pp_01_w, + /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_d2_pp_02_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_bb_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3500] // VPDPWSUD Vx,Hx,Wx + (const void *)&gInstructions[ 3044] // VFMSUB231SD Vdq,Hdq,Wsd }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_d2_pp_02_w = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_bb_pp_01_w_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 3047] // VFMSUB231SS Vdq,Hdq,Wss +}; + +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_bb_pp_01_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_d2_pp_02_w_00_leaf, - /* 01 */ (const void *)ND_NULL, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_bb_pp_01_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_bb_pp_01_w_01_leaf, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_d2_pp_01_w_00_leaf = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_bb_pp = { - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3504] // VPDPWUSD Vx,Hx,Wx + ND_ILUT_EX_PP, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_bb_pp_01_w, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_d2_pp_01_w = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_ba_pp_01_w_01_leaf = { - ND_ILUT_EX_W, - { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_d2_pp_01_w_00_leaf, - /* 01 */ (const void *)ND_NULL, - } + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 3039] // VFMSUB231PD Vx,Hx,Wx }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_d2_pp_00_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_ba_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3508] // VPDPWUUD Vx,Hx,Wx + (const void *)&gInstructions[ 3042] // VFMSUB231PS Vx,Hx,Wx }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_d2_pp_00_w = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_ba_pp_01_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_d2_pp_00_w_00_leaf, - /* 01 */ (const void *)ND_NULL, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_ba_pp_01_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_ba_pp_01_w_01_leaf, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_d2_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_ba_pp = { ND_ILUT_EX_PP, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_d2_pp_00_w, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_d2_pp_01_w, - /* 02 */ (const void *)&gVexMap_mmmmm_02_opcode_d2_pp_02_w, + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_ba_pp_01_w, + /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_cf_pp_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_b9_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3164] // VGF2P8MULB Vx,Hx,Wx + (const void *)&gInstructions[ 2982] // VFMADD231SD Vdq,Hdq,Wsd }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_cf_pp_01_w = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_b9_pp_01_w_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 2985] // VFMADD231SS Vdq,Hdq,Wss +}; + +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_b9_pp_01_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_cf_pp_01_w_00_leaf, - /* 01 */ (const void *)ND_NULL, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_b9_pp_01_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_b9_pp_01_w_01_leaf, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_cf_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_b9_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_cf_pp_01_w, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_b9_pp_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_cd_pp_03_modrmmod_01_l_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_b8_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3989] // VSHA512MSG2 Vqq,Uqq + (const void *)&gInstructions[ 2977] // VFMADD231PD Vx,Hx,Wx }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_cd_pp_03_modrmmod_01_l_01_w = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_b8_pp_01_w_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 2980] // VFMADD231PS Vx,Hx,Wx +}; + +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_b8_pp_01_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_cd_pp_03_modrmmod_01_l_01_w_00_leaf, - /* 01 */ (const void *)ND_NULL, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_b8_pp_01_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_b8_pp_01_w_01_leaf, } }; -const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_cd_pp_03_modrmmod_01_l = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_b8_pp = { - ND_ILUT_EX_L, + ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_cd_pp_03_modrmmod_01_l_01_w, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_b8_pp_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_cd_pp_03_modrmmod = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_b7_pp_01_w_01_leaf = { - ND_ILUT_MODRM_MOD, + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 3059] // VFMSUBADD231PD Vx,Hx,Wx +}; + +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_b7_pp_01_w_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 3062] // VFMSUBADD231PS Vx,Hx,Wx +}; + +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_b7_pp_01_w = +{ + ND_ILUT_EX_W, { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_cd_pp_03_modrmmod_01_l, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_b7_pp_01_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_b7_pp_01_w_01_leaf, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_cd_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_b7_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_b7_pp_01_w, /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)&gVexMap_mmmmm_02_opcode_cd_pp_03_modrmmod, + /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_cc_pp_03_modrmmod_01_l_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_b6_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3988] // VSHA512MSG1 Vqq,Udq + (const void *)&gInstructions[ 3007] // VFMADDSUB231PD Vx,Hx,Wx }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_cc_pp_03_modrmmod_01_l_01_w = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_b6_pp_01_w_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 3010] // VFMADDSUB231PS Vx,Hx,Wx +}; + +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_b6_pp_01_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_cc_pp_03_modrmmod_01_l_01_w_00_leaf, - /* 01 */ (const void *)ND_NULL, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_b6_pp_01_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_b6_pp_01_w_01_leaf, } }; -const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_cc_pp_03_modrmmod_01_l = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_b6_pp = { - ND_ILUT_EX_L, + ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_cc_pp_03_modrmmod_01_l_01_w, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_b6_pp_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_cc_pp_03_modrmmod = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_b5_pp_01_w_01_leaf = { - ND_ILUT_MODRM_MOD, + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 3675] // VPMADD52HUQ Vx,Hx,Wx +}; + +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_b5_pp_01_w = +{ + ND_ILUT_EX_W, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_cc_pp_03_modrmmod_01_l, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_b5_pp_01_w_01_leaf, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_cc_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_b5_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_b5_pp_01_w, /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)&gVexMap_mmmmm_02_opcode_cc_pp_03_modrmmod, + /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_cb_pp_03_modrmmod_01_l_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_b4_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3990] // VSHA512RNDS2 Vqq,Hqq,Udq + (const void *)&gInstructions[ 3677] // VPMADD52LUQ Vx,Hx,Wx }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_cb_pp_03_modrmmod_01_l_01_w = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_b4_pp_01_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_cb_pp_03_modrmmod_01_l_01_w_00_leaf, - /* 01 */ (const void *)ND_NULL, + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_b4_pp_01_w_01_leaf, } }; -const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_cb_pp_03_modrmmod_01_l = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_b4_pp = { - ND_ILUT_EX_L, + ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_cb_pp_03_modrmmod_01_l_01_w, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_b4_pp_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_cb_pp_03_modrmmod = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_b1_pp_02_modrmmod_00_w_00_leaf = { - ND_ILUT_MODRM_MOD, + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 2719] // VBCSTNEBF162PS Vx,Mw +}; + +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_b1_pp_02_modrmmod_00_w = +{ + ND_ILUT_EX_W, { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_cb_pp_03_modrmmod_01_l, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_b1_pp_02_modrmmod_00_w_00_leaf, + /* 01 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_cb_pp = +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_b1_pp_02_modrmmod = { - ND_ILUT_EX_PP, + ND_ILUT_MODRM_MOD, { - /* 00 */ (const void *)ND_NULL, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_b1_pp_02_modrmmod_00_w, /* 01 */ (const void *)ND_NULL, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)&gVexMap_mmmmm_02_opcode_cb_pp_03_modrmmod, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_bf_pp_01_w_01_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_b1_pp_01_modrmmod_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3106] // VFNMSUB231SD Vdq,Hdq,Wsd + (const void *)&gInstructions[ 2720] // VBCSTNESH2PS Vx,Mw }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_bf_pp_01_w_00_leaf = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_b1_pp_01_modrmmod_00_w = { - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3109] // VFNMSUB231SS Vdq,Hdq,Wss + ND_ILUT_EX_W, + { + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_b1_pp_01_modrmmod_00_w_00_leaf, + /* 01 */ (const void *)ND_NULL, + } }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_bf_pp_01_w = +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_b1_pp_01_modrmmod = { - ND_ILUT_EX_W, + ND_ILUT_MODRM_MOD, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_bf_pp_01_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_bf_pp_01_w_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_b1_pp_01_modrmmod_00_w, + /* 01 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_bf_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_b1_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_bf_pp_01_w, - /* 02 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_b1_pp_01_modrmmod, + /* 02 */ (const void *)&gVexMap_mmmmm_02_opcode_b1_pp_02_modrmmod, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_be_pp_01_w_01_leaf = -{ - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3101] // VFNMSUB231PD Vx,Hx,Wx -}; - -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_be_pp_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_b0_pp_03_modrmmod_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3104] // VFNMSUB231PS Vx,Hx,Wx + (const void *)&gInstructions[ 2786] // VCVTNEOBF162PS Vx,Mx }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_be_pp_01_w = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_b0_pp_03_modrmmod_00_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_be_pp_01_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_be_pp_01_w_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_b0_pp_03_modrmmod_00_w_00_leaf, + /* 01 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_be_pp = +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_b0_pp_03_modrmmod = { - ND_ILUT_EX_PP, + ND_ILUT_MODRM_MOD, { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_be_pp_01_w, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)ND_NULL, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_b0_pp_03_modrmmod_00_w, + /* 01 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_bd_pp_01_w_01_leaf = -{ - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3065] // VFNMADD231SD Vdq,Hdq,Wsd -}; - -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_bd_pp_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_b0_pp_02_modrmmod_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3068] // VFNMADD231SS Vdq,Hdq,Wss + (const void *)&gInstructions[ 2784] // VCVTNEEBF162PS Vx,Mx }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_bd_pp_01_w = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_b0_pp_02_modrmmod_00_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_bd_pp_01_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_bd_pp_01_w_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_b0_pp_02_modrmmod_00_w_00_leaf, + /* 01 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_bd_pp = +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_b0_pp_02_modrmmod = { - ND_ILUT_EX_PP, + ND_ILUT_MODRM_MOD, { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_bd_pp_01_w, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)ND_NULL, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_b0_pp_02_modrmmod_00_w, + /* 01 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_bc_pp_01_w_01_leaf = -{ - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3060] // VFNMADD231PD Vx,Hx,Wx -}; - -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_bc_pp_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_b0_pp_01_modrmmod_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3063] // VFNMADD231PS Vx,Hx,Wx + (const void *)&gInstructions[ 2785] // VCVTNEEPH2PS Vx,Mx }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_bc_pp_01_w = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_b0_pp_01_modrmmod_00_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_bc_pp_01_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_bc_pp_01_w_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_b0_pp_01_modrmmod_00_w_00_leaf, + /* 01 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_bc_pp = +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_b0_pp_01_modrmmod = { - ND_ILUT_EX_PP, + ND_ILUT_MODRM_MOD, { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_bc_pp_01_w, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)ND_NULL, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_b0_pp_01_modrmmod_00_w, + /* 01 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_bb_pp_01_w_01_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_b0_pp_00_modrmmod_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3003] // VFMSUB231SD Vdq,Hdq,Wsd + (const void *)&gInstructions[ 2787] // VCVTNEOPH2PS Vx,Mx }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_bb_pp_01_w_00_leaf = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_b0_pp_00_modrmmod_00_w = { - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3006] // VFMSUB231SS Vdq,Hdq,Wss + ND_ILUT_EX_W, + { + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_b0_pp_00_modrmmod_00_w_00_leaf, + /* 01 */ (const void *)ND_NULL, + } }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_bb_pp_01_w = +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_b0_pp_00_modrmmod = { - ND_ILUT_EX_W, + ND_ILUT_MODRM_MOD, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_bb_pp_01_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_bb_pp_01_w_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_b0_pp_00_modrmmod_00_w, + /* 01 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_bb_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_b0_pp = { ND_ILUT_EX_PP, { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_bb_pp_01_w, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)ND_NULL, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_b0_pp_00_modrmmod, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_b0_pp_01_modrmmod, + /* 02 */ (const void *)&gVexMap_mmmmm_02_opcode_b0_pp_02_modrmmod, + /* 03 */ (const void *)&gVexMap_mmmmm_02_opcode_b0_pp_03_modrmmod, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_ba_pp_01_w_01_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_af_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2998] // VFMSUB231PD Vx,Hx,Wx + (const void *)&gInstructions[ 3136] // VFNMSUB213SD Vdq,Hdq,Wsd }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_ba_pp_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_af_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3001] // VFMSUB231PS Vx,Hx,Wx + (const void *)&gInstructions[ 3139] // VFNMSUB213SS Vdq,Hdq,Wss }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_ba_pp_01_w = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_af_pp_01_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_ba_pp_01_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_ba_pp_01_w_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_af_pp_01_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_af_pp_01_w_01_leaf, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_ba_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_af_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_ba_pp_01_w, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_af_pp_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_b9_pp_01_w_01_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_ae_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2941] // VFMADD231SD Vdq,Hdq,Wsd + (const void *)&gInstructions[ 3131] // VFNMSUB213PD Vx,Hx,Wx }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_b9_pp_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_ae_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2944] // VFMADD231SS Vdq,Hdq,Wss + (const void *)&gInstructions[ 3134] // VFNMSUB213PS Vx,Hx,Wx }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_b9_pp_01_w = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_ae_pp_01_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_b9_pp_01_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_b9_pp_01_w_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_ae_pp_01_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_ae_pp_01_w_01_leaf, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_b9_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_ae_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_b9_pp_01_w, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_ae_pp_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_b8_pp_01_w_01_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_ad_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2936] // VFMADD231PD Vx,Hx,Wx + (const void *)&gInstructions[ 3095] // VFNMADD213SD Vdq,Hdq,Wsd }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_b8_pp_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_ad_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2939] // VFMADD231PS Vx,Hx,Wx + (const void *)&gInstructions[ 3098] // VFNMADD213SS Vdq,Hdq,Wss }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_b8_pp_01_w = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_ad_pp_01_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_b8_pp_01_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_b8_pp_01_w_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_ad_pp_01_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_ad_pp_01_w_01_leaf, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_b8_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_ad_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_b8_pp_01_w, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_ad_pp_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_b7_pp_01_w_01_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_ac_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3018] // VFMSUBADD231PD Vx,Hx,Wx + (const void *)&gInstructions[ 3090] // VFNMADD213PD Vx,Hx,Wx }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_b7_pp_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_ac_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3021] // VFMSUBADD231PS Vx,Hx,Wx + (const void *)&gInstructions[ 3093] // VFNMADD213PS Vx,Hx,Wx }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_b7_pp_01_w = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_ac_pp_01_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_b7_pp_01_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_b7_pp_01_w_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_ac_pp_01_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_ac_pp_01_w_01_leaf, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_b7_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_ac_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_b7_pp_01_w, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_ac_pp_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_b6_pp_01_w_01_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_ab_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2966] // VFMADDSUB231PD Vx,Hx,Wx + (const void *)&gInstructions[ 3033] // VFMSUB213SD Vdq,Hdq,Wsd }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_b6_pp_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_ab_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2969] // VFMADDSUB231PS Vx,Hx,Wx + (const void *)&gInstructions[ 3036] // VFMSUB213SS Vdq,Hdq,Wss }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_b6_pp_01_w = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_ab_pp_01_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_b6_pp_01_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_b6_pp_01_w_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_ab_pp_01_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_ab_pp_01_w_01_leaf, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_b6_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_ab_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_b6_pp_01_w, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_ab_pp_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_b5_pp_01_w_01_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_aa_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3630] // VPMADD52HUQ Vx,Hx,Wx -}; - -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_b5_pp_01_w = -{ - ND_ILUT_EX_W, - { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_b5_pp_01_w_01_leaf, - } -}; - -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_b5_pp = -{ - ND_ILUT_EX_PP, - { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_b5_pp_01_w, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)ND_NULL, - } + (const void *)&gInstructions[ 3028] // VFMSUB213PD Vx,Hx,Wx }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_b4_pp_01_w_01_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_aa_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3632] // VPMADD52LUQ Vx,Hx,Wx + (const void *)&gInstructions[ 3031] // VFMSUB213PS Vx,Hx,Wx }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_b4_pp_01_w = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_aa_pp_01_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_b4_pp_01_w_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_aa_pp_01_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_aa_pp_01_w_01_leaf, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_b4_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_aa_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_b4_pp_01_w, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_aa_pp_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_b1_pp_02_modrmmod_00_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_a9_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2678] // VBCSTNEBF162PS Vx,Mw -}; - -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_b1_pp_02_modrmmod_00_w = -{ - ND_ILUT_EX_W, - { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_b1_pp_02_modrmmod_00_w_00_leaf, - /* 01 */ (const void *)ND_NULL, - } -}; - -const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_b1_pp_02_modrmmod = -{ - ND_ILUT_MODRM_MOD, - { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_b1_pp_02_modrmmod_00_w, - /* 01 */ (const void *)ND_NULL, - } + (const void *)&gInstructions[ 2971] // VFMADD213SD Vdq,Hdq,Wsd }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_b1_pp_01_modrmmod_00_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_a9_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2679] // VBCSTNESH2PS Vx,Mw + (const void *)&gInstructions[ 2974] // VFMADD213SS Vdq,Hdq,Wss }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_b1_pp_01_modrmmod_00_w = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_a9_pp_01_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_b1_pp_01_modrmmod_00_w_00_leaf, - /* 01 */ (const void *)ND_NULL, - } -}; - -const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_b1_pp_01_modrmmod = -{ - ND_ILUT_MODRM_MOD, - { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_b1_pp_01_modrmmod_00_w, - /* 01 */ (const void *)ND_NULL, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_a9_pp_01_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_a9_pp_01_w_01_leaf, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_b1_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_a9_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_b1_pp_01_modrmmod, - /* 02 */ (const void *)&gVexMap_mmmmm_02_opcode_b1_pp_02_modrmmod, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_a9_pp_01_w, + /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_b0_pp_03_modrmmod_00_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_a8_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2745] // VCVTNEOBF162PS Vx,Mx -}; - -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_b0_pp_03_modrmmod_00_w = -{ - ND_ILUT_EX_W, - { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_b0_pp_03_modrmmod_00_w_00_leaf, - /* 01 */ (const void *)ND_NULL, - } -}; - -const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_b0_pp_03_modrmmod = -{ - ND_ILUT_MODRM_MOD, - { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_b0_pp_03_modrmmod_00_w, - /* 01 */ (const void *)ND_NULL, - } + (const void *)&gInstructions[ 2966] // VFMADD213PD Vx,Hx,Wx }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_b0_pp_02_modrmmod_00_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_a8_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2743] // VCVTNEEBF162PS Vx,Mx + (const void *)&gInstructions[ 2969] // VFMADD213PS Vx,Hx,Wx }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_b0_pp_02_modrmmod_00_w = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_a8_pp_01_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_b0_pp_02_modrmmod_00_w_00_leaf, - /* 01 */ (const void *)ND_NULL, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_a8_pp_01_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_a8_pp_01_w_01_leaf, } }; -const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_b0_pp_02_modrmmod = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_a8_pp = { - ND_ILUT_MODRM_MOD, + ND_ILUT_EX_PP, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_b0_pp_02_modrmmod_00_w, - /* 01 */ (const void *)ND_NULL, + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_a8_pp_01_w, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_b0_pp_01_modrmmod_00_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_a7_pp_01_w_01_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 3054] // VFMSUBADD213PD Vx,Hx,Wx +}; + +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_a7_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2744] // VCVTNEEPH2PS Vx,Mx + (const void *)&gInstructions[ 3057] // VFMSUBADD213PS Vx,Hx,Wx }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_b0_pp_01_modrmmod_00_w = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_a7_pp_01_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_b0_pp_01_modrmmod_00_w_00_leaf, - /* 01 */ (const void *)ND_NULL, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_a7_pp_01_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_a7_pp_01_w_01_leaf, } }; -const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_b0_pp_01_modrmmod = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_a7_pp = { - ND_ILUT_MODRM_MOD, + ND_ILUT_EX_PP, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_b0_pp_01_modrmmod_00_w, - /* 01 */ (const void *)ND_NULL, + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_a7_pp_01_w, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_b0_pp_00_modrmmod_00_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_a6_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2746] // VCVTNEOPH2PS Vx,Mx + (const void *)&gInstructions[ 3002] // VFMADDSUB213PD Vx,Hx,Wx }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_b0_pp_00_modrmmod_00_w = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_a6_pp_01_w_00_leaf = { - ND_ILUT_EX_W, - { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_b0_pp_00_modrmmod_00_w_00_leaf, - /* 01 */ (const void *)ND_NULL, - } + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 3005] // VFMADDSUB213PS Vx,Hx,Wx }; -const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_b0_pp_00_modrmmod = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_a6_pp_01_w = { - ND_ILUT_MODRM_MOD, + ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_b0_pp_00_modrmmod_00_w, - /* 01 */ (const void *)ND_NULL, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_a6_pp_01_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_a6_pp_01_w_01_leaf, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_b0_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_a6_pp = { ND_ILUT_EX_PP, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_b0_pp_00_modrmmod, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_b0_pp_01_modrmmod, - /* 02 */ (const void *)&gVexMap_mmmmm_02_opcode_b0_pp_02_modrmmod, - /* 03 */ (const void *)&gVexMap_mmmmm_02_opcode_b0_pp_03_modrmmod, + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_a6_pp_01_w, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_af_pp_01_w_01_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_9f_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3095] // VFNMSUB213SD Vdq,Hdq,Wsd + (const void *)&gInstructions[ 3125] // VFNMSUB132SD Vdq,Hdq,Wsd }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_af_pp_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_9f_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3098] // VFNMSUB213SS Vdq,Hdq,Wss + (const void *)&gInstructions[ 3128] // VFNMSUB132SS Vdq,Hdq,Wss }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_af_pp_01_w = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_9f_pp_01_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_af_pp_01_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_af_pp_01_w_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_9f_pp_01_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_9f_pp_01_w_01_leaf, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_af_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_9f_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_af_pp_01_w, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_9f_pp_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_ae_pp_01_w_01_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_9e_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3090] // VFNMSUB213PD Vx,Hx,Wx + (const void *)&gInstructions[ 3120] // VFNMSUB132PD Vx,Hx,Wx }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_ae_pp_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_9e_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3093] // VFNMSUB213PS Vx,Hx,Wx + (const void *)&gInstructions[ 3123] // VFNMSUB132PS Vx,Hx,Wx }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_ae_pp_01_w = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_9e_pp_01_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_ae_pp_01_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_ae_pp_01_w_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_9e_pp_01_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_9e_pp_01_w_01_leaf, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_ae_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_9e_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_ae_pp_01_w, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_9e_pp_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_ad_pp_01_w_01_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_9d_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3054] // VFNMADD213SD Vdq,Hdq,Wsd + (const void *)&gInstructions[ 3084] // VFNMADD132SD Vdq,Hdq,Wsd }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_ad_pp_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_9d_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3057] // VFNMADD213SS Vdq,Hdq,Wss + (const void *)&gInstructions[ 3087] // VFNMADD132SS Vdq,Hdq,Wss }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_ad_pp_01_w = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_9d_pp_01_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_ad_pp_01_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_ad_pp_01_w_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_9d_pp_01_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_9d_pp_01_w_01_leaf, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_ad_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_9d_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_ad_pp_01_w, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_9d_pp_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_ac_pp_01_w_01_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_9c_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3049] // VFNMADD213PD Vx,Hx,Wx + (const void *)&gInstructions[ 3079] // VFNMADD132PD Vx,Hx,Wx }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_ac_pp_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_9c_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3052] // VFNMADD213PS Vx,Hx,Wx + (const void *)&gInstructions[ 3082] // VFNMADD132PS Vx,Hx,Wx }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_ac_pp_01_w = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_9c_pp_01_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_ac_pp_01_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_ac_pp_01_w_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_9c_pp_01_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_9c_pp_01_w_01_leaf, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_ac_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_9c_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_ac_pp_01_w, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_9c_pp_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_ab_pp_01_w_01_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_9b_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2992] // VFMSUB213SD Vdq,Hdq,Wsd + (const void *)&gInstructions[ 3022] // VFMSUB132SD Vdq,Hdq,Wsd }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_ab_pp_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_9b_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2995] // VFMSUB213SS Vdq,Hdq,Wss + (const void *)&gInstructions[ 3025] // VFMSUB132SS Vdq,Hdq,Wss }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_ab_pp_01_w = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_9b_pp_01_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_ab_pp_01_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_ab_pp_01_w_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_9b_pp_01_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_9b_pp_01_w_01_leaf, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_ab_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_9b_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_ab_pp_01_w, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_9b_pp_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_aa_pp_01_w_01_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_9a_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2987] // VFMSUB213PD Vx,Hx,Wx + (const void *)&gInstructions[ 3017] // VFMSUB132PD Vx,Hx,Wx }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_aa_pp_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_9a_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2990] // VFMSUB213PS Vx,Hx,Wx + (const void *)&gInstructions[ 3020] // VFMSUB132PS Vx,Hx,Wx }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_aa_pp_01_w = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_9a_pp_01_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_aa_pp_01_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_aa_pp_01_w_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_9a_pp_01_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_9a_pp_01_w_01_leaf, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_aa_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_9a_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_aa_pp_01_w, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_9a_pp_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_a9_pp_01_w_01_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_99_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2930] // VFMADD213SD Vdq,Hdq,Wsd + (const void *)&gInstructions[ 2960] // VFMADD132SD Vdq,Hdq,Wsd }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_a9_pp_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_99_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2933] // VFMADD213SS Vdq,Hdq,Wss + (const void *)&gInstructions[ 2963] // VFMADD132SS Vdq,Hdq,Wss }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_a9_pp_01_w = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_99_pp_01_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_a9_pp_01_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_a9_pp_01_w_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_99_pp_01_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_99_pp_01_w_01_leaf, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_a9_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_99_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_a9_pp_01_w, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_99_pp_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_a8_pp_01_w_01_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_98_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2925] // VFMADD213PD Vx,Hx,Wx + (const void *)&gInstructions[ 2955] // VFMADD132PD Vx,Hx,Wx }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_a8_pp_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_98_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2928] // VFMADD213PS Vx,Hx,Wx + (const void *)&gInstructions[ 2958] // VFMADD132PS Vx,Hx,Wx }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_a8_pp_01_w = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_98_pp_01_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_a8_pp_01_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_a8_pp_01_w_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_98_pp_01_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_98_pp_01_w_01_leaf, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_a8_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_98_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_a8_pp_01_w, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_98_pp_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_a7_pp_01_w_01_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_97_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3013] // VFMSUBADD213PD Vx,Hx,Wx + (const void *)&gInstructions[ 3049] // VFMSUBADD132PD Vx,Hx,Wx }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_a7_pp_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_97_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3016] // VFMSUBADD213PS Vx,Hx,Wx + (const void *)&gInstructions[ 3052] // VFMSUBADD132PS Vx,Hx,Wx }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_a7_pp_01_w = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_97_pp_01_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_a7_pp_01_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_a7_pp_01_w_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_97_pp_01_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_97_pp_01_w_01_leaf, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_a7_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_97_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_a7_pp_01_w, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_97_pp_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_a6_pp_01_w_01_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_96_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2961] // VFMADDSUB213PD Vx,Hx,Wx + (const void *)&gInstructions[ 2997] // VFMADDSUB132PD Vx,Hx,Wx }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_a6_pp_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_96_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2964] // VFMADDSUB213PS Vx,Hx,Wx + (const void *)&gInstructions[ 3000] // VFMADDSUB132PS Vx,Hx,Wx }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_a6_pp_01_w = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_96_pp_01_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_a6_pp_01_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_a6_pp_01_w_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_96_pp_01_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_96_pp_01_w_01_leaf, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_a6_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_96_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_a6_pp_01_w, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_96_pp_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_9f_pp_01_w_01_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_93_pp_01_modrmmod_00_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3084] // VFNMSUB132SD Vdq,Hdq,Wsd + (const void *)&gInstructions[ 3183] // VGATHERQPD Vx,Mvm64n,Hx }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_9f_pp_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_93_pp_01_modrmmod_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3087] // VFNMSUB132SS Vdq,Hdq,Wss + (const void *)&gInstructions[ 3185] // VGATHERQPS Vdq,Mvm64n,Hdq }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_9f_pp_01_w = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_93_pp_01_modrmmod_00_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_9f_pp_01_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_9f_pp_01_w_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_93_pp_01_modrmmod_00_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_93_pp_01_modrmmod_00_w_01_leaf, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_9f_pp = +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_93_pp_01_modrmmod = +{ + ND_ILUT_MODRM_MOD, + { + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_93_pp_01_modrmmod_00_w, + /* 01 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_93_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_9f_pp_01_w, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_93_pp_01_modrmmod, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_9e_pp_01_w_01_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_92_pp_01_modrmmod_00_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3079] // VFNMSUB132PD Vx,Hx,Wx + (const void *)&gInstructions[ 3171] // VGATHERDPD Vx,Mvm32h,Hx }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_9e_pp_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_92_pp_01_modrmmod_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3082] // VFNMSUB132PS Vx,Hx,Wx + (const void *)&gInstructions[ 3173] // VGATHERDPS Vx,Mvm32n,Hx }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_9e_pp_01_w = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_92_pp_01_modrmmod_00_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_9e_pp_01_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_9e_pp_01_w_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_92_pp_01_modrmmod_00_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_92_pp_01_modrmmod_00_w_01_leaf, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_9e_pp = +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_92_pp_01_modrmmod = +{ + ND_ILUT_MODRM_MOD, + { + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_92_pp_01_modrmmod_00_w, + /* 01 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_92_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_9e_pp_01_w, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_92_pp_01_modrmmod, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_9d_pp_01_w_01_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_91_pp_01_modrmmod_00_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3043] // VFNMADD132SD Vdq,Hdq,Wsd + (const void *)&gInstructions[ 3625] // VPGATHERQQ Vx,Mvm64n,Hx }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_9d_pp_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_91_pp_01_modrmmod_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3046] // VFNMADD132SS Vdq,Hdq,Wss + (const void *)&gInstructions[ 3623] // VPGATHERQD Vdq,Mvm64n,Hdq }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_9d_pp_01_w = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_91_pp_01_modrmmod_00_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_9d_pp_01_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_9d_pp_01_w_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_91_pp_01_modrmmod_00_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_91_pp_01_modrmmod_00_w_01_leaf, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_9d_pp = +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_91_pp_01_modrmmod = +{ + ND_ILUT_MODRM_MOD, + { + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_91_pp_01_modrmmod_00_w, + /* 01 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_91_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_9d_pp_01_w, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_91_pp_01_modrmmod, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_9c_pp_01_w_01_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_90_pp_01_modrmmod_00_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3038] // VFNMADD132PD Vx,Hx,Wx + (const void *)&gInstructions[ 3621] // VPGATHERDQ Vx,Mvm32h,Hx }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_9c_pp_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_90_pp_01_modrmmod_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3041] // VFNMADD132PS Vx,Hx,Wx + (const void *)&gInstructions[ 3619] // VPGATHERDD Vx,Mvm32n,Hx }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_9c_pp_01_w = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_90_pp_01_modrmmod_00_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_9c_pp_01_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_9c_pp_01_w_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_90_pp_01_modrmmod_00_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_90_pp_01_modrmmod_00_w_01_leaf, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_9c_pp = +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_90_pp_01_modrmmod = +{ + ND_ILUT_MODRM_MOD, + { + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_90_pp_01_modrmmod_00_w, + /* 01 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_90_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_9c_pp_01_w, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_90_pp_01_modrmmod, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_9b_pp_01_w_01_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_8e_pp_01_modrmmod_00_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2981] // VFMSUB132SD Vdq,Hdq,Wsd + (const void *)&gInstructions[ 3685] // VPMASKMOVQ Mx,Hx,Vx }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_9b_pp_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_8e_pp_01_modrmmod_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2984] // VFMSUB132SS Vdq,Hdq,Wss + (const void *)&gInstructions[ 3683] // VPMASKMOVD Mx,Hx,Vx }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_9b_pp_01_w = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_8e_pp_01_modrmmod_00_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_9b_pp_01_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_9b_pp_01_w_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_8e_pp_01_modrmmod_00_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_8e_pp_01_modrmmod_00_w_01_leaf, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_9b_pp = +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_8e_pp_01_modrmmod = +{ + ND_ILUT_MODRM_MOD, + { + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_8e_pp_01_modrmmod_00_w, + /* 01 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_8e_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_9b_pp_01_w, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_8e_pp_01_modrmmod, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_9a_pp_01_w_01_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_8c_pp_01_modrmmod_00_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2976] // VFMSUB132PD Vx,Hx,Wx + (const void *)&gInstructions[ 3684] // VPMASKMOVQ Vx,Hx,Mx }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_9a_pp_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_8c_pp_01_modrmmod_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2979] // VFMSUB132PS Vx,Hx,Wx + (const void *)&gInstructions[ 3682] // VPMASKMOVD Vx,Hx,Mx }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_9a_pp_01_w = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_8c_pp_01_modrmmod_00_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_9a_pp_01_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_9a_pp_01_w_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_8c_pp_01_modrmmod_00_w_00_leaf, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_8c_pp_01_modrmmod_00_w_01_leaf, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_9a_pp = +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_8c_pp_01_modrmmod = +{ + ND_ILUT_MODRM_MOD, + { + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_8c_pp_01_modrmmod_00_w, + /* 01 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_8c_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_9a_pp_01_w, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_8c_pp_01_modrmmod, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_99_pp_01_w_01_leaf = -{ - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2919] // VFMADD132SD Vdq,Hdq,Wsd -}; - -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_99_pp_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_79_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2922] // VFMADD132SS Vdq,Hdq,Wss + (const void *)&gInstructions[ 3477] // VPBROADCASTW Vx,Ww }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_99_pp_01_w = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_79_pp_01_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_99_pp_01_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_99_pp_01_w_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_79_pp_01_w_00_leaf, + /* 01 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_99_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_79_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_99_pp_01_w, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_79_pp_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_98_pp_01_w_01_leaf = -{ - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2914] // VFMADD132PD Vx,Hx,Wx -}; - -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_98_pp_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_78_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2917] // VFMADD132PS Vx,Hx,Wx + (const void *)&gInstructions[ 3466] // VPBROADCASTB Vx,Wb }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_98_pp_01_w = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_78_pp_01_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_98_pp_01_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_98_pp_01_w_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_78_pp_01_w_00_leaf, + /* 01 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_98_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_78_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_98_pp_01_w, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_78_pp_01_w, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_97_pp_01_w_01_leaf = -{ - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3008] // VFMSUBADD132PD Vx,Hx,Wx -}; - -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_97_pp_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_72_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3011] // VFMSUBADD132PS Vx,Hx,Wx + (const void *)&gInstructions[ 2793] // VCVTNEPS2BF16 Vx,Wx }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_97_pp_01_w = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_72_pp_02_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_97_pp_01_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_97_pp_01_w_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_72_pp_02_w_00_leaf, + /* 01 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_97_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_72_pp = { ND_ILUT_EX_PP, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_97_pp_01_w, - /* 02 */ (const void *)ND_NULL, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)&gVexMap_mmmmm_02_opcode_72_pp_02_w, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_96_pp_01_w_01_leaf = -{ - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2956] // VFMADDSUB132PD Vx,Hx,Wx -}; - -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_96_pp_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_6f_pp_01_modrmmod_00_l_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2959] // VFMADDSUB132PS Vx,Hx,Wx + (const void *)&gInstructions[ 2600] // T2RPNTLVWZ1T1 rTt+1,Mt }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_96_pp_01_w = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_6f_pp_01_modrmmod_00_l_00_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_96_pp_01_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_96_pp_01_w_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_6f_pp_01_modrmmod_00_l_00_w_00_leaf, + /* 01 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_96_pp = +const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_6f_pp_01_modrmmod_00_l = { - ND_ILUT_EX_PP, + ND_ILUT_EX_L, { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_96_pp_01_w, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_6f_pp_01_modrmmod_00_l_00_w, + /* 01 */ (const void *)ND_NULL, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_93_pp_01_modrmmod_00_w_01_leaf = +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_6f_pp_01_modrmmod = { - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3142] // VGATHERQPD Vx,Mvm64n,Hx + ND_ILUT_MODRM_MOD, + { + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_6f_pp_01_modrmmod_00_l, + /* 01 */ (const void *)ND_NULL, + } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_93_pp_01_modrmmod_00_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_6f_pp_00_modrmmod_00_l_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3144] // VGATHERQPS Vdq,Mvm64n,Hdq + (const void *)&gInstructions[ 2596] // T2RPNTLVWZ0T1 rTt+1,Mt }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_93_pp_01_modrmmod_00_w = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_6f_pp_00_modrmmod_00_l_00_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_93_pp_01_modrmmod_00_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_93_pp_01_modrmmod_00_w_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_6f_pp_00_modrmmod_00_l_00_w_00_leaf, + /* 01 */ (const void *)ND_NULL, } }; -const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_93_pp_01_modrmmod = +const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_6f_pp_00_modrmmod_00_l = +{ + ND_ILUT_EX_L, + { + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_6f_pp_00_modrmmod_00_l_00_w, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_6f_pp_00_modrmmod = { ND_ILUT_MODRM_MOD, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_93_pp_01_modrmmod_00_w, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_6f_pp_00_modrmmod_00_l, /* 01 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_93_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_6f_pp = { ND_ILUT_EX_PP, { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_93_pp_01_modrmmod, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_6f_pp_00_modrmmod, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_6f_pp_01_modrmmod, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_92_pp_01_modrmmod_00_w_01_leaf = -{ - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3130] // VGATHERDPD Vx,Mvm32h,Hx -}; - -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_92_pp_01_modrmmod_00_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_6e_pp_01_modrmmod_00_l_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3132] // VGATHERDPS Vx,Mvm32n,Hx + (const void *)&gInstructions[ 2597] // T2RPNTLVWZ1 rTt+1,Mt }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_92_pp_01_modrmmod_00_w = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_6e_pp_01_modrmmod_00_l_00_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_92_pp_01_modrmmod_00_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_92_pp_01_modrmmod_00_w_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_6e_pp_01_modrmmod_00_l_00_w_00_leaf, + /* 01 */ (const void *)ND_NULL, } }; -const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_92_pp_01_modrmmod = +const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_6e_pp_01_modrmmod_00_l = { - ND_ILUT_MODRM_MOD, + ND_ILUT_EX_L, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_92_pp_01_modrmmod_00_w, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_6e_pp_01_modrmmod_00_l_00_w, /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_92_pp = +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_6e_pp_01_modrmmod = { - ND_ILUT_EX_PP, + ND_ILUT_MODRM_MOD, { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_92_pp_01_modrmmod, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)ND_NULL, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_6e_pp_01_modrmmod_00_l, + /* 01 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_91_pp_01_modrmmod_00_w_01_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_6e_pp_00_modrmmod_00_l_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3580] // VPGATHERQQ Vx,Mvm64n,Hx + (const void *)&gInstructions[ 2593] // T2RPNTLVWZ0 rTt+1,Mt }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_91_pp_01_modrmmod_00_w_00_leaf = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_6e_pp_00_modrmmod_00_l_00_w = { - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3578] // VPGATHERQD Vdq,Mvm64n,Hdq + ND_ILUT_EX_W, + { + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_6e_pp_00_modrmmod_00_l_00_w_00_leaf, + /* 01 */ (const void *)ND_NULL, + } }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_91_pp_01_modrmmod_00_w = +const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_6e_pp_00_modrmmod_00_l = { - ND_ILUT_EX_W, + ND_ILUT_EX_L, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_91_pp_01_modrmmod_00_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_91_pp_01_modrmmod_00_w_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_6e_pp_00_modrmmod_00_l_00_w, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_91_pp_01_modrmmod = +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_6e_pp_00_modrmmod = { ND_ILUT_MODRM_MOD, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_91_pp_01_modrmmod_00_w, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_6e_pp_00_modrmmod_00_l, /* 01 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_91_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_6e_pp = { ND_ILUT_EX_PP, { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_91_pp_01_modrmmod, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_6e_pp_00_modrmmod, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_6e_pp_01_modrmmod, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_90_pp_01_modrmmod_00_w_01_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_6c_pp_03_modrmmod_01_l_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3576] // VPGATHERDQ Vx,Mvm32h,Hx + (const void *)&gInstructions[ 2653] // TTDPFP16PS rTt,mTt,vTt }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_90_pp_01_modrmmod_00_w_00_leaf = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_6c_pp_03_modrmmod_01_l_00_w = { - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3574] // VPGATHERDD Vx,Mvm32n,Hx + ND_ILUT_EX_W, + { + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_6c_pp_03_modrmmod_01_l_00_w_00_leaf, + /* 01 */ (const void *)ND_NULL, + } }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_90_pp_01_modrmmod_00_w = +const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_6c_pp_03_modrmmod_01_l = { - ND_ILUT_EX_W, + ND_ILUT_EX_L, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_90_pp_01_modrmmod_00_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_90_pp_01_modrmmod_00_w_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_6c_pp_03_modrmmod_01_l_00_w, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_90_pp_01_modrmmod = +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_6c_pp_03_modrmmod = { ND_ILUT_MODRM_MOD, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_90_pp_01_modrmmod_00_w, + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_6c_pp_03_modrmmod_01_l, + } +}; + +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_6c_pp_02_modrmmod_01_l_00_w_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 2652] // TTDPBF16PS rTt,mTt,vTt +}; + +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_6c_pp_02_modrmmod_01_l_00_w = +{ + ND_ILUT_EX_W, + { + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_6c_pp_02_modrmmod_01_l_00_w_00_leaf, /* 01 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_90_pp = +const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_6c_pp_02_modrmmod_01_l = { - ND_ILUT_EX_PP, + ND_ILUT_EX_L, { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_90_pp_01_modrmmod, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_6c_pp_02_modrmmod_01_l_00_w, + /* 01 */ (const void *)ND_NULL, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_8e_pp_01_modrmmod_00_w_01_leaf = +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_6c_pp_02_modrmmod = { - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3640] // VPMASKMOVQ Mx,Hx,Vx + ND_ILUT_MODRM_MOD, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_6c_pp_02_modrmmod_01_l, + } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_8e_pp_01_modrmmod_00_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_6c_pp_01_modrmmod_01_l_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3638] // VPMASKMOVD Mx,Hx,Vx + (const void *)&gInstructions[ 2601] // TCMMIMFP16PS rTt,mTt,vTt }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_8e_pp_01_modrmmod_00_w = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_6c_pp_01_modrmmod_01_l_00_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_8e_pp_01_modrmmod_00_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_8e_pp_01_modrmmod_00_w_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_6c_pp_01_modrmmod_01_l_00_w_00_leaf, + /* 01 */ (const void *)ND_NULL, } }; -const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_8e_pp_01_modrmmod = +const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_6c_pp_01_modrmmod_01_l = { - ND_ILUT_MODRM_MOD, + ND_ILUT_EX_L, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_8e_pp_01_modrmmod_00_w, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_6c_pp_01_modrmmod_01_l_00_w, /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_8e_pp = +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_6c_pp_01_modrmmod = { - ND_ILUT_EX_PP, + ND_ILUT_MODRM_MOD, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_8e_pp_01_modrmmod, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_6c_pp_01_modrmmod_01_l, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_8c_pp_01_modrmmod_00_w_01_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_6c_pp_00_modrmmod_01_l_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3639] // VPMASKMOVQ Vx,Hx,Mx + (const void *)&gInstructions[ 2602] // TCMMRLFP16PS rTt,mTt,vTt }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_8c_pp_01_modrmmod_00_w_00_leaf = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_6c_pp_00_modrmmod_01_l_00_w = { - ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3637] // VPMASKMOVD Vx,Hx,Mx + ND_ILUT_EX_W, + { + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_6c_pp_00_modrmmod_01_l_00_w_00_leaf, + /* 01 */ (const void *)ND_NULL, + } }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_8c_pp_01_modrmmod_00_w = +const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_6c_pp_00_modrmmod_01_l = { - ND_ILUT_EX_W, + ND_ILUT_EX_L, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_8c_pp_01_modrmmod_00_w_00_leaf, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_8c_pp_01_modrmmod_00_w_01_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_6c_pp_00_modrmmod_01_l_00_w, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_8c_pp_01_modrmmod = +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_6c_pp_00_modrmmod = { ND_ILUT_MODRM_MOD, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_8c_pp_01_modrmmod_00_w, - /* 01 */ (const void *)ND_NULL, + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_6c_pp_00_modrmmod_01_l, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_8c_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_6c_pp = { ND_ILUT_EX_PP, { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_8c_pp_01_modrmmod, - /* 02 */ (const void *)ND_NULL, - /* 03 */ (const void *)ND_NULL, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_6c_pp_00_modrmmod, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_6c_pp_01_modrmmod, + /* 02 */ (const void *)&gVexMap_mmmmm_02_opcode_6c_pp_02_modrmmod, + /* 03 */ (const void *)&gVexMap_mmmmm_02_opcode_6c_pp_03_modrmmod, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_79_pp_01_w_00_leaf = +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_6b_pp_03_modrmmod_01_l_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3432] // VPBROADCASTW Vx,Ww + (const void *)&gInstructions[ 2650] // TTCMMIMFP16PS rTt,mTt,vTt }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_79_pp_01_w = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_6b_pp_03_modrmmod_01_l_00_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_79_pp_01_w_00_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_6b_pp_03_modrmmod_01_l_00_w_00_leaf, /* 01 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_79_pp = +const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_6b_pp_03_modrmmod_01_l = { - ND_ILUT_EX_PP, + ND_ILUT_EX_L, { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_79_pp_01_w, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_6b_pp_03_modrmmod_01_l_00_w, + /* 01 */ (const void *)ND_NULL, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_78_pp_01_w_00_leaf = +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_6b_pp_03_modrmmod = +{ + ND_ILUT_MODRM_MOD, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_6b_pp_03_modrmmod_01_l, + } +}; + +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_6b_pp_02_modrmmod_01_l_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3421] // VPBROADCASTB Vx,Wb + (const void *)&gInstructions[ 2651] // TTCMMRLFP16PS rTt,mTt,vTt }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_78_pp_01_w = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_6b_pp_02_modrmmod_01_l_00_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_78_pp_01_w_00_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_6b_pp_02_modrmmod_01_l_00_w_00_leaf, /* 01 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_78_pp = +const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_6b_pp_02_modrmmod_01_l = { - ND_ILUT_EX_PP, + ND_ILUT_EX_L, { - /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_78_pp_01_w, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_6b_pp_02_modrmmod_01_l_00_w, + /* 01 */ (const void *)ND_NULL, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_72_pp_02_w_00_leaf = +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_6b_pp_02_modrmmod = +{ + ND_ILUT_MODRM_MOD, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_6b_pp_02_modrmmod_01_l, + } +}; + +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_6b_pp_01_modrmmod_01_l_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2752] // VCVTNEPS2BF16 Vx,Wx + (const void *)&gInstructions[ 2604] // TCONJTFP16 rTt,mTt }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_72_pp_02_w = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_6b_pp_01_modrmmod_01_l_00_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_72_pp_02_w_00_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_6b_pp_01_modrmmod_01_l_00_w_00_leaf, /* 01 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_72_pp = +const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_6b_pp_01_modrmmod_01_l = { - ND_ILUT_EX_PP, + ND_ILUT_EX_L, { - /* 00 */ (const void *)ND_NULL, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_6b_pp_01_modrmmod_01_l_00_w, /* 01 */ (const void *)ND_NULL, - /* 02 */ (const void *)&gVexMap_mmmmm_02_opcode_72_pp_02_w, + /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_6c_pp_01_modrmmod_01_l_00_w_00_leaf = +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_6b_pp_01_modrmmod = +{ + ND_ILUT_MODRM_MOD, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_6b_pp_01_modrmmod_01_l, + } +}; + +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_6b_pp_00_modrmmod_01_l_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2587] // TCMMIMFP16PS rTt,mTt,vTt + (const void *)&gInstructions[ 2603] // TCONJTCMMIMFP16PS rTt,mTt,vTt }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_6c_pp_01_modrmmod_01_l_00_w = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_6b_pp_00_modrmmod_01_l_00_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_6c_pp_01_modrmmod_01_l_00_w_00_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_6b_pp_00_modrmmod_01_l_00_w_00_leaf, /* 01 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_6c_pp_01_modrmmod_01_l = +const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_6b_pp_00_modrmmod_01_l = { ND_ILUT_EX_L, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_6c_pp_01_modrmmod_01_l_00_w, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_6b_pp_00_modrmmod_01_l_00_w, /* 01 */ (const void *)ND_NULL, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_6c_pp_01_modrmmod = +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_6b_pp_00_modrmmod = { ND_ILUT_MODRM_MOD, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_6c_pp_01_modrmmod_01_l, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_6b_pp_00_modrmmod_01_l, } }; -const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_6c_pp_00_modrmmod_01_l_00_w_00_leaf = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_6b_pp = +{ + ND_ILUT_EX_PP, + { + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_6b_pp_00_modrmmod, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_6b_pp_01_modrmmod, + /* 02 */ (const void *)&gVexMap_mmmmm_02_opcode_6b_pp_02_modrmmod, + /* 03 */ (const void *)&gVexMap_mmmmm_02_opcode_6b_pp_03_modrmmod, + } +}; + +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_5f_pp_02_modrmmod_01_l_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2588] // TCMMRLFP16PS rTt,mTt,vTt + (const void *)&gInstructions[ 2655] // TTRANSPOSED rTt,mTt }; -const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_6c_pp_00_modrmmod_01_l_00_w = +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_5f_pp_02_modrmmod_01_l_00_w = { ND_ILUT_EX_W, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_6c_pp_00_modrmmod_01_l_00_w_00_leaf, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_5f_pp_02_modrmmod_01_l_00_w_00_leaf, /* 01 */ (const void *)ND_NULL, } }; -const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_6c_pp_00_modrmmod_01_l = +const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_5f_pp_02_modrmmod_01_l = { ND_ILUT_EX_L, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_6c_pp_00_modrmmod_01_l_00_w, + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_5f_pp_02_modrmmod_01_l_00_w, /* 01 */ (const void *)ND_NULL, /* 02 */ (const void *)ND_NULL, /* 03 */ (const void *)ND_NULL, } }; -const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_6c_pp_00_modrmmod = +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_5f_pp_02_modrmmod = { ND_ILUT_MODRM_MOD, { /* 00 */ (const void *)ND_NULL, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_6c_pp_00_modrmmod_01_l, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_5f_pp_02_modrmmod_01_l, } }; -const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_6c_pp = +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_5f_pp = { ND_ILUT_EX_PP, { - /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_6c_pp_00_modrmmod, - /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_6c_pp_01_modrmmod, - /* 02 */ (const void *)ND_NULL, + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)&gVexMap_mmmmm_02_opcode_5f_pp_02_modrmmod, /* 03 */ (const void *)ND_NULL, } }; @@ -5849,7 +6965,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_6c_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_5e_pp_03_modrmmod_01_l_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2591] // TDPBSSD rTt,mTt,vTt + (const void *)&gInstructions[ 2619] // TDPBSSD rTt,mTt,vTt }; const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_5e_pp_03_modrmmod_01_l_00_w = @@ -5884,7 +7000,7 @@ const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_5e_pp_03_modrmmod = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_5e_pp_02_modrmmod_01_l_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2592] // TDPBSUD rTt,mTt,vTt + (const void *)&gInstructions[ 2620] // TDPBSUD rTt,mTt,vTt }; const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_5e_pp_02_modrmmod_01_l_00_w = @@ -5919,7 +7035,7 @@ const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_5e_pp_02_modrmmod = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_5e_pp_01_modrmmod_01_l_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2593] // TDPBUSD rTt,mTt,vTt + (const void *)&gInstructions[ 2621] // TDPBUSD rTt,mTt,vTt }; const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_5e_pp_01_modrmmod_01_l_00_w = @@ -5954,7 +7070,7 @@ const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_5e_pp_01_modrmmod = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_5e_pp_00_modrmmod_01_l_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2594] // TDPBUUD rTt,mTt,vTt + (const void *)&gInstructions[ 2622] // TDPBUUD rTt,mTt,vTt }; const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_5e_pp_00_modrmmod_01_l_00_w = @@ -6000,7 +7116,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_5e_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_5c_pp_03_modrmmod_01_l_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2595] // TDPFP16PS rTt,mTt,vTt + (const void *)&gInstructions[ 2623] // TDPFP16PS rTt,mTt,vTt }; const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_5c_pp_03_modrmmod_01_l_00_w = @@ -6035,7 +7151,7 @@ const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_5c_pp_03_modrmmod = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_5c_pp_02_modrmmod_01_l_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2590] // TDPBF16PS rTt,mTt,vTt + (const void *)&gInstructions[ 2616] // TDPBF16PS rTt,mTt,vTt }; const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_5c_pp_02_modrmmod_01_l_00_w = @@ -6081,7 +7197,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_5c_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_5a_pp_01_modrmmod_00_l_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2692] // VBROADCASTI128 Vqq,Mdq + (const void *)&gInstructions[ 2733] // VBROADCASTI128 Vqq,Mdq }; const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_5a_pp_01_modrmmod_00_l_01_w = @@ -6127,7 +7243,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_5a_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_59_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3429] // VPBROADCASTQ Vx,Wq + (const void *)&gInstructions[ 3474] // VPBROADCASTQ Vx,Wq }; const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_59_pp_01_w = @@ -6153,7 +7269,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_59_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_58_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3424] // VPBROADCASTD Vx,Wd + (const void *)&gInstructions[ 3469] // VPBROADCASTD Vx,Wd }; const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_58_pp_01_w = @@ -6179,7 +7295,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_58_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_53_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3498] // VPDPWSSDS Vx,Hx,Wx + (const void *)&gInstructions[ 3543] // VPDPWSSDS Vx,Hx,Wx }; const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_53_pp_01_w = @@ -6205,7 +7321,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_53_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_52_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3496] // VPDPWSSD Vx,Hx,Wx + (const void *)&gInstructions[ 3541] // VPDPWSSD Vx,Hx,Wx }; const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_52_pp_01_w = @@ -6231,7 +7347,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_52_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_51_pp_03_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3482] // VPDPBSSDS Vx,Hx,Wx + (const void *)&gInstructions[ 3527] // VPDPBSSDS Vx,Hx,Wx }; const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_51_pp_03_w = @@ -6246,7 +7362,7 @@ const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_51_pp_03_w = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_51_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3486] // VPDPBSUDS Vx,Hx,Wx + (const void *)&gInstructions[ 3531] // VPDPBSUDS Vx,Hx,Wx }; const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_51_pp_02_w = @@ -6261,7 +7377,7 @@ const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_51_pp_02_w = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_51_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3490] // VPDPBUSDS Vx,Hx,Wx + (const void *)&gInstructions[ 3535] // VPDPBUSDS Vx,Hx,Wx }; const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_51_pp_01_w = @@ -6276,7 +7392,7 @@ const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_51_pp_01_w = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_51_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3494] // VPDPBUUDS Vx,Hx,Wx + (const void *)&gInstructions[ 3539] // VPDPBUUDS Vx,Hx,Wx }; const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_51_pp_00_w = @@ -6302,7 +7418,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_51_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_50_pp_03_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3480] // VPDPBSSD Vx,Hx,Wx + (const void *)&gInstructions[ 3525] // VPDPBSSD Vx,Hx,Wx }; const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_50_pp_03_w = @@ -6317,7 +7433,7 @@ const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_50_pp_03_w = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_50_pp_02_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3484] // VPDPBSUD Vx,Hx,Wx + (const void *)&gInstructions[ 3529] // VPDPBSUD Vx,Hx,Wx }; const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_50_pp_02_w = @@ -6332,7 +7448,7 @@ const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_50_pp_02_w = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_50_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3488] // VPDPBUSD Vx,Hx,Wx + (const void *)&gInstructions[ 3533] // VPDPBUSD Vx,Hx,Wx }; const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_50_pp_01_w = @@ -6347,7 +7463,7 @@ const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_50_pp_01_w = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_50_pp_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3492] // VPDPBUUD Vx,Hx,Wx + (const void *)&gInstructions[ 3537] // VPDPBUUD Vx,Hx,Wx }; const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_50_pp_00_w = @@ -6373,7 +7489,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_50_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_4b_pp_03_modrmmod_00_l_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2606] // TILELOADD rTt,Mt + (const void *)&gInstructions[ 2636] // TILELOADD rTt,Mt }; const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_4b_pp_03_modrmmod_00_l_00_w = @@ -6408,7 +7524,7 @@ const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_4b_pp_03_modrmmod = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_4b_pp_02_modrmmod_00_l_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2611] // TILESTORED Mt,rTt + (const void *)&gInstructions[ 2645] // TILESTORED Mt,rTt }; const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_4b_pp_02_modrmmod_00_l_00_w = @@ -6443,7 +7559,7 @@ const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_4b_pp_02_modrmmod = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_4b_pp_01_modrmmod_00_l_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2608] // TILELOADDT1 rTt,Mt + (const void *)&gInstructions[ 2640] // TILELOADDT1 rTt,Mt }; const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_4b_pp_01_modrmmod_00_l_00_w = @@ -6486,10 +7602,91 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_4b_pp = } }; +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_4a_pp_03_modrmmod_00_l_00_w_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 2637] // TILELOADDRS rTt,Mt +}; + +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_4a_pp_03_modrmmod_00_l_00_w = +{ + ND_ILUT_EX_W, + { + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_4a_pp_03_modrmmod_00_l_00_w_00_leaf, + /* 01 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_4a_pp_03_modrmmod_00_l = +{ + ND_ILUT_EX_L, + { + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_4a_pp_03_modrmmod_00_l_00_w, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_4a_pp_03_modrmmod = +{ + ND_ILUT_MODRM_MOD, + { + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_4a_pp_03_modrmmod_00_l, + /* 01 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_4a_pp_01_modrmmod_00_l_00_w_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 2638] // TILELOADDRST1 rTt,Mt +}; + +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_4a_pp_01_modrmmod_00_l_00_w = +{ + ND_ILUT_EX_W, + { + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_4a_pp_01_modrmmod_00_l_00_w_00_leaf, + /* 01 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_4a_pp_01_modrmmod_00_l = +{ + ND_ILUT_EX_L, + { + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_4a_pp_01_modrmmod_00_l_00_w, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_4a_pp_01_modrmmod = +{ + ND_ILUT_MODRM_MOD, + { + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_4a_pp_01_modrmmod_00_l, + /* 01 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_4a_pp = +{ + ND_ILUT_EX_PP, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_4a_pp_01_modrmmod, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)&gVexMap_mmmmm_02_opcode_4a_pp_03_modrmmod, + } +}; + const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_49_pp_03_modrmmod_01_modrmrm_00_l_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2612] // TILEZERO rTt + (const void *)&gInstructions[ 2646] // TILEZERO rTt }; const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_49_pp_03_modrmmod_01_modrmrm_00_l_00_w = @@ -6539,7 +7736,7 @@ const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_49_pp_03_modrmmod = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_49_pp_01_modrmreg_00_modrmmod_00_l_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2521] // STTILECFG Moq + (const void *)&gInstructions[ 2527] // STTILECFG Moq }; const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_49_pp_01_modrmreg_00_modrmmod_00_l_00_w = @@ -6589,7 +7786,7 @@ const ND_TABLE_MODRM_REG gVexMap_mmmmm_02_opcode_49_pp_01_modrmreg = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_49_pp_00_modrmreg_00_modrmmod_01_modrmrm_00_l_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2609] // TILERELEASE + (const void *)&gInstructions[ 2643] // TILERELEASE }; const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_49_pp_00_modrmreg_00_modrmmod_01_modrmrm_00_l_00_w = @@ -6688,16 +7885,97 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_49_pp = } }; +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_48_pp_01_modrmmod_01_l_00_w_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 2648] // TMMULTF32PS rTt,mTt,vTt +}; + +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_48_pp_01_modrmmod_01_l_00_w = +{ + ND_ILUT_EX_W, + { + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_48_pp_01_modrmmod_01_l_00_w_00_leaf, + /* 01 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_48_pp_01_modrmmod_01_l = +{ + ND_ILUT_EX_L, + { + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_48_pp_01_modrmmod_01_l_00_w, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_48_pp_01_modrmmod = +{ + ND_ILUT_MODRM_MOD, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_48_pp_01_modrmmod_01_l, + } +}; + +const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_48_pp_00_modrmmod_01_l_00_w_00_leaf = +{ + ND_ILUT_INSTRUCTION, + (const void *)&gInstructions[ 2654] // TTMMULTF32PS rTt,mTt,vTt +}; + +const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_48_pp_00_modrmmod_01_l_00_w = +{ + ND_ILUT_EX_W, + { + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_48_pp_00_modrmmod_01_l_00_w_00_leaf, + /* 01 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_48_pp_00_modrmmod_01_l = +{ + ND_ILUT_EX_L, + { + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_48_pp_00_modrmmod_01_l_00_w, + /* 01 */ (const void *)ND_NULL, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } +}; + +const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_48_pp_00_modrmmod = +{ + ND_ILUT_MODRM_MOD, + { + /* 00 */ (const void *)ND_NULL, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_48_pp_00_modrmmod_01_l, + } +}; + +const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_48_pp = +{ + ND_ILUT_EX_PP, + { + /* 00 */ (const void *)&gVexMap_mmmmm_02_opcode_48_pp_00_modrmmod, + /* 01 */ (const void *)&gVexMap_mmmmm_02_opcode_48_pp_01_modrmmod, + /* 02 */ (const void *)ND_NULL, + /* 03 */ (const void *)ND_NULL, + } +}; + const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_47_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3836] // VPSLLVQ Vx,Hx,Wx + (const void *)&gInstructions[ 3881] // VPSLLVQ Vx,Hx,Wx }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_47_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3834] // VPSLLVD Vx,Hx,Wx + (const void *)&gInstructions[ 3879] // VPSLLVD Vx,Hx,Wx }; const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_47_pp_01_w = @@ -6723,7 +8001,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_47_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_46_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3849] // VPSRAVD Vx,Hx,Wx + (const void *)&gInstructions[ 3894] // VPSRAVD Vx,Hx,Wx }; const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_46_pp_01_w = @@ -6749,13 +8027,13 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_46_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_45_pp_01_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3869] // VPSRLVQ Vx,Hx,Wx + (const void *)&gInstructions[ 3914] // VPSRLVQ Vx,Hx,Wx }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_45_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3867] // VPSRLVD Vx,Hx,Wx + (const void *)&gInstructions[ 3912] // VPSRLVD Vx,Hx,Wx }; const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_45_pp_01_w = @@ -6781,7 +8059,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_45_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_41_pp_01_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3596] // VPHMINPOSUW Vdq,Wdq + (const void *)&gInstructions[ 3641] // VPHMINPOSUW Vdq,Wdq }; const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_41_pp_01_l = @@ -6809,7 +8087,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_41_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_40_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3741] // VPMULLD Vx,Hx,Wx + (const void *)&gInstructions[ 3786] // VPMULLD Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_40_pp = @@ -6826,7 +8104,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_40_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_3f_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3651] // VPMAXUD Vx,Hx,Wx + (const void *)&gInstructions[ 3696] // VPMAXUD Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_3f_pp = @@ -6843,7 +8121,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_3f_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_3e_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3654] // VPMAXUW Vx,Hx,Wx + (const void *)&gInstructions[ 3699] // VPMAXUW Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_3e_pp = @@ -6860,7 +8138,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_3e_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_3d_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3644] // VPMAXSD Vx,Hx,Wx + (const void *)&gInstructions[ 3689] // VPMAXSD Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_3d_pp = @@ -6877,7 +8155,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_3d_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_3c_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3642] // VPMAXSB Vx,Hx,Wx + (const void *)&gInstructions[ 3687] // VPMAXSB Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_3c_pp = @@ -6894,7 +8172,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_3c_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_3b_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3665] // VPMINUD Vx,Hx,Wx + (const void *)&gInstructions[ 3710] // VPMINUD Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_3b_pp = @@ -6911,7 +8189,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_3b_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_3a_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3668] // VPMINUW Vx,Hx,Wx + (const void *)&gInstructions[ 3713] // VPMINUW Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_3a_pp = @@ -6928,7 +8206,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_3a_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_39_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3658] // VPMINSD Vx,Hx,Wx + (const void *)&gInstructions[ 3703] // VPMINSD Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_39_pp = @@ -6945,7 +8223,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_39_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_38_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3656] // VPMINSB Vx,Hx,Wx + (const void *)&gInstructions[ 3701] // VPMINSB Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_38_pp = @@ -6962,7 +8240,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_38_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_37_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3454] // VPCMPGTQ Vx,Hx,Wx + (const void *)&gInstructions[ 3499] // VPCMPGTQ Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_37_pp = @@ -6979,7 +8257,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_37_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_36_pp_01_l_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3515] // VPERMD Vqq,Hqq,Wqq + (const void *)&gInstructions[ 3560] // VPERMD Vqq,Hqq,Wqq }; const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_36_pp_01_l_01_w = @@ -7016,13 +8294,13 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_36_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_35_pp_01_l_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3725] // VPMOVZXDQ Vqq,Wdq + (const void *)&gInstructions[ 3770] // VPMOVZXDQ Vqq,Wdq }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_35_pp_01_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3724] // VPMOVZXDQ Vdq,Wq + (const void *)&gInstructions[ 3769] // VPMOVZXDQ Vdq,Wq }; const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_35_pp_01_l = @@ -7050,13 +8328,13 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_35_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_34_pp_01_l_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3731] // VPMOVZXWQ Vqq,Wq + (const void *)&gInstructions[ 3776] // VPMOVZXWQ Vqq,Wq }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_34_pp_01_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3730] // VPMOVZXWQ Vdq,Wd + (const void *)&gInstructions[ 3775] // VPMOVZXWQ Vdq,Wd }; const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_34_pp_01_l = @@ -7084,13 +8362,13 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_34_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_33_pp_01_l_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3728] // VPMOVZXWD Vqq,Wdq + (const void *)&gInstructions[ 3773] // VPMOVZXWD Vqq,Wdq }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_33_pp_01_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3727] // VPMOVZXWD Vdq,Wq + (const void *)&gInstructions[ 3772] // VPMOVZXWD Vdq,Wq }; const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_33_pp_01_l = @@ -7118,13 +8396,13 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_33_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_32_pp_01_l_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3719] // VPMOVZXBQ Vqq,Wd + (const void *)&gInstructions[ 3764] // VPMOVZXBQ Vqq,Wd }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_32_pp_01_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3718] // VPMOVZXBQ Vdq,Ww + (const void *)&gInstructions[ 3763] // VPMOVZXBQ Vdq,Ww }; const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_32_pp_01_l = @@ -7152,13 +8430,13 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_32_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_31_pp_01_l_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3716] // VPMOVZXBD Vqq,Wq + (const void *)&gInstructions[ 3761] // VPMOVZXBD Vqq,Wq }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_31_pp_01_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3715] // VPMOVZXBD Vdq,Wd + (const void *)&gInstructions[ 3760] // VPMOVZXBD Vdq,Wd }; const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_31_pp_01_l = @@ -7186,13 +8464,13 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_31_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_30_pp_01_l_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3722] // VPMOVZXBW Vqq,Wdq + (const void *)&gInstructions[ 3767] // VPMOVZXBW Vqq,Wdq }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_30_pp_01_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3721] // VPMOVZXBW Vdq,Wq + (const void *)&gInstructions[ 3766] // VPMOVZXBW Vdq,Wq }; const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_30_pp_01_l = @@ -7220,7 +8498,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_30_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_2f_pp_01_modrmmod_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3187] // VMASKMOVPD Mx,Hx,Vx + (const void *)&gInstructions[ 3228] // VMASKMOVPD Mx,Hx,Vx }; const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_2f_pp_01_modrmmod_00_w = @@ -7255,7 +8533,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_2f_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_2e_pp_01_modrmmod_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3189] // VMASKMOVPS Mx,Hx,Vx + (const void *)&gInstructions[ 3230] // VMASKMOVPS Mx,Hx,Vx }; const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_2e_pp_01_modrmmod_00_w = @@ -7290,7 +8568,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_2e_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_2d_pp_01_modrmmod_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3186] // VMASKMOVPD Vx,Hx,Mx + (const void *)&gInstructions[ 3227] // VMASKMOVPD Vx,Hx,Mx }; const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_2d_pp_01_modrmmod_00_w = @@ -7325,7 +8603,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_2d_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_2c_pp_01_modrmmod_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3188] // VMASKMOVPS Vx,Hx,Mx + (const void *)&gInstructions[ 3229] // VMASKMOVPS Vx,Hx,Mx }; const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_2c_pp_01_modrmmod_00_w = @@ -7360,7 +8638,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_2c_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_2b_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3381] // VPACKUSDW Vx,Hx,Wx + (const void *)&gInstructions[ 3426] // VPACKUSDW Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_2b_pp = @@ -7377,7 +8655,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_2b_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_2a_pp_01_modrmmod_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3288] // VMOVNTDQA Vx,Mx + (const void *)&gInstructions[ 3329] // VMOVNTDQA Vx,Mx }; const ND_TABLE_MODRM_MOD gVexMap_mmmmm_02_opcode_2a_pp_01_modrmmod = @@ -7403,7 +8681,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_2a_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_29_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3444] // VPCMPEQQ Vx,Hx,Wx + (const void *)&gInstructions[ 3489] // VPCMPEQQ Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_29_pp = @@ -7420,7 +8698,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_29_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_28_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3733] // VPMULDQ Vx,Hx,Wx + (const void *)&gInstructions[ 3778] // VPMULDQ Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_28_pp = @@ -7437,13 +8715,13 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_28_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_25_pp_01_l_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3699] // VPMOVSXDQ Vqq,Wdq + (const void *)&gInstructions[ 3744] // VPMOVSXDQ Vqq,Wdq }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_25_pp_01_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3698] // VPMOVSXDQ Vdq,Wq + (const void *)&gInstructions[ 3743] // VPMOVSXDQ Vdq,Wq }; const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_25_pp_01_l = @@ -7471,13 +8749,13 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_25_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_24_pp_01_l_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3705] // VPMOVSXWQ Vqq,Wq + (const void *)&gInstructions[ 3750] // VPMOVSXWQ Vqq,Wq }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_24_pp_01_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3704] // VPMOVSXWQ Vdq,Wd + (const void *)&gInstructions[ 3749] // VPMOVSXWQ Vdq,Wd }; const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_24_pp_01_l = @@ -7505,13 +8783,13 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_24_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_23_pp_01_l_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3702] // VPMOVSXWD Vqq,Wdq + (const void *)&gInstructions[ 3747] // VPMOVSXWD Vqq,Wdq }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_23_pp_01_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3701] // VPMOVSXWD Vdq,Wq + (const void *)&gInstructions[ 3746] // VPMOVSXWD Vdq,Wq }; const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_23_pp_01_l = @@ -7539,13 +8817,13 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_23_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_22_pp_01_l_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3693] // VPMOVSXBQ Vqq,Wd + (const void *)&gInstructions[ 3738] // VPMOVSXBQ Vqq,Wd }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_22_pp_01_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3692] // VPMOVSXBQ Vdq,Ww + (const void *)&gInstructions[ 3737] // VPMOVSXBQ Vdq,Ww }; const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_22_pp_01_l = @@ -7573,13 +8851,13 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_22_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_21_pp_01_l_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3690] // VPMOVSXBD Vqq,Wq + (const void *)&gInstructions[ 3735] // VPMOVSXBD Vqq,Wq }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_21_pp_01_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3689] // VPMOVSXBD Vdq,Wd + (const void *)&gInstructions[ 3734] // VPMOVSXBD Vdq,Wd }; const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_21_pp_01_l = @@ -7607,13 +8885,13 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_21_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_20_pp_01_l_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3696] // VPMOVSXBW Vqq,Wdq + (const void *)&gInstructions[ 3741] // VPMOVSXBW Vqq,Wdq }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_20_pp_01_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3695] // VPMOVSXBW Vdq,Wq + (const void *)&gInstructions[ 3740] // VPMOVSXBW Vdq,Wq }; const ND_TABLE_EX_L gVexMap_mmmmm_02_opcode_20_pp_01_l = @@ -7641,7 +8919,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_20_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_1e_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3372] // VPABSD Vx,Wx + (const void *)&gInstructions[ 3417] // VPABSD Vx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_1e_pp = @@ -7658,7 +8936,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_1e_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_1d_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3375] // VPABSW Vx,Wx + (const void *)&gInstructions[ 3420] // VPABSW Vx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_1d_pp = @@ -7675,7 +8953,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_1d_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_1c_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3370] // VPABSB Vx,Wx + (const void *)&gInstructions[ 3415] // VPABSB Vx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_1c_pp = @@ -7692,7 +8970,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_1c_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_1a_pp_01_modrmmod_00_l_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2686] // VBROADCASTF128 Vqq,Mdq + (const void *)&gInstructions[ 2727] // VBROADCASTF128 Vqq,Mdq }; const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_1a_pp_01_modrmmod_00_l_01_w = @@ -7738,7 +9016,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_1a_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_19_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2699] // VBROADCASTSD Vqq,Wsd + (const void *)&gInstructions[ 2740] // VBROADCASTSD Vqq,Wsd }; const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_19_pp_01_w = @@ -7764,7 +9042,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_19_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_18_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2701] // VBROADCASTSS Vx,Wss + (const void *)&gInstructions[ 2742] // VBROADCASTSS Vx,Wss }; const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_18_pp_01_w = @@ -7790,7 +9068,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_18_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_17_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3893] // VPTEST Vx,Wx + (const void *)&gInstructions[ 3938] // VPTEST Vx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_17_pp = @@ -7807,7 +9085,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_17_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_16_pp_01_l_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3540] // VPERMPS Vqq,Hqq,Wqq + (const void *)&gInstructions[ 3585] // VPERMPS Vqq,Hqq,Wqq }; const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_16_pp_01_l_01_w = @@ -7844,7 +9122,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_16_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_13_pp_01_l_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2768] // VCVTPH2PS Vqq,Wdq + (const void *)&gInstructions[ 2809] // VCVTPH2PS Vqq,Wdq }; const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_13_pp_01_l_01_w = @@ -7859,7 +9137,7 @@ const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_13_pp_01_l_01_w = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_13_pp_01_l_00_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2767] // VCVTPH2PS Vdq,Wq + (const void *)&gInstructions[ 2808] // VCVTPH2PS Vdq,Wq }; const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_13_pp_01_l_00_w = @@ -7896,7 +9174,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_13_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_0f_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4027] // VTESTPD Vx,Wx + (const void *)&gInstructions[ 4074] // VTESTPD Vx,Wx }; const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_0f_pp_01_w = @@ -7922,7 +9200,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_0f_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_0e_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4028] // VTESTPS Vx,Wx + (const void *)&gInstructions[ 4075] // VTESTPS Vx,Wx }; const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_0e_pp_01_w = @@ -7948,7 +9226,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_0e_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_0d_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3528] // VPERMILPD Vx,Hx,Wx + (const void *)&gInstructions[ 3573] // VPERMILPD Vx,Hx,Wx }; const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_0d_pp_01_w = @@ -7974,7 +9252,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_0d_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_0c_pp_01_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3532] // VPERMILPS Vx,Hx,Wx + (const void *)&gInstructions[ 3577] // VPERMILPS Vx,Hx,Wx }; const ND_TABLE_EX_W gVexMap_mmmmm_02_opcode_0c_pp_01_w = @@ -8000,7 +9278,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_0c_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_0b_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3735] // VPMULHRSW Vx,Hx,Wx + (const void *)&gInstructions[ 3780] // VPMULHRSW Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_0b_pp = @@ -8017,7 +9295,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_0b_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_0a_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3821] // VPSIGND Vx,Hx,Wx + (const void *)&gInstructions[ 3866] // VPSIGND Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_0a_pp = @@ -8034,7 +9312,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_0a_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_09_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3822] // VPSIGNW Vx,Hx,Wx + (const void *)&gInstructions[ 3867] // VPSIGNW Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_09_pp = @@ -8051,7 +9329,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_09_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_08_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3820] // VPSIGNB Vx,Hx,Wx + (const void *)&gInstructions[ 3865] // VPSIGNB Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_08_pp = @@ -8068,7 +9346,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_08_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_07_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3600] // VPHSUBSW Vx,Hx,Wx + (const void *)&gInstructions[ 3645] // VPHSUBSW Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_07_pp = @@ -8085,7 +9363,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_07_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_06_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3598] // VPHSUBD Vx,Hx,Wx + (const void *)&gInstructions[ 3643] // VPHSUBD Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_06_pp = @@ -8102,7 +9380,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_06_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_05_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3601] // VPHSUBW Vx,Hx,Wx + (const void *)&gInstructions[ 3646] // VPHSUBW Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_05_pp = @@ -8119,7 +9397,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_05_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_04_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3634] // VPMADDUBSW Vx,Hx,Wx + (const void *)&gInstructions[ 3679] // VPMADDUBSW Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_04_pp = @@ -8136,7 +9414,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_04_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_03_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3586] // VPHADDSW Vx,Hx,Wx + (const void *)&gInstructions[ 3631] // VPHADDSW Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_03_pp = @@ -8153,7 +9431,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_03_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_02_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3584] // VPHADDD Vx,Hx,Wx + (const void *)&gInstructions[ 3629] // VPHADDD Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_02_pp = @@ -8170,7 +9448,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_02_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_01_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3593] // VPHADDW Vx,Hx,Wx + (const void *)&gInstructions[ 3638] // VPHADDW Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_01_pp = @@ -8187,7 +9465,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_01_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_02_opcode_00_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3812] // VPSHUFB Vx,Hx,Wx + (const void *)&gInstructions[ 3857] // VPSHUFB Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_02_opcode_00_pp = @@ -8277,9 +9555,9 @@ const ND_TABLE_OPCODE gVexMap_mmmmm_02_opcode = /* 45 */ (const void *)&gVexMap_mmmmm_02_opcode_45_pp, /* 46 */ (const void *)&gVexMap_mmmmm_02_opcode_46_pp, /* 47 */ (const void *)&gVexMap_mmmmm_02_opcode_47_pp, - /* 48 */ (const void *)ND_NULL, + /* 48 */ (const void *)&gVexMap_mmmmm_02_opcode_48_pp, /* 49 */ (const void *)&gVexMap_mmmmm_02_opcode_49_pp, - /* 4a */ (const void *)ND_NULL, + /* 4a */ (const void *)&gVexMap_mmmmm_02_opcode_4a_pp, /* 4b */ (const void *)&gVexMap_mmmmm_02_opcode_4b_pp, /* 4c */ (const void *)ND_NULL, /* 4d */ (const void *)ND_NULL, @@ -8300,7 +9578,7 @@ const ND_TABLE_OPCODE gVexMap_mmmmm_02_opcode = /* 5c */ (const void *)&gVexMap_mmmmm_02_opcode_5c_pp, /* 5d */ (const void *)ND_NULL, /* 5e */ (const void *)&gVexMap_mmmmm_02_opcode_5e_pp, - /* 5f */ (const void *)ND_NULL, + /* 5f */ (const void *)&gVexMap_mmmmm_02_opcode_5f_pp, /* 60 */ (const void *)ND_NULL, /* 61 */ (const void *)ND_NULL, /* 62 */ (const void *)ND_NULL, @@ -8312,11 +9590,11 @@ const ND_TABLE_OPCODE gVexMap_mmmmm_02_opcode = /* 68 */ (const void *)ND_NULL, /* 69 */ (const void *)ND_NULL, /* 6a */ (const void *)ND_NULL, - /* 6b */ (const void *)ND_NULL, + /* 6b */ (const void *)&gVexMap_mmmmm_02_opcode_6b_pp, /* 6c */ (const void *)&gVexMap_mmmmm_02_opcode_6c_pp, /* 6d */ (const void *)ND_NULL, - /* 6e */ (const void *)ND_NULL, - /* 6f */ (const void *)ND_NULL, + /* 6e */ (const void *)&gVexMap_mmmmm_02_opcode_6e_pp, + /* 6f */ (const void *)&gVexMap_mmmmm_02_opcode_6f_pp, /* 70 */ (const void *)ND_NULL, /* 71 */ (const void *)ND_NULL, /* 72 */ (const void *)&gVexMap_mmmmm_02_opcode_72_pp, @@ -8467,7 +9745,7 @@ const ND_TABLE_OPCODE gVexMap_mmmmm_02_opcode = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_fe_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3387] // VPADDD Vx,Hx,Wx + (const void *)&gInstructions[ 3432] // VPADDD Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_fe_pp = @@ -8484,7 +9762,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_fe_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_fd_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3399] // VPADDW Vx,Hx,Wx + (const void *)&gInstructions[ 3444] // VPADDW Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_fd_pp = @@ -8501,7 +9779,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_fd_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_fc_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3385] // VPADDB Vx,Hx,Wx + (const void *)&gInstructions[ 3430] // VPADDB Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_fc_pp = @@ -8518,7 +9796,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_fc_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_fb_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3880] // VPSUBQ Vx,Hx,Wx + (const void *)&gInstructions[ 3925] // VPSUBQ Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_fb_pp = @@ -8535,7 +9813,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_fb_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_fa_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3878] // VPSUBD Vx,Hx,Wx + (const void *)&gInstructions[ 3923] // VPSUBD Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_fa_pp = @@ -8552,7 +9830,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_fa_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_f9_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3890] // VPSUBW Vx,Hx,Wx + (const void *)&gInstructions[ 3935] // VPSUBW Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_f9_pp = @@ -8569,7 +9847,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_f9_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_f8_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3876] // VPSUBB Vx,Hx,Wx + (const void *)&gInstructions[ 3921] // VPSUBB Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_f8_pp = @@ -8586,7 +9864,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_f8_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_f7_pp_01_modrmmod_01_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3185] // VMASKMOVDQU Vdq,Udq + (const void *)&gInstructions[ 3226] // VMASKMOVDQU Vdq,Udq }; const ND_TABLE_EX_L gVexMap_mmmmm_01_opcode_f7_pp_01_modrmmod_01_l = @@ -8623,7 +9901,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_f7_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_f6_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3778] // VPSADBW Vx,Hx,Wx + (const void *)&gInstructions[ 3823] // VPSADBW Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_f6_pp = @@ -8640,7 +9918,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_f6_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_f5_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3636] // VPMADDWD Vx,Hx,Wx + (const void *)&gInstructions[ 3681] // VPMADDWD Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_f5_pp = @@ -8657,7 +9935,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_f5_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_f4_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3747] // VPMULUDQ Vx,Hx,Wx + (const void *)&gInstructions[ 3792] // VPMULUDQ Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_f4_pp = @@ -8674,7 +9952,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_f4_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_f3_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3832] // VPSLLQ Vx,Hx,Wdq + (const void *)&gInstructions[ 3877] // VPSLLQ Vx,Hx,Wdq }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_f3_pp = @@ -8691,7 +9969,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_f3_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_f2_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3826] // VPSLLD Vx,Hx,Wdq + (const void *)&gInstructions[ 3871] // VPSLLD Vx,Hx,Wdq }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_f2_pp = @@ -8708,7 +9986,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_f2_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_f1_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3841] // VPSLLW Vx,Hx,Wdq + (const void *)&gInstructions[ 3886] // VPSLLW Vx,Hx,Wdq }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_f1_pp = @@ -8725,7 +10003,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_f1_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_f0_pp_03_modrmmod_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3183] // VLDDQU Vx,Mx + (const void *)&gInstructions[ 3224] // VLDDQU Vx,Mx }; const ND_TABLE_MODRM_MOD gVexMap_mmmmm_01_opcode_f0_pp_03_modrmmod = @@ -8751,7 +10029,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_f0_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_ef_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3918] // VPXOR Vx,Hx,Wx + (const void *)&gInstructions[ 3963] // VPXOR Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_ef_pp = @@ -8768,7 +10046,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_ef_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_ee_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3647] // VPMAXSW Vx,Hx,Wx + (const void *)&gInstructions[ 3692] // VPMAXSW Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_ee_pp = @@ -8785,7 +10063,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_ee_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_ed_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3393] // VPADDSW Vx,Hx,Wx + (const void *)&gInstructions[ 3438] // VPADDSW Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_ed_pp = @@ -8802,7 +10080,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_ed_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_ec_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3391] // VPADDSB Vx,Hx,Wx + (const void *)&gInstructions[ 3436] // VPADDSB Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_ec_pp = @@ -8819,7 +10097,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_ec_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_eb_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3752] // VPOR Vx,Hx,Wx + (const void *)&gInstructions[ 3797] // VPOR Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_eb_pp = @@ -8836,7 +10114,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_eb_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_ea_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3661] // VPMINSW Vx,Hx,Wx + (const void *)&gInstructions[ 3706] // VPMINSW Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_ea_pp = @@ -8853,7 +10131,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_ea_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_e9_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3884] // VPSUBSW Vx,Hx,Wx + (const void *)&gInstructions[ 3929] // VPSUBSW Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_e9_pp = @@ -8870,7 +10148,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_e9_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_e8_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3882] // VPSUBSB Vx,Hx,Wx + (const void *)&gInstructions[ 3927] // VPSUBSB Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_e8_pp = @@ -8887,7 +10165,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_e8_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_e7_pp_01_modrmmod_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3286] // VMOVNTDQ Mx,Vx + (const void *)&gInstructions[ 3327] // VMOVNTDQ Mx,Vx }; const ND_TABLE_MODRM_MOD gVexMap_mmmmm_01_opcode_e7_pp_01_modrmmod = @@ -8913,19 +10191,19 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_e7_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_e6_pp_03_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2754] // VCVTPD2DQ Vdq,Wx + (const void *)&gInstructions[ 2795] // VCVTPD2DQ Vdq,Wx }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_e6_pp_02_l_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2731] // VCVTDQ2PD Vqq,Wdq + (const void *)&gInstructions[ 2772] // VCVTDQ2PD Vqq,Wdq }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_e6_pp_02_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2730] // VCVTDQ2PD Vdq,Wq + (const void *)&gInstructions[ 2771] // VCVTDQ2PD Vdq,Wq }; const ND_TABLE_EX_L gVexMap_mmmmm_01_opcode_e6_pp_02_l = @@ -8942,7 +10220,7 @@ const ND_TABLE_EX_L gVexMap_mmmmm_01_opcode_e6_pp_02_l = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_e6_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2817] // VCVTTPD2DQ Vdq,Wx + (const void *)&gInstructions[ 2858] // VCVTTPD2DQ Vdq,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_e6_pp = @@ -8959,7 +10237,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_e6_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_e5_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3739] // VPMULHW Vx,Hx,Wx + (const void *)&gInstructions[ 3784] // VPMULHW Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_e5_pp = @@ -8976,7 +10254,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_e5_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_e4_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3737] // VPMULHUW Vx,Hx,Wx + (const void *)&gInstructions[ 3782] // VPMULHUW Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_e4_pp = @@ -8993,7 +10271,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_e4_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_e3_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3411] // VPAVGW Vx,Hx,Wx + (const void *)&gInstructions[ 3456] // VPAVGW Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_e3_pp = @@ -9010,7 +10288,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_e3_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_e2_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3845] // VPSRAD Vx,Hx,Wdq + (const void *)&gInstructions[ 3890] // VPSRAD Vx,Hx,Wdq }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_e2_pp = @@ -9027,7 +10305,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_e2_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_e1_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3855] // VPSRAW Vx,Hx,Wdq + (const void *)&gInstructions[ 3900] // VPSRAW Vx,Hx,Wdq }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_e1_pp = @@ -9044,7 +10322,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_e1_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_e0_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3409] // VPAVGB Vx,Hx,Wx + (const void *)&gInstructions[ 3454] // VPAVGB Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_e0_pp = @@ -9061,7 +10339,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_e0_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_df_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3404] // VPANDN Vx,Hx,Wx + (const void *)&gInstructions[ 3449] // VPANDN Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_df_pp = @@ -9078,7 +10356,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_df_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_de_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3649] // VPMAXUB Vx,Hx,Wx + (const void *)&gInstructions[ 3694] // VPMAXUB Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_de_pp = @@ -9095,7 +10373,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_de_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_dd_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3397] // VPADDUSW Vx,Hx,Wx + (const void *)&gInstructions[ 3442] // VPADDUSW Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_dd_pp = @@ -9112,7 +10390,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_dd_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_dc_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3395] // VPADDUSB Vx,Hx,Wx + (const void *)&gInstructions[ 3440] // VPADDUSB Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_dc_pp = @@ -9129,7 +10407,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_dc_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_db_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3402] // VPAND Vx,Hx,Wx + (const void *)&gInstructions[ 3447] // VPAND Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_db_pp = @@ -9146,7 +10424,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_db_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_da_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3663] // VPMINUB Vx,Hx,Wx + (const void *)&gInstructions[ 3708] // VPMINUB Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_da_pp = @@ -9163,7 +10441,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_da_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_d9_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3888] // VPSUBUSW Vx,Hx,Wx + (const void *)&gInstructions[ 3933] // VPSUBUSW Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_d9_pp = @@ -9180,7 +10458,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_d9_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_d8_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3886] // VPSUBUSB Vx,Hx,Wx + (const void *)&gInstructions[ 3931] // VPSUBUSB Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_d8_pp = @@ -9197,7 +10475,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_d8_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_d7_pp_01_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3677] // VPMOVMSKB Gy,Ux + (const void *)&gInstructions[ 3722] // VPMOVMSKB Gy,Ux }; const ND_TABLE_MODRM_MOD gVexMap_mmmmm_01_opcode_d7_pp_01_modrmmod = @@ -9223,7 +10501,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_d7_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_d6_pp_01_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3300] // VMOVQ Wq,Vdq + (const void *)&gInstructions[ 3341] // VMOVQ Wq,Vdq }; const ND_TABLE_EX_L gVexMap_mmmmm_01_opcode_d6_pp_01_l = @@ -9251,7 +10529,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_d6_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_d5_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3744] // VPMULLW Vx,Hx,Wx + (const void *)&gInstructions[ 3789] // VPMULLW Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_d5_pp = @@ -9268,7 +10546,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_d5_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_d4_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3389] // VPADDQ Vx,Hx,Wx + (const void *)&gInstructions[ 3434] // VPADDQ Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_d4_pp = @@ -9285,7 +10563,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_d4_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_d3_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3865] // VPSRLQ Vx,Hx,Wdq + (const void *)&gInstructions[ 3910] // VPSRLQ Vx,Hx,Wdq }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_d3_pp = @@ -9302,7 +10580,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_d3_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_d2_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3859] // VPSRLD Vx,Hx,Wdq + (const void *)&gInstructions[ 3904] // VPSRLD Vx,Hx,Wdq }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_d2_pp = @@ -9319,7 +10597,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_d2_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_d1_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3874] // VPSRLW Vx,Hx,Wdq + (const void *)&gInstructions[ 3919] // VPSRLW Vx,Hx,Wdq }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_d1_pp = @@ -9336,13 +10614,13 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_d1_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_d0_pp_03_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2657] // VADDSUBPS Vps,Hps,Wps + (const void *)&gInstructions[ 2698] // VADDSUBPS Vps,Hps,Wps }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_d0_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2656] // VADDSUBPD Vpd,Hpd,Wpd + (const void *)&gInstructions[ 2697] // VADDSUBPD Vpd,Hpd,Wpd }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_d0_pp = @@ -9359,13 +10637,13 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_d0_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_c6_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3996] // VSHUFPD Vpd,Hpd,Wpd,Ib + (const void *)&gInstructions[ 4041] // VSHUFPD Vpd,Hpd,Wpd,Ib }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_c6_pp_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3998] // VSHUFPS Vps,Hps,Wps,Ib + (const void *)&gInstructions[ 4043] // VSHUFPS Vps,Hps,Wps,Ib }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_c6_pp = @@ -9382,7 +10660,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_c6_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_c5_pp_01_modrmmod_01_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3570] // VPEXTRW Gy,Udq,Ib + (const void *)&gInstructions[ 3615] // VPEXTRW Gy,Udq,Ib }; const ND_TABLE_EX_L gVexMap_mmmmm_01_opcode_c5_pp_01_modrmmod_01_l = @@ -9419,7 +10697,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_c5_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_c4_pp_01_modrmmod_01_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3614] // VPINSRW Vdq,Hdq,Rd,Ib + (const void *)&gInstructions[ 3659] // VPINSRW Vdq,Hdq,Rd,Ib }; const ND_TABLE_EX_L gVexMap_mmmmm_01_opcode_c4_pp_01_modrmmod_01_l = @@ -9436,7 +10714,7 @@ const ND_TABLE_EX_L gVexMap_mmmmm_01_opcode_c4_pp_01_modrmmod_01_l = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_c4_pp_01_modrmmod_00_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3613] // VPINSRW Vdq,Hdq,Mw,Ib + (const void *)&gInstructions[ 3658] // VPINSRW Vdq,Hdq,Mw,Ib }; const ND_TABLE_EX_L gVexMap_mmmmm_01_opcode_c4_pp_01_modrmmod_00_l = @@ -9473,25 +10751,25 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_c4_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_c2_pp_03_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2709] // VCMPSD Vsd,Hsd,Wsd,Ib + (const void *)&gInstructions[ 2750] // VCMPSD Vsd,Hsd,Wsd,Ib }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_c2_pp_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2712] // VCMPSS Vss,Hss,Wss,Ib + (const void *)&gInstructions[ 2753] // VCMPSS Vss,Hss,Wss,Ib }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_c2_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2704] // VCMPPD Vpd,Hpd,Wpd,Ib + (const void *)&gInstructions[ 2745] // VCMPPD Vpd,Hpd,Wpd,Ib }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_c2_pp_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2707] // VCMPPS Vss,Hss,Wss,Ib + (const void *)&gInstructions[ 2748] // VCMPPS Vss,Hss,Wss,Ib }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_c2_pp = @@ -9523,7 +10801,7 @@ const ND_TABLE_MODRM_MOD gVexMap_mmmmm_01_opcode_ae_pp_03_modrmreg_07_modrmmod = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_ae_pp_03_modrmreg_06_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2499] // SPFLT Ry + (const void *)&gInstructions[ 2505] // SPFLT Ry }; const ND_TABLE_MODRM_MOD gVexMap_mmmmm_01_opcode_ae_pp_03_modrmreg_06_modrmmod = @@ -9598,7 +10876,7 @@ const ND_TABLE_MODRM_REG gVexMap_mmmmm_01_opcode_ae_pp_02_modrmreg = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_ae_pp_00_modrmreg_03_modrmmod_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4015] // VSTMXCSR Md + (const void *)&gInstructions[ 4062] // VSTMXCSR Md }; const ND_TABLE_MODRM_MOD gVexMap_mmmmm_01_opcode_ae_pp_00_modrmreg_03_modrmmod = @@ -9613,7 +10891,7 @@ const ND_TABLE_MODRM_MOD gVexMap_mmmmm_01_opcode_ae_pp_00_modrmreg_03_modrmmod = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_ae_pp_00_modrmreg_02_modrmmod_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3184] // VLDMXCSR Md + (const void *)&gInstructions[ 3225] // VLDMXCSR Md }; const ND_TABLE_MODRM_MOD gVexMap_mmmmm_01_opcode_ae_pp_00_modrmreg_02_modrmmod = @@ -10334,13 +11612,13 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_90_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_7f_pp_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3254] // VMOVDQU Wx,Vx + (const void *)&gInstructions[ 3295] // VMOVDQU Wx,Vx }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_7f_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3248] // VMOVDQA Wx,Vx + (const void *)&gInstructions[ 3289] // VMOVDQA Wx,Vx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_7f_pp = @@ -10357,7 +11635,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_7f_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_7e_pp_02_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3299] // VMOVQ Vdq,Wq + (const void *)&gInstructions[ 3340] // VMOVQ Vdq,Wq }; const ND_TABLE_EX_L gVexMap_mmmmm_01_opcode_7e_pp_02_l = @@ -10374,13 +11652,13 @@ const ND_TABLE_EX_L gVexMap_mmmmm_01_opcode_7e_pp_02_l = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_7e_pp_01_l_00_wi_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3298] // VMOVQ Ey,Vq + (const void *)&gInstructions[ 3339] // VMOVQ Ey,Vq }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_7e_pp_01_l_00_wi_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3241] // VMOVD Ey,Vd + (const void *)&gInstructions[ 3282] // VMOVD Ey,Vd }; const ND_TABLE_EX_W gVexMap_mmmmm_01_opcode_7e_pp_01_l_00_wi = @@ -10417,13 +11695,13 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_7e_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_7d_pp_03_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3168] // VHSUBPS Vps,Hps,Wps + (const void *)&gInstructions[ 3209] // VHSUBPS Vps,Hps,Wps }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_7d_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3167] // VHSUBPD Vpd,Hpd,Wpd + (const void *)&gInstructions[ 3208] // VHSUBPD Vpd,Hpd,Wpd }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_7d_pp = @@ -10440,13 +11718,13 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_7d_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_7c_pp_03_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3166] // VHADDPS Vps,Hps,Wps + (const void *)&gInstructions[ 3207] // VHADDPS Vps,Hps,Wps }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_7c_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3165] // VHADDPD Vpd,Hpd,Wpd + (const void *)&gInstructions[ 3206] // VHADDPD Vpd,Hpd,Wpd }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_7c_pp = @@ -10463,13 +11741,13 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_7c_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_77_pp_00_l_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4049] // VZEROALL + (const void *)&gInstructions[ 4096] // VZEROALL }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_77_pp_00_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4050] // VZEROUPPER + (const void *)&gInstructions[ 4097] // VZEROUPPER }; const ND_TABLE_EX_L gVexMap_mmmmm_01_opcode_77_pp_00_l = @@ -10497,7 +11775,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_77_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_76_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3442] // VPCMPEQD Vx,Hx,Wx + (const void *)&gInstructions[ 3487] // VPCMPEQD Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_76_pp = @@ -10514,7 +11792,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_76_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_75_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3446] // VPCMPEQW Vx,Hx,Wx + (const void *)&gInstructions[ 3491] // VPCMPEQW Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_75_pp = @@ -10531,7 +11809,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_75_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_74_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3440] // VPCMPEQB Vx,Hx,Wx + (const void *)&gInstructions[ 3485] // VPCMPEQB Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_74_pp = @@ -10548,7 +11826,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_74_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_73_pp_01_modrmreg_07_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3828] // VPSLLDQ Hx,Ux,Ib + (const void *)&gInstructions[ 3873] // VPSLLDQ Hx,Ux,Ib }; const ND_TABLE_MODRM_MOD gVexMap_mmmmm_01_opcode_73_pp_01_modrmreg_07_modrmmod = @@ -10563,7 +11841,7 @@ const ND_TABLE_MODRM_MOD gVexMap_mmmmm_01_opcode_73_pp_01_modrmreg_07_modrmmod = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_73_pp_01_modrmreg_06_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3831] // VPSLLQ Hx,Ux,Ib + (const void *)&gInstructions[ 3876] // VPSLLQ Hx,Ux,Ib }; const ND_TABLE_MODRM_MOD gVexMap_mmmmm_01_opcode_73_pp_01_modrmreg_06_modrmmod = @@ -10578,7 +11856,7 @@ const ND_TABLE_MODRM_MOD gVexMap_mmmmm_01_opcode_73_pp_01_modrmreg_06_modrmmod = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_73_pp_01_modrmreg_03_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3861] // VPSRLDQ Hx,Ux,Ib + (const void *)&gInstructions[ 3906] // VPSRLDQ Hx,Ux,Ib }; const ND_TABLE_MODRM_MOD gVexMap_mmmmm_01_opcode_73_pp_01_modrmreg_03_modrmmod = @@ -10593,7 +11871,7 @@ const ND_TABLE_MODRM_MOD gVexMap_mmmmm_01_opcode_73_pp_01_modrmreg_03_modrmmod = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_73_pp_01_modrmreg_02_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3864] // VPSRLQ Hx,Ux,Ib + (const void *)&gInstructions[ 3909] // VPSRLQ Hx,Ux,Ib }; const ND_TABLE_MODRM_MOD gVexMap_mmmmm_01_opcode_73_pp_01_modrmreg_02_modrmmod = @@ -10634,7 +11912,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_73_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_72_pp_01_modrmreg_06_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3825] // VPSLLD Hx,Ux,Ib + (const void *)&gInstructions[ 3870] // VPSLLD Hx,Ux,Ib }; const ND_TABLE_MODRM_MOD gVexMap_mmmmm_01_opcode_72_pp_01_modrmreg_06_modrmmod = @@ -10649,7 +11927,7 @@ const ND_TABLE_MODRM_MOD gVexMap_mmmmm_01_opcode_72_pp_01_modrmreg_06_modrmmod = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_72_pp_01_modrmreg_04_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3844] // VPSRAD Hx,Ux,Ib + (const void *)&gInstructions[ 3889] // VPSRAD Hx,Ux,Ib }; const ND_TABLE_MODRM_MOD gVexMap_mmmmm_01_opcode_72_pp_01_modrmreg_04_modrmmod = @@ -10664,7 +11942,7 @@ const ND_TABLE_MODRM_MOD gVexMap_mmmmm_01_opcode_72_pp_01_modrmreg_04_modrmmod = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_72_pp_01_modrmreg_02_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3858] // VPSRLD Hx,Ux,Ib + (const void *)&gInstructions[ 3903] // VPSRLD Hx,Ux,Ib }; const ND_TABLE_MODRM_MOD gVexMap_mmmmm_01_opcode_72_pp_01_modrmreg_02_modrmmod = @@ -10705,7 +11983,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_72_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_71_pp_01_modrmreg_06_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3840] // VPSLLW Hx,Ux,Ib + (const void *)&gInstructions[ 3885] // VPSLLW Hx,Ux,Ib }; const ND_TABLE_MODRM_MOD gVexMap_mmmmm_01_opcode_71_pp_01_modrmreg_06_modrmmod = @@ -10720,7 +11998,7 @@ const ND_TABLE_MODRM_MOD gVexMap_mmmmm_01_opcode_71_pp_01_modrmreg_06_modrmmod = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_71_pp_01_modrmreg_04_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3854] // VPSRAW Hx,Ux,Ib + (const void *)&gInstructions[ 3899] // VPSRAW Hx,Ux,Ib }; const ND_TABLE_MODRM_MOD gVexMap_mmmmm_01_opcode_71_pp_01_modrmreg_04_modrmmod = @@ -10735,7 +12013,7 @@ const ND_TABLE_MODRM_MOD gVexMap_mmmmm_01_opcode_71_pp_01_modrmreg_04_modrmmod = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_71_pp_01_modrmreg_02_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3873] // VPSRLW Hx,Ux,Ib + (const void *)&gInstructions[ 3918] // VPSRLW Hx,Ux,Ib }; const ND_TABLE_MODRM_MOD gVexMap_mmmmm_01_opcode_71_pp_01_modrmreg_02_modrmmod = @@ -10776,19 +12054,19 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_71_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_70_pp_03_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3819] // VPSHUFLW Vx,Wx,Ib + (const void *)&gInstructions[ 3864] // VPSHUFLW Vx,Wx,Ib }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_70_pp_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3817] // VPSHUFHW Vx,Wx,Ib + (const void *)&gInstructions[ 3862] // VPSHUFHW Vx,Wx,Ib }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_70_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3815] // VPSHUFD Vx,Wx,Ib + (const void *)&gInstructions[ 3860] // VPSHUFD Vx,Wx,Ib }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_70_pp = @@ -10805,13 +12083,13 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_70_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_6f_pp_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3253] // VMOVDQU Vx,Wx + (const void *)&gInstructions[ 3294] // VMOVDQU Vx,Wx }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_6f_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3247] // VMOVDQA Vx,Wx + (const void *)&gInstructions[ 3288] // VMOVDQA Vx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_6f_pp = @@ -10828,13 +12106,13 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_6f_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_6e_pp_01_l_00_wi_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3297] // VMOVQ Vdq,Ey + (const void *)&gInstructions[ 3338] // VMOVQ Vdq,Ey }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_6e_pp_01_l_00_wi_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3240] // VMOVD Vdq,Ey + (const void *)&gInstructions[ 3281] // VMOVD Vdq,Ey }; const ND_TABLE_EX_W gVexMap_mmmmm_01_opcode_6e_pp_01_l_00_wi = @@ -10871,7 +12149,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_6e_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_6d_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3907] // VPUNPCKHQDQ Vx,Hx,Wx + (const void *)&gInstructions[ 3952] // VPUNPCKHQDQ Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_6d_pp = @@ -10888,7 +12166,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_6d_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_6c_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3915] // VPUNPCKLQDQ Vx,Hx,Wx + (const void *)&gInstructions[ 3960] // VPUNPCKLQDQ Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_6c_pp = @@ -10905,7 +12183,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_6c_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_6b_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3377] // VPACKSSDW Vx,Hx,Wx + (const void *)&gInstructions[ 3422] // VPACKSSDW Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_6b_pp = @@ -10922,7 +12200,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_6b_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_6a_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3905] // VPUNPCKHDQ Vx,Hx,Wx + (const void *)&gInstructions[ 3950] // VPUNPCKHDQ Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_6a_pp = @@ -10939,7 +12217,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_6a_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_69_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3909] // VPUNPCKHWD Vx,Hx,Wx + (const void *)&gInstructions[ 3954] // VPUNPCKHWD Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_69_pp = @@ -10956,7 +12234,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_69_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_68_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3903] // VPUNPCKHBW Vx,Hx,Wx + (const void *)&gInstructions[ 3948] // VPUNPCKHBW Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_68_pp = @@ -10973,7 +12251,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_68_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_67_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3383] // VPACKUSWB Vx,Hx,Wx + (const void *)&gInstructions[ 3428] // VPACKUSWB Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_67_pp = @@ -10990,7 +12268,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_67_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_66_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3452] // VPCMPGTD Vx,Hx,Wx + (const void *)&gInstructions[ 3497] // VPCMPGTD Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_66_pp = @@ -11007,7 +12285,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_66_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_65_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3456] // VPCMPGTW Vx,Hx,Wx + (const void *)&gInstructions[ 3501] // VPCMPGTW Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_65_pp = @@ -11024,7 +12302,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_65_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_64_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3450] // VPCMPGTB Vx,Hx,Wx + (const void *)&gInstructions[ 3495] // VPCMPGTB Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_64_pp = @@ -11041,7 +12319,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_64_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_63_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3379] // VPACKSSWB Vx,Hx,Wx + (const void *)&gInstructions[ 3424] // VPACKSSWB Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_63_pp = @@ -11058,7 +12336,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_63_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_62_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3913] // VPUNPCKLDQ Vx,Hx,Wx + (const void *)&gInstructions[ 3958] // VPUNPCKLDQ Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_62_pp = @@ -11075,7 +12353,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_62_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_61_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3917] // VPUNPCKLWD Vx,Hx,Wx + (const void *)&gInstructions[ 3962] // VPUNPCKLWD Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_61_pp = @@ -11092,7 +12370,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_61_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_60_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3911] // VPUNPCKLBW Vx,Hx,Wx + (const void *)&gInstructions[ 3956] // VPUNPCKLBW Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_60_pp = @@ -11109,25 +12387,25 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_60_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_5f_pp_03_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3197] // VMAXSD Vsd,Hsd,Wsd + (const void *)&gInstructions[ 3238] // VMAXSD Vsd,Hsd,Wsd }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_5f_pp_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3200] // VMAXSS Vss,Hss,Wss + (const void *)&gInstructions[ 3241] // VMAXSS Vss,Hss,Wss }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_5f_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3192] // VMAXPD Vpd,Hpd,Wpd + (const void *)&gInstructions[ 3233] // VMAXPD Vpd,Hpd,Wpd }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_5f_pp_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3195] // VMAXPS Vps,Hps,Wps + (const void *)&gInstructions[ 3236] // VMAXPS Vps,Hps,Wps }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_5f_pp = @@ -11144,25 +12422,25 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_5f_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_5e_pp_03_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2876] // VDIVSD Vsd,Hsd,Wsd + (const void *)&gInstructions[ 2917] // VDIVSD Vsd,Hsd,Wsd }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_5e_pp_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2879] // VDIVSS Vss,Hss,Wss + (const void *)&gInstructions[ 2920] // VDIVSS Vss,Hss,Wss }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_5e_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2871] // VDIVPD Vpd,Hpd,Wpd + (const void *)&gInstructions[ 2912] // VDIVPD Vpd,Hpd,Wpd }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_5e_pp_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2874] // VDIVPS Vps,Hps,Wps + (const void *)&gInstructions[ 2915] // VDIVPS Vps,Hps,Wps }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_5e_pp = @@ -11179,25 +12457,25 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_5e_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_5d_pp_03_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3220] // VMINSD Vsd,Hsd,Wsd + (const void *)&gInstructions[ 3261] // VMINSD Vsd,Hsd,Wsd }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_5d_pp_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3223] // VMINSS Vss,Hss,Wss + (const void *)&gInstructions[ 3264] // VMINSS Vss,Hss,Wss }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_5d_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3215] // VMINPD Vpd,Hpd,Wpd + (const void *)&gInstructions[ 3256] // VMINPD Vpd,Hpd,Wpd }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_5d_pp_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3218] // VMINPS Vps,Hps,Wps + (const void *)&gInstructions[ 3259] // VMINPS Vps,Hps,Wps }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_5d_pp = @@ -11214,25 +12492,25 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_5d_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_5c_pp_03_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4023] // VSUBSD Vsd,Hsd,Wsd + (const void *)&gInstructions[ 4070] // VSUBSD Vsd,Hsd,Wsd }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_5c_pp_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4026] // VSUBSS Vss,Hss,Wss + (const void *)&gInstructions[ 4073] // VSUBSS Vss,Hss,Wss }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_5c_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4018] // VSUBPD Vpd,Hpd,Wpd + (const void *)&gInstructions[ 4065] // VSUBPD Vpd,Hpd,Wpd }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_5c_pp_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4021] // VSUBPS Vps,Hps,Wps + (const void *)&gInstructions[ 4068] // VSUBPS Vps,Hps,Wps }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_5c_pp = @@ -11249,19 +12527,19 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_5c_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_5b_pp_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2834] // VCVTTPS2DQ Vps,Wps + (const void *)&gInstructions[ 2875] // VCVTTPS2DQ Vps,Wps }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_5b_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2776] // VCVTPS2DQ Vps,Wps + (const void *)&gInstructions[ 2817] // VCVTPS2DQ Vps,Wps }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_5b_pp_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2734] // VCVTDQ2PS Vps,Wps + (const void *)&gInstructions[ 2775] // VCVTDQ2PS Vps,Wps }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_5b_pp = @@ -11278,25 +12556,25 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_5b_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_5a_pp_03_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2796] // VCVTSD2SS Vss,Hx,Wsd + (const void *)&gInstructions[ 2837] // VCVTSD2SS Vss,Hx,Wsd }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_5a_pp_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2809] // VCVTSS2SD Vsd,Hx,Wss + (const void *)&gInstructions[ 2850] // VCVTSS2SD Vsd,Hx,Wss }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_5a_pp_01_l_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2758] // VCVTPD2PS Vdq,Wqq + (const void *)&gInstructions[ 2799] // VCVTPD2PS Vdq,Wqq }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_5a_pp_01_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2757] // VCVTPD2PS Vdq,Wdq + (const void *)&gInstructions[ 2798] // VCVTPD2PS Vdq,Wdq }; const ND_TABLE_EX_L gVexMap_mmmmm_01_opcode_5a_pp_01_l = @@ -11313,13 +12591,13 @@ const ND_TABLE_EX_L gVexMap_mmmmm_01_opcode_5a_pp_01_l = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_5a_pp_00_l_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2781] // VCVTPS2PD Vqq,Wdq + (const void *)&gInstructions[ 2822] // VCVTPS2PD Vqq,Wdq }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_5a_pp_00_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2780] // VCVTPS2PD Vpd,Wq + (const void *)&gInstructions[ 2821] // VCVTPS2PD Vpd,Wq }; const ND_TABLE_EX_L gVexMap_mmmmm_01_opcode_5a_pp_00_l = @@ -11347,25 +12625,25 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_5a_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_59_pp_03_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3354] // VMULSD Vsd,Hsd,Wsd + (const void *)&gInstructions[ 3399] // VMULSD Vsd,Hsd,Wsd }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_59_pp_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3357] // VMULSS Vss,Hss,Wss + (const void *)&gInstructions[ 3402] // VMULSS Vss,Hss,Wss }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_59_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3349] // VMULPD Vpd,Hpd,Wpd + (const void *)&gInstructions[ 3394] // VMULPD Vpd,Hpd,Wpd }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_59_pp_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3352] // VMULPS Vps,Hps,Wps + (const void *)&gInstructions[ 3397] // VMULPS Vps,Hps,Wps }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_59_pp = @@ -11382,25 +12660,25 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_59_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_58_pp_03_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2652] // VADDSD Vsd,Hsd,Wsd + (const void *)&gInstructions[ 2693] // VADDSD Vsd,Hsd,Wsd }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_58_pp_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2655] // VADDSS Vss,Hss,Wss + (const void *)&gInstructions[ 2696] // VADDSS Vss,Hss,Wss }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_58_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2647] // VADDPD Vpd,Hpd,Wpd + (const void *)&gInstructions[ 2688] // VADDPD Vpd,Hpd,Wpd }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_58_pp_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2650] // VADDPS Vps,Hps,Wps + (const void *)&gInstructions[ 2691] // VADDPS Vps,Hps,Wps }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_58_pp = @@ -11417,13 +12695,13 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_58_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_57_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4046] // VXORPD Vpd,Hpd,Wpd + (const void *)&gInstructions[ 4093] // VXORPD Vpd,Hpd,Wpd }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_57_pp_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4048] // VXORPS Vps,Hps,Wps + (const void *)&gInstructions[ 4095] // VXORPS Vps,Hps,Wps }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_57_pp = @@ -11440,13 +12718,13 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_57_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_56_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3362] // VORPD Vpd,Hpd,Wpd + (const void *)&gInstructions[ 3407] // VORPD Vpd,Hpd,Wpd }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_56_pp_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3364] // VORPS Vps,Hps,Wps + (const void *)&gInstructions[ 3409] // VORPS Vps,Hps,Wps }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_56_pp = @@ -11463,13 +12741,13 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_56_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_55_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2671] // VANDNPD Vpd,Hpd,Wpd + (const void *)&gInstructions[ 2712] // VANDNPD Vpd,Hpd,Wpd }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_55_pp_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2673] // VANDNPS Vps,Hps,Wps + (const void *)&gInstructions[ 2714] // VANDNPS Vps,Hps,Wps }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_55_pp = @@ -11486,13 +12764,13 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_55_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_54_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2675] // VANDPD Vpd,Hpd,Wpd + (const void *)&gInstructions[ 2716] // VANDPD Vpd,Hpd,Wpd }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_54_pp_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2677] // VANDPS Vps,Hps,Wps + (const void *)&gInstructions[ 2718] // VANDPS Vps,Hps,Wps }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_54_pp = @@ -11509,13 +12787,13 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_54_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_53_pp_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3937] // VRCPSS Vss,Hss,Wss + (const void *)&gInstructions[ 3982] // VRCPSS Vss,Hss,Wss }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_53_pp_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3935] // VRCPPS Vps,Wps + (const void *)&gInstructions[ 3980] // VRCPPS Vps,Wps }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_53_pp = @@ -11532,13 +12810,13 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_53_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_52_pp_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3968] // VRSQRTSS Vss,Hss,Wss + (const void *)&gInstructions[ 4013] // VRSQRTSS Vss,Hss,Wss }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_52_pp_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3966] // VRSQRTPS Vx,Wx + (const void *)&gInstructions[ 4011] // VRSQRTPS Vx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_52_pp = @@ -11555,25 +12833,25 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_52_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_51_pp_03_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4011] // VSQRTSD Vsd,Hsd,Wsd + (const void *)&gInstructions[ 4058] // VSQRTSD Vsd,Hsd,Wsd }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_51_pp_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4014] // VSQRTSS Vss,Hss,Wss + (const void *)&gInstructions[ 4061] // VSQRTSS Vss,Hss,Wss }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_51_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4006] // VSQRTPD Vx,Wx + (const void *)&gInstructions[ 4053] // VSQRTPD Vx,Wx }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_51_pp_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4009] // VSQRTPS Vx,Wx + (const void *)&gInstructions[ 4056] // VSQRTPS Vx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_51_pp = @@ -11590,7 +12868,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_51_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_50_pp_01_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3283] // VMOVMSKPD Gy,Ux + (const void *)&gInstructions[ 3324] // VMOVMSKPD Gy,Ux }; const ND_TABLE_MODRM_MOD gVexMap_mmmmm_01_opcode_50_pp_01_modrmmod = @@ -11605,7 +12883,7 @@ const ND_TABLE_MODRM_MOD gVexMap_mmmmm_01_opcode_50_pp_01_modrmmod = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_50_pp_00_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3284] // VMOVMSKPS Gy,Ux + (const void *)&gInstructions[ 3325] // VMOVMSKPS Gy,Ux }; const ND_TABLE_MODRM_MOD gVexMap_mmmmm_01_opcode_50_pp_00_modrmmod = @@ -12461,13 +13739,13 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_41_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_2f_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2714] // VCOMISD Vsd,Wsd + (const void *)&gInstructions[ 2755] // VCOMISD Vsd,Wsd }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_2f_pp_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2717] // VCOMISS Vss,Wss + (const void *)&gInstructions[ 2758] // VCOMISS Vss,Wss }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_2f_pp = @@ -12484,13 +13762,13 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_2f_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_2e_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4030] // VUCOMISD Vsd,Wsd + (const void *)&gInstructions[ 4077] // VUCOMISD Vsd,Wsd }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_2e_pp_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4033] // VUCOMISS Vss,Wss + (const void *)&gInstructions[ 4080] // VUCOMISS Vss,Wss }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_2e_pp = @@ -12507,13 +13785,13 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_2e_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_2d_pp_03_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2794] // VCVTSD2SI Gy,Wsd + (const void *)&gInstructions[ 2835] // VCVTSD2SI Gy,Wsd }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_2d_pp_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2812] // VCVTSS2SI Gy,Wss + (const void *)&gInstructions[ 2853] // VCVTSS2SI Gy,Wss }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_2d_pp = @@ -12530,13 +13808,13 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_2d_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_2c_pp_03_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2845] // VCVTTSD2SI Gy,Wsd + (const void *)&gInstructions[ 2886] // VCVTTSD2SI Gy,Wsd }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_2c_pp_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2852] // VCVTTSS2SI Gy,Wss + (const void *)&gInstructions[ 2893] // VCVTTSS2SI Gy,Wss }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_2c_pp = @@ -12553,7 +13831,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_2c_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_2b_pp_01_modrmmod_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3290] // VMOVNTPD Mx,Vx + (const void *)&gInstructions[ 3331] // VMOVNTPD Mx,Vx }; const ND_TABLE_MODRM_MOD gVexMap_mmmmm_01_opcode_2b_pp_01_modrmmod = @@ -12568,7 +13846,7 @@ const ND_TABLE_MODRM_MOD gVexMap_mmmmm_01_opcode_2b_pp_01_modrmmod = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_2b_pp_00_modrmmod_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3292] // VMOVNTPS Mx,Vx + (const void *)&gInstructions[ 3333] // VMOVNTPS Mx,Vx }; const ND_TABLE_MODRM_MOD gVexMap_mmmmm_01_opcode_2b_pp_00_modrmmod = @@ -12594,13 +13872,13 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_2b_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_2a_pp_03_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2804] // VCVTSI2SD Vsd,Hsd,Ey + (const void *)&gInstructions[ 2845] // VCVTSI2SD Vsd,Hsd,Ey }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_2a_pp_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2807] // VCVTSI2SS Vss,Hss,Ey + (const void *)&gInstructions[ 2848] // VCVTSI2SS Vss,Hss,Ey }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_2a_pp = @@ -12617,13 +13895,13 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_2a_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_29_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3231] // VMOVAPD Wx,Vx + (const void *)&gInstructions[ 3272] // VMOVAPD Wx,Vx }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_29_pp_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3235] // VMOVAPS Wx,Vx + (const void *)&gInstructions[ 3276] // VMOVAPS Wx,Vx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_29_pp = @@ -12640,13 +13918,13 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_29_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_28_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3230] // VMOVAPD Vx,Wx + (const void *)&gInstructions[ 3271] // VMOVAPD Vx,Wx }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_28_pp_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3234] // VMOVAPS Vx,Wx + (const void *)&gInstructions[ 3275] // VMOVAPS Vx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_28_pp = @@ -12663,7 +13941,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_28_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_17_pp_01_modrmmod_00_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3268] // VMOVHPD Mq,Vdq + (const void *)&gInstructions[ 3309] // VMOVHPD Mq,Vdq }; const ND_TABLE_EX_L gVexMap_mmmmm_01_opcode_17_pp_01_modrmmod_00_l = @@ -12689,7 +13967,7 @@ const ND_TABLE_MODRM_MOD gVexMap_mmmmm_01_opcode_17_pp_01_modrmmod = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_17_pp_00_modrmmod_00_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3272] // VMOVHPS Mq,Vdq + (const void *)&gInstructions[ 3313] // VMOVHPS Mq,Vdq }; const ND_TABLE_EX_L gVexMap_mmmmm_01_opcode_17_pp_00_modrmmod_00_l = @@ -12726,13 +14004,13 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_17_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_16_pp_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3314] // VMOVSHDUP Vx,Wx + (const void *)&gInstructions[ 3359] // VMOVSHDUP Vx,Wx }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_16_pp_01_modrmmod_00_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3267] // VMOVHPD Vdq,Hdq,Mq + (const void *)&gInstructions[ 3308] // VMOVHPD Vdq,Hdq,Mq }; const ND_TABLE_EX_L gVexMap_mmmmm_01_opcode_16_pp_01_modrmmod_00_l = @@ -12758,7 +14036,7 @@ const ND_TABLE_MODRM_MOD gVexMap_mmmmm_01_opcode_16_pp_01_modrmmod = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_16_pp_00_modrmmod_01_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3274] // VMOVLHPS Vdq,Hdq,Udq + (const void *)&gInstructions[ 3315] // VMOVLHPS Vdq,Hdq,Udq }; const ND_TABLE_EX_L gVexMap_mmmmm_01_opcode_16_pp_00_modrmmod_01_l = @@ -12775,7 +14053,7 @@ const ND_TABLE_EX_L gVexMap_mmmmm_01_opcode_16_pp_00_modrmmod_01_l = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_16_pp_00_modrmmod_00_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3271] // VMOVHPS Vdq,Hdq,Mq + (const void *)&gInstructions[ 3312] // VMOVHPS Vdq,Hdq,Mq }; const ND_TABLE_EX_L gVexMap_mmmmm_01_opcode_16_pp_00_modrmmod_00_l = @@ -12812,13 +14090,13 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_16_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_15_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4038] // VUNPCKHPD Vx,Hx,Wx + (const void *)&gInstructions[ 4085] // VUNPCKHPD Vx,Hx,Wx }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_15_pp_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4040] // VUNPCKHPS Vx,Hx,Wx + (const void *)&gInstructions[ 4087] // VUNPCKHPS Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_15_pp = @@ -12835,13 +14113,13 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_15_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_14_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4042] // VUNPCKLPD Vx,Hx,Wx + (const void *)&gInstructions[ 4089] // VUNPCKLPD Vx,Hx,Wx }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_14_pp_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 4044] // VUNPCKLPS Vx,Hx,Wx + (const void *)&gInstructions[ 4091] // VUNPCKLPS Vx,Hx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_14_pp = @@ -12858,7 +14136,7 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_14_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_13_pp_01_modrmmod_00_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3278] // VMOVLPD Mq,Vdq + (const void *)&gInstructions[ 3319] // VMOVLPD Mq,Vdq }; const ND_TABLE_EX_L gVexMap_mmmmm_01_opcode_13_pp_01_modrmmod_00_l = @@ -12884,7 +14162,7 @@ const ND_TABLE_MODRM_MOD gVexMap_mmmmm_01_opcode_13_pp_01_modrmmod = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_13_pp_00_modrmmod_00_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3282] // VMOVLPS Mq,Vdq + (const void *)&gInstructions[ 3323] // VMOVLPS Mq,Vdq }; const ND_TABLE_EX_L gVexMap_mmmmm_01_opcode_13_pp_00_modrmmod_00_l = @@ -12921,13 +14199,13 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_13_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_12_pp_03_l_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3246] // VMOVDDUP Vqq,Wqq + (const void *)&gInstructions[ 3287] // VMOVDDUP Vqq,Wqq }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_12_pp_03_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3245] // VMOVDDUP Vdq,Wq + (const void *)&gInstructions[ 3286] // VMOVDDUP Vdq,Wq }; const ND_TABLE_EX_L gVexMap_mmmmm_01_opcode_12_pp_03_l = @@ -12944,13 +14222,13 @@ const ND_TABLE_EX_L gVexMap_mmmmm_01_opcode_12_pp_03_l = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_12_pp_02_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3316] // VMOVSLDUP Vx,Wx + (const void *)&gInstructions[ 3361] // VMOVSLDUP Vx,Wx }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_12_pp_01_modrmmod_00_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3277] // VMOVLPD Vdq,Hdq,Mq + (const void *)&gInstructions[ 3318] // VMOVLPD Vdq,Hdq,Mq }; const ND_TABLE_EX_L gVexMap_mmmmm_01_opcode_12_pp_01_modrmmod_00_l = @@ -12976,7 +14254,7 @@ const ND_TABLE_MODRM_MOD gVexMap_mmmmm_01_opcode_12_pp_01_modrmmod = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_12_pp_00_modrmmod_01_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3264] // VMOVHLPS Vdq,Hdq,Udq + (const void *)&gInstructions[ 3305] // VMOVHLPS Vdq,Hdq,Udq }; const ND_TABLE_EX_L gVexMap_mmmmm_01_opcode_12_pp_00_modrmmod_01_l = @@ -12993,7 +14271,7 @@ const ND_TABLE_EX_L gVexMap_mmmmm_01_opcode_12_pp_00_modrmmod_01_l = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_12_pp_00_modrmmod_00_l_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3281] // VMOVLPS Vdq,Hdq,Mq + (const void *)&gInstructions[ 3322] // VMOVLPS Vdq,Hdq,Mq }; const ND_TABLE_EX_L gVexMap_mmmmm_01_opcode_12_pp_00_modrmmod_00_l = @@ -13030,13 +14308,13 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_12_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_11_pp_03_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3307] // VMOVSD Usd,Hsd,Vsd + (const void *)&gInstructions[ 3352] // VMOVSD Usd,Hsd,Vsd }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_11_pp_03_modrmmod_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3308] // VMOVSD Mq,Vsd + (const void *)&gInstructions[ 3353] // VMOVSD Mq,Vsd }; const ND_TABLE_MODRM_MOD gVexMap_mmmmm_01_opcode_11_pp_03_modrmmod = @@ -13051,13 +14329,13 @@ const ND_TABLE_MODRM_MOD gVexMap_mmmmm_01_opcode_11_pp_03_modrmmod = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_11_pp_02_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3323] // VMOVSS Uss,Hss,Vss + (const void *)&gInstructions[ 3368] // VMOVSS Uss,Hss,Vss }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_11_pp_02_modrmmod_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3324] // VMOVSS Md,Vss + (const void *)&gInstructions[ 3369] // VMOVSS Md,Vss }; const ND_TABLE_MODRM_MOD gVexMap_mmmmm_01_opcode_11_pp_02_modrmmod = @@ -13072,13 +14350,13 @@ const ND_TABLE_MODRM_MOD gVexMap_mmmmm_01_opcode_11_pp_02_modrmmod = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_11_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3328] // VMOVUPD Wx,Vx + (const void *)&gInstructions[ 3373] // VMOVUPD Wx,Vx }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_11_pp_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3332] // VMOVUPS Wx,Vx + (const void *)&gInstructions[ 3377] // VMOVUPS Wx,Vx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_11_pp = @@ -13095,13 +14373,13 @@ const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_11_pp = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_10_pp_03_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3305] // VMOVSD Vdq,Hdq,Usd + (const void *)&gInstructions[ 3350] // VMOVSD Vdq,Hdq,Usd }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_10_pp_03_modrmmod_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3306] // VMOVSD Vdq,Mq + (const void *)&gInstructions[ 3351] // VMOVSD Vdq,Mq }; const ND_TABLE_MODRM_MOD gVexMap_mmmmm_01_opcode_10_pp_03_modrmmod = @@ -13116,13 +14394,13 @@ const ND_TABLE_MODRM_MOD gVexMap_mmmmm_01_opcode_10_pp_03_modrmmod = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_10_pp_02_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3321] // VMOVSS Vdq,Hdq,Uss + (const void *)&gInstructions[ 3366] // VMOVSS Vdq,Hdq,Uss }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_10_pp_02_modrmmod_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3322] // VMOVSS Vdq,Md + (const void *)&gInstructions[ 3367] // VMOVSS Vdq,Md }; const ND_TABLE_MODRM_MOD gVexMap_mmmmm_01_opcode_10_pp_02_modrmmod = @@ -13137,13 +14415,13 @@ const ND_TABLE_MODRM_MOD gVexMap_mmmmm_01_opcode_10_pp_02_modrmmod = const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_10_pp_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3327] // VMOVUPD Vx,Wx + (const void *)&gInstructions[ 3372] // VMOVUPD Vx,Wx }; const ND_TABLE_INSTRUCTION gVexMap_mmmmm_01_opcode_10_pp_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3331] // VMOVUPS Vx,Wx + (const void *)&gInstructions[ 3376] // VMOVUPS Vx,Wx }; const ND_TABLE_EX_PP gVexMap_mmmmm_01_opcode_10_pp = @@ -13429,7 +14707,7 @@ const ND_TABLE_EX_M gVexMap_mmmmm = /* 02 */ (const void *)&gVexMap_mmmmm_02_opcode, /* 03 */ (const void *)&gVexMap_mmmmm_03_opcode, /* 04 */ (const void *)ND_NULL, - /* 05 */ (const void *)ND_NULL, + /* 05 */ (const void *)&gVexMap_mmmmm_05_opcode, /* 06 */ (const void *)ND_NULL, /* 07 */ (const void *)&gVexMap_mmmmm_07_opcode, /* 08 */ (const void *)ND_NULL, diff --git a/bddisasm/include/bdx86_table_xop.h b/bddisasm/include/bdx86_table_xop.h index ba3e011..80445c8 100644 --- a/bddisasm/include/bdx86_table_xop.h +++ b/bddisasm/include/bdx86_table_xop.h @@ -309,103 +309,103 @@ const ND_TABLE_OPCODE gXopMap_mmmmm_0a_opcode = const ND_TABLE_INSTRUCTION gXopMap_mmmmm_09_opcode_e3_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3599] // VPHSUBDQ Vdq,Wdq + (const void *)&gInstructions[ 3644] // VPHSUBDQ Vdq,Wdq }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_09_opcode_e2_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3602] // VPHSUBWD Vdq,Wdq + (const void *)&gInstructions[ 3647] // VPHSUBWD Vdq,Wdq }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_09_opcode_e1_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3597] // VPHSUBBW Vdq,Wdq + (const void *)&gInstructions[ 3642] // VPHSUBBW Vdq,Wdq }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_09_opcode_db_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3590] // VPHADDUDQ Vdq,Wdq + (const void *)&gInstructions[ 3635] // VPHADDUDQ Vdq,Wdq }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_09_opcode_d7_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3592] // VPHADDUWQ Vdq,Wdq + (const void *)&gInstructions[ 3637] // VPHADDUWQ Vdq,Wdq }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_09_opcode_d6_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3591] // VPHADDUWD Vdq,Wdq + (const void *)&gInstructions[ 3636] // VPHADDUWD Vdq,Wdq }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_09_opcode_d3_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3588] // VPHADDUBQ Vdq,Wdq + (const void *)&gInstructions[ 3633] // VPHADDUBQ Vdq,Wdq }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_09_opcode_d2_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3587] // VPHADDUBD Vdq,Wdq + (const void *)&gInstructions[ 3632] // VPHADDUBD Vdq,Wdq }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_09_opcode_d1_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3589] // VPHADDUBW Vdq,Wdq + (const void *)&gInstructions[ 3634] // VPHADDUBW Vdq,Wdq }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_09_opcode_cb_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3585] // VPHADDDQ Vdq,Wdq + (const void *)&gInstructions[ 3630] // VPHADDDQ Vdq,Wdq }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_09_opcode_c7_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3595] // VPHADDWQ Vdq,Wdq + (const void *)&gInstructions[ 3640] // VPHADDWQ Vdq,Wdq }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_09_opcode_c6_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3594] // VPHADDWD Vdq,Wdq + (const void *)&gInstructions[ 3639] // VPHADDWD Vdq,Wdq }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_09_opcode_c3_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3582] // VPHADDBQ Vdq,Wdq + (const void *)&gInstructions[ 3627] // VPHADDBQ Vdq,Wdq }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_09_opcode_c2_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3581] // VPHADDBD Vdq,Wdq + (const void *)&gInstructions[ 3626] // VPHADDBD Vdq,Wdq }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_09_opcode_c1_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3583] // VPHADDBW Vdq,Wdq + (const void *)&gInstructions[ 3628] // VPHADDBW Vdq,Wdq }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_09_opcode_9b_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3788] // VPSHAQ Vdq,Hdq,Wdq + (const void *)&gInstructions[ 3833] // VPSHAQ Vdq,Hdq,Wdq }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_09_opcode_9b_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3787] // VPSHAQ Vdq,Wdq,Hdq + (const void *)&gInstructions[ 3832] // VPSHAQ Vdq,Wdq,Hdq }; const ND_TABLE_EX_W gXopMap_mmmmm_09_opcode_9b_w = @@ -420,13 +420,13 @@ const ND_TABLE_EX_W gXopMap_mmmmm_09_opcode_9b_w = const ND_TABLE_INSTRUCTION gXopMap_mmmmm_09_opcode_9a_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3786] // VPSHAD Vdq,Hdq,Wdq + (const void *)&gInstructions[ 3831] // VPSHAD Vdq,Hdq,Wdq }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_09_opcode_9a_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3785] // VPSHAD Vdq,Wdq,Hdq + (const void *)&gInstructions[ 3830] // VPSHAD Vdq,Wdq,Hdq }; const ND_TABLE_EX_W gXopMap_mmmmm_09_opcode_9a_w = @@ -441,13 +441,13 @@ const ND_TABLE_EX_W gXopMap_mmmmm_09_opcode_9a_w = const ND_TABLE_INSTRUCTION gXopMap_mmmmm_09_opcode_99_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3790] // VPSHAW Vdq,Hdq,Wdq + (const void *)&gInstructions[ 3835] // VPSHAW Vdq,Hdq,Wdq }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_09_opcode_99_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3789] // VPSHAW Vdq,Wdq,Hdq + (const void *)&gInstructions[ 3834] // VPSHAW Vdq,Wdq,Hdq }; const ND_TABLE_EX_W gXopMap_mmmmm_09_opcode_99_w = @@ -462,13 +462,13 @@ const ND_TABLE_EX_W gXopMap_mmmmm_09_opcode_99_w = const ND_TABLE_INSTRUCTION gXopMap_mmmmm_09_opcode_98_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3784] // VPSHAB Vdq,Hdq,Wdq + (const void *)&gInstructions[ 3829] // VPSHAB Vdq,Hdq,Wdq }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_09_opcode_98_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3783] // VPSHAB Vdq,Wdq,Hdq + (const void *)&gInstructions[ 3828] // VPSHAB Vdq,Wdq,Hdq }; const ND_TABLE_EX_W gXopMap_mmmmm_09_opcode_98_w = @@ -483,13 +483,13 @@ const ND_TABLE_EX_W gXopMap_mmmmm_09_opcode_98_w = const ND_TABLE_INSTRUCTION gXopMap_mmmmm_09_opcode_97_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3803] // VPSHLQ Vdq,Hdq,Wdq + (const void *)&gInstructions[ 3848] // VPSHLQ Vdq,Hdq,Wdq }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_09_opcode_97_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3802] // VPSHLQ Vdq,Wdq,Hdq + (const void *)&gInstructions[ 3847] // VPSHLQ Vdq,Wdq,Hdq }; const ND_TABLE_EX_W gXopMap_mmmmm_09_opcode_97_w = @@ -504,13 +504,13 @@ const ND_TABLE_EX_W gXopMap_mmmmm_09_opcode_97_w = const ND_TABLE_INSTRUCTION gXopMap_mmmmm_09_opcode_96_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3794] // VPSHLB Vdq,Hdq,Wdq + (const void *)&gInstructions[ 3839] // VPSHLB Vdq,Hdq,Wdq }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_09_opcode_96_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3795] // VPSHLD Vdq,Wdq,Hdq + (const void *)&gInstructions[ 3840] // VPSHLD Vdq,Wdq,Hdq }; const ND_TABLE_EX_W gXopMap_mmmmm_09_opcode_96_w = @@ -525,13 +525,13 @@ const ND_TABLE_EX_W gXopMap_mmmmm_09_opcode_96_w = const ND_TABLE_INSTRUCTION gXopMap_mmmmm_09_opcode_95_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3793] // VPSHLB Vdq,Hdq,Wdq + (const void *)&gInstructions[ 3838] // VPSHLB Vdq,Hdq,Wdq }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_09_opcode_95_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3804] // VPSHLW Vdq,Wdq,Hdq + (const void *)&gInstructions[ 3849] // VPSHLW Vdq,Wdq,Hdq }; const ND_TABLE_EX_W gXopMap_mmmmm_09_opcode_95_w = @@ -546,13 +546,13 @@ const ND_TABLE_EX_W gXopMap_mmmmm_09_opcode_95_w = const ND_TABLE_INSTRUCTION gXopMap_mmmmm_09_opcode_94_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3792] // VPSHLB Vdq,Hdq,Wdq + (const void *)&gInstructions[ 3837] // VPSHLB Vdq,Hdq,Wdq }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_09_opcode_94_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3791] // VPSHLB Vdq,Wdq,Hdq + (const void *)&gInstructions[ 3836] // VPSHLB Vdq,Wdq,Hdq }; const ND_TABLE_EX_W gXopMap_mmmmm_09_opcode_94_w = @@ -567,13 +567,13 @@ const ND_TABLE_EX_W gXopMap_mmmmm_09_opcode_94_w = const ND_TABLE_INSTRUCTION gXopMap_mmmmm_09_opcode_93_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3773] // VPROTQ Vdq,Hdq,Wdq + (const void *)&gInstructions[ 3818] // VPROTQ Vdq,Hdq,Wdq }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_09_opcode_93_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3772] // VPROTQ Vdq,Wdq,Hdq + (const void *)&gInstructions[ 3817] // VPROTQ Vdq,Wdq,Hdq }; const ND_TABLE_EX_W gXopMap_mmmmm_09_opcode_93_w = @@ -588,13 +588,13 @@ const ND_TABLE_EX_W gXopMap_mmmmm_09_opcode_93_w = const ND_TABLE_INSTRUCTION gXopMap_mmmmm_09_opcode_92_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3770] // VPROTD Vdq,Hdq,Wdq + (const void *)&gInstructions[ 3815] // VPROTD Vdq,Hdq,Wdq }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_09_opcode_92_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3769] // VPROTD Vdq,Wdq,Hdq + (const void *)&gInstructions[ 3814] // VPROTD Vdq,Wdq,Hdq }; const ND_TABLE_EX_W gXopMap_mmmmm_09_opcode_92_w = @@ -609,13 +609,13 @@ const ND_TABLE_EX_W gXopMap_mmmmm_09_opcode_92_w = const ND_TABLE_INSTRUCTION gXopMap_mmmmm_09_opcode_91_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3776] // VPROTW Vdq,Hdq,Wdq + (const void *)&gInstructions[ 3821] // VPROTW Vdq,Hdq,Wdq }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_09_opcode_91_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3775] // VPROTW Vdq,Wdq,Hdq + (const void *)&gInstructions[ 3820] // VPROTW Vdq,Wdq,Hdq }; const ND_TABLE_EX_W gXopMap_mmmmm_09_opcode_91_w = @@ -630,13 +630,13 @@ const ND_TABLE_EX_W gXopMap_mmmmm_09_opcode_91_w = const ND_TABLE_INSTRUCTION gXopMap_mmmmm_09_opcode_90_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3767] // VPROTB Vdq,Hdq,Wdq + (const void *)&gInstructions[ 3812] // VPROTB Vdq,Hdq,Wdq }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_09_opcode_90_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3766] // VPROTB Vdq,Wdq,Hdq + (const void *)&gInstructions[ 3811] // VPROTB Vdq,Wdq,Hdq }; const ND_TABLE_EX_W gXopMap_mmmmm_09_opcode_90_w = @@ -651,31 +651,31 @@ const ND_TABLE_EX_W gXopMap_mmmmm_09_opcode_90_w = const ND_TABLE_INSTRUCTION gXopMap_mmmmm_09_opcode_83_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3127] // VFRCZSD Vdq,Wsd + (const void *)&gInstructions[ 3168] // VFRCZSD Vdq,Wsd }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_09_opcode_82_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3128] // VFRCZSS Vdq,Wss + (const void *)&gInstructions[ 3169] // VFRCZSS Vdq,Wss }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_09_opcode_81_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3125] // VFRCZPD Vx,Wx + (const void *)&gInstructions[ 3166] // VFRCZPD Vx,Wx }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_09_opcode_80_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3126] // VFRCZPS Vx,Wx + (const void *)&gInstructions[ 3167] // VFRCZPS Vx,Wx }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_09_opcode_12_modrmreg_01_modrmmod_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2496] // SLWPCB Ry + (const void *)&gInstructions[ 2502] // SLWPCB Ry }; const ND_TABLE_MODRM_MOD gXopMap_mmmmm_09_opcode_12_modrmreg_01_modrmmod = @@ -747,7 +747,7 @@ const ND_TABLE_MODRM_REG gXopMap_mmmmm_09_opcode_02_modrmreg = const ND_TABLE_INSTRUCTION gXopMap_mmmmm_09_opcode_01_modrmreg_07_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2586] // T1MSKC By,Ey + (const void *)&gInstructions[ 2592] // T1MSKC By,Ey }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_09_opcode_01_modrmreg_06_leaf = @@ -765,7 +765,7 @@ const ND_TABLE_INSTRUCTION gXopMap_mmmmm_09_opcode_01_modrmreg_05_leaf = const ND_TABLE_INSTRUCTION gXopMap_mmmmm_09_opcode_01_modrmreg_04_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 2620] // TZMSK By,Ey + (const void *)&gInstructions[ 2661] // TZMSK By,Ey }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_09_opcode_01_modrmreg_03_leaf = @@ -1067,97 +1067,97 @@ const ND_TABLE_OPCODE gXopMap_mmmmm_09_opcode = const ND_TABLE_INSTRUCTION gXopMap_mmmmm_08_opcode_ef_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3474] // VPCOMUQ Vdq,Hdq,Wdq,Ib + (const void *)&gInstructions[ 3519] // VPCOMUQ Vdq,Hdq,Wdq,Ib }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_08_opcode_ee_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3473] // VPCOMUD Vdq,Hdq,Wdq,Ib + (const void *)&gInstructions[ 3518] // VPCOMUD Vdq,Hdq,Wdq,Ib }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_08_opcode_ed_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3475] // VPCOMUW Vdq,Hdq,Wdq,Ib + (const void *)&gInstructions[ 3520] // VPCOMUW Vdq,Hdq,Wdq,Ib }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_08_opcode_ec_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3472] // VPCOMUB Vdq,Hdq,Wdq,Ib + (const void *)&gInstructions[ 3517] // VPCOMUB Vdq,Hdq,Wdq,Ib }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_08_opcode_cf_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3471] // VPCOMQ Vdq,Hdq,Wdq,Ib + (const void *)&gInstructions[ 3516] // VPCOMQ Vdq,Hdq,Wdq,Ib }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_08_opcode_ce_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3466] // VPCOMD Vdq,Hdq,Wdq,Ib + (const void *)&gInstructions[ 3511] // VPCOMD Vdq,Hdq,Wdq,Ib }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_08_opcode_cd_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3476] // VPCOMW Vdq,Hdq,Wdq,Ib + (const void *)&gInstructions[ 3521] // VPCOMW Vdq,Hdq,Wdq,Ib }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_08_opcode_cc_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3465] // VPCOMB Vdq,Hdq,Wdq,Ib + (const void *)&gInstructions[ 3510] // VPCOMB Vdq,Hdq,Wdq,Ib }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_08_opcode_c3_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3771] // VPROTQ Vdq,Wdq,Ib + (const void *)&gInstructions[ 3816] // VPROTQ Vdq,Wdq,Ib }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_08_opcode_c2_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3768] // VPROTD Vdq,Wdq,Ib + (const void *)&gInstructions[ 3813] // VPROTD Vdq,Wdq,Ib }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_08_opcode_c1_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3774] // VPROTW Vdq,Wdq,Ib + (const void *)&gInstructions[ 3819] // VPROTW Vdq,Wdq,Ib }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_08_opcode_c0_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3765] // VPROTB Vdq,Wdq,Ib + (const void *)&gInstructions[ 3810] // VPROTB Vdq,Wdq,Ib }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_08_opcode_b6_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3628] // VPMADCSWD Vdq,Hdq,Wdq,Ldq + (const void *)&gInstructions[ 3673] // VPMADCSWD Vdq,Hdq,Wdq,Ldq }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_08_opcode_a6_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3627] // VPMADCSSWD Vdq,Hdq,Wdq,Ldq + (const void *)&gInstructions[ 3672] // VPMADCSSWD Vdq,Hdq,Wdq,Ldq }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_08_opcode_a3_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3756] // VPPERM Vx,Hx,Lx,Wx + (const void *)&gInstructions[ 3801] // VPPERM Vx,Hx,Lx,Wx }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_08_opcode_a3_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3755] // VPPERM Vx,Hx,Wx,Lx + (const void *)&gInstructions[ 3800] // VPPERM Vx,Hx,Wx,Lx }; const ND_TABLE_EX_W gXopMap_mmmmm_08_opcode_a3_w = @@ -1172,13 +1172,13 @@ const ND_TABLE_EX_W gXopMap_mmmmm_08_opcode_a3_w = const ND_TABLE_INSTRUCTION gXopMap_mmmmm_08_opcode_a2_w_01_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3436] // VPCMOV Vx,Hx,Lx,Wx + (const void *)&gInstructions[ 3481] // VPCMOV Vx,Hx,Lx,Wx }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_08_opcode_a2_w_00_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3435] // VPCMOV Vx,Hx,Wx,Lx + (const void *)&gInstructions[ 3480] // VPCMOV Vx,Hx,Wx,Lx }; const ND_TABLE_EX_W gXopMap_mmmmm_08_opcode_a2_w = @@ -1193,61 +1193,61 @@ const ND_TABLE_EX_W gXopMap_mmmmm_08_opcode_a2_w = const ND_TABLE_INSTRUCTION gXopMap_mmmmm_08_opcode_9f_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3618] // VPMACSDQH Vdq,Hdq,Wdq,Ldq + (const void *)&gInstructions[ 3663] // VPMACSDQH Vdq,Hdq,Wdq,Ldq }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_08_opcode_9e_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3617] // VPMACSDD Vdq,Hdq,Wdq,Ldq + (const void *)&gInstructions[ 3662] // VPMACSDD Vdq,Hdq,Wdq,Ldq }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_08_opcode_97_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3619] // VPMACSDQL Vdq,Hdq,Wdq,Ldq + (const void *)&gInstructions[ 3664] // VPMACSDQL Vdq,Hdq,Wdq,Ldq }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_08_opcode_96_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3625] // VPMACSWD Vdq,Hdq,Wdq,Ldq + (const void *)&gInstructions[ 3670] // VPMACSWD Vdq,Hdq,Wdq,Ldq }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_08_opcode_95_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3626] // VPMACSWW Vdq,Hdq,Wdq,Ldq + (const void *)&gInstructions[ 3671] // VPMACSWW Vdq,Hdq,Wdq,Ldq }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_08_opcode_8f_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3621] // VPMACSSDQH Vdq,Hdq,Wdq,Ldq + (const void *)&gInstructions[ 3666] // VPMACSSDQH Vdq,Hdq,Wdq,Ldq }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_08_opcode_8e_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3620] // VPMACSSDD Vdq,Hdq,Wdq,Ldq + (const void *)&gInstructions[ 3665] // VPMACSSDD Vdq,Hdq,Wdq,Ldq }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_08_opcode_87_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3622] // VPMACSSDQL Vdq,Hdq,Wdq,Ldq + (const void *)&gInstructions[ 3667] // VPMACSSDQL Vdq,Hdq,Wdq,Ldq }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_08_opcode_86_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3623] // VPMACSSWD Vdq,Hdq,Wdq,Ldq + (const void *)&gInstructions[ 3668] // VPMACSSWD Vdq,Hdq,Wdq,Ldq }; const ND_TABLE_INSTRUCTION gXopMap_mmmmm_08_opcode_85_leaf = { ND_ILUT_INSTRUCTION, - (const void *)&gInstructions[ 3624] // VPMACSSWW Vdq,Hdq,Wdq,Ldq + (const void *)&gInstructions[ 3669] // VPMACSSWW Vdq,Hdq,Wdq,Ldq }; const ND_TABLE_OPCODE gXopMap_mmmmm_08_opcode = diff --git a/bddisasm/include/bdx86_tabledefs.h b/bddisasm/include/bdx86_tabledefs.h index c1612ab..513b4c6 100644 --- a/bddisasm/include/bdx86_tabledefs.h +++ b/bddisasm/include/bdx86_tabledefs.h @@ -227,6 +227,7 @@ typedef struct _ND_IDBE ND_UINT8 ExcType; // SSE/VEX/EVEX/OPMASK/AMX/APX exception type. ND_UINT8 FpuFlags; // FPU status word C0, C1, C2 & C3 access type. ND_UINT8 EvexMode; // EVEX prefix extension type. + ND_UINT8 SimdExc; // SIMD Floating-Point Exceptions. // Per-flag access. Undefined flags will have their bit set in both the "Set" and "Cleared" mask, since a flag // cannot be both cleared and set. diff --git a/bddisasm_test/conf-x86.json b/bddisasm_test/conf-x86.json index f8df8f8..c92280b 100644 --- a/bddisasm_test/conf-x86.json +++ b/bddisasm_test/conf-x86.json @@ -705,5 +705,33 @@ "f_test": "x86/avx10/avx102_64.test", "options": "-b64", "command": "decode" + }, + { + "f_source": "x86/movrs/movrs_64.asm", + "f_result": "x86/movrs/movrs_64.result", + "f_test": "x86/movrs/movrs_64.test", + "options": "-b64", + "command": "decode" + }, + { + "f_source": "x86/movrs/vmovrs_64.asm", + "f_result": "x86/movrs/vmovrs_64.result", + "f_test": "x86/movrs/vmovrs_64.test", + "options": "-b64", + "command": "decode" + }, + { + "f_source": "x86/sm/sm4_evex_64.asm", + "f_result": "x86/sm/sm4_evex_64.result", + "f_test": "x86/sm/sm4_evex_64.test", + "options": "-b64", + "command": "decode" + }, + { + "f_source": "x86/amx/amx_evex_64.asm", + "f_result": "x86/amx/amx_evex_64.result", + "f_test": "x86/amx/amx_evex_64.test", + "options": "-b64", + "command": "decode" } ] \ No newline at end of file diff --git a/bddisasm_test/x86/amx/amx1_64.asm b/bddisasm_test/x86/amx/amx1_64.asm index 8a34afa..c650820 100644 --- a/bddisasm_test/x86/amx/amx1_64.asm +++ b/bddisasm_test/x86/amx/amx1_64.asm @@ -25,4 +25,30 @@ db 0xc4, 0xe2, 0x7b, 0x5C, 0xF4 ; TDPFP16PS tmm6, tmm4, tmm0 db 0xc4, 0xe2, 0x78, 0x6C, 0xF4 ; TCMMRLFP16PS tmm6, tmm4, tmm0 - db 0xc4, 0xe2, 0x79, 0x6C, 0xF4 ; TCMMIMFP16PS tmm6, tmm4, tmm \ No newline at end of file + db 0xc4, 0xe2, 0x79, 0x6C, 0xF4 ; TCMMIMFP16PS tmm6, tmm4, tmm + + db 0xc4, 0xe2, 0x78, 0x48, 0xcf ; TTMMULTF32PS tmm1, tmm7, tmm0 + db 0xc4, 0xe2, 0x79, 0x48, 0xcf ; TMMULTF32PS tmm1, tmm7, tmm0 + db 0xc4, 0xe2, 0x79, 0x4a, 0x04, 0x11 ; TILELOADDRST1 tmm0, [rcx+rdx] + db 0xc4, 0xe2, 0x7b, 0x4a, 0x04, 0x11 ; TILELOADDRS tmm0, [rcx+rdx] + db 0xc4, 0xe2, 0x7a, 0x5f, 0xcd ; TTRANSPOSED tmm1, tmm5 + db 0xc4, 0xe2, 0x78, 0x6b, 0xcd ; TCONJTCMMIMFP16PS tmm1, tmm5, tmm0 + db 0xc4, 0xe2, 0x78, 0x6b, 0xcd ; TCONJTCMMIMFP16PS tmm1, tmm5, tmm0 + db 0xc4, 0xe2, 0x79, 0x6b, 0xcd ; TCONJTFP16 tmm1, tmm5 + db 0xc4, 0xe2, 0x7a, 0x6b, 0xcd ; TTCMMRLFP16PS tmm1, tmm5, tmm0 + db 0xc4, 0xe2, 0x7b, 0x6b, 0xcd ; TTCMMIMFP16PS tmm1, tmm5, tmm0 + db 0xc4, 0xe2, 0x7a, 0x6c, 0xcd ; TTDPBF16PS tmm1, tmm5, tmm0 + db 0xc4, 0xe2, 0x7b, 0x6c, 0xcd ; TTDPFP16PS tmm1, tmm5, tmm0 + db 0xc4, 0xe2, 0x78, 0x6e, 0x04, 0x11 ; T2RPNTLVWZ0 tmm0+1, [rcx+rdx] + db 0xc4, 0xe2, 0x79, 0x6e, 0x04, 0x11 ; T2RPNTLVWZ1 tmm0+1, [rcx+rdx] + db 0xc4, 0xe2, 0x78, 0x6f, 0x04, 0x11 ; T2RPNTLVWZ0T1 tmm0+1, [rcx+rdx] + db 0xc4, 0xe2, 0x79, 0x6f, 0x04, 0x11 ; T2RPNTLVWZ1T1 tmm0+1, [rcx+rdx] + + db 0xc4, 0xe5, 0x78, 0xf8, 0x04, 0x11 ; T2RPNTLVWZ0RS tmm0+1, [rcx+rdx] + db 0xc4, 0xe5, 0x79, 0xf8, 0x04, 0x11 ; T2RPNTLVWZ1RS tmm0+1, [rcx+rdx] + db 0xc4, 0xe5, 0x78, 0xf9, 0x04, 0x11 ; T2RPNTLVWZ0RST1 tmm0+1, [rcx+rdx] + db 0xc4, 0xe5, 0x79, 0xf9, 0x04, 0x11 ; T2RPNTLVWZ1RST1 tmm0+1, [rcx+rdx] + db 0xc4, 0xe5, 0x78, 0xfd, 0xcd ; TDPBF8PS tmm1, tmm5, tmm0 + db 0xc4, 0xe5, 0x79, 0xfd, 0xcd ; TDPHF8PS tmm1, tmm5, tmm0 + db 0xc4, 0xe5, 0x7a, 0xfd, 0xcd ; TDPHBF8PS tmm1, tmm5, tmm0 + db 0xc4, 0xe5, 0x7b, 0xfd, 0xcd ; TDPBHF8PS tmm1, tmm5, tmm0 diff --git a/bddisasm_test/x86/amx/amx1_64.result b/bddisasm_test/x86/amx/amx1_64.result index 22cfa39..ab416ed 100644 --- a/bddisasm_test/x86/amx/amx1_64.result +++ b/bddisasm_test/x86/amx/amx1_64.result @@ -331,3 +331,433 @@ Operand: 1, Acc: R-, Type: Register, Size: 1024, RawSize: 1024, Encoding: M, RegType: Tile, RegSize: 1024, RegId: 4, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1024, RawSize: 1024, Encoding: V, RegType: Tile, RegSize: 1024, RegId: 0, RegCount: 1 +0000000000000071 c4e27848cf TTMMULTF32PS tmm1, tmm7, tmm0 + DSIZE: 32, ASIZE: 64, VLEN: - + ISA Set: AMX-TRANSPOSE, Ins cat: AMX, CET tracked: no + CPUID leaf: 0x0000001e, sub-leaf: 0x00000001, reg: eax, bit: 5 + Exception class: AMX, exception type: AMX-E10 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: no, Compat: no, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: no, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: RW, Type: Register, Size: 1024, RawSize: 1024, Encoding: R, RegType: Tile, RegSize: 1024, RegId: 1, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 1024, RawSize: 1024, Encoding: M, RegType: Tile, RegSize: 1024, RegId: 7, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 1024, RawSize: 1024, Encoding: V, RegType: Tile, RegSize: 1024, RegId: 0, RegCount: 1 + +0000000000000076 c4e27948cf TMMULTF32PS tmm1, tmm7, tmm0 + DSIZE: 32, ASIZE: 64, VLEN: - + ISA Set: AMX-TF32, Ins cat: AMX, CET tracked: no + CPUID leaf: 0x0000001e, sub-leaf: 0x00000001, reg: eax, bit: 6 + Exception class: AMX, exception type: AMX-E4 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: no, Compat: no, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: no, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: RW, Type: Register, Size: 1024, RawSize: 1024, Encoding: R, RegType: Tile, RegSize: 1024, RegId: 1, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 1024, RawSize: 1024, Encoding: M, RegType: Tile, RegSize: 1024, RegId: 7, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 1024, RawSize: 1024, Encoding: V, RegType: Tile, RegSize: 1024, RegId: 0, RegCount: 1 + +000000000000007B c4e2794a0411 TILELOADDRST1 tmm0, [rcx+rdx] + DSIZE: 32, ASIZE: 64, VLEN: - + ISA Set: AMX-MOVRS, Ins cat: AMX, CET tracked: no + CPUID leaf: 0x0000001e, sub-leaf: 0x00000001, reg: eax, bit: 8 + Exception class: AMX, exception type: AMX-E3 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: no, Compat: no, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: no, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 1024, RawSize: 1024, Encoding: R, RegType: Tile, RegSize: 1024, RegId: 0, RegCount: 1 + Operand: 1, Acc: R-, Type: Memory, Size: 1024, RawSize: 1024, Encoding: M, Sibmem Addressing: yes, + Segment: 3, Base: 1, Index: 2 * 1, + +0000000000000081 c4e27b4a0411 TILELOADDRS tmm0, [rcx+rdx] + DSIZE: 32, ASIZE: 64, VLEN: - + ISA Set: AMX-MOVRS, Ins cat: AMX, CET tracked: no + CPUID leaf: 0x0000001e, sub-leaf: 0x00000001, reg: eax, bit: 8 + Exception class: AMX, exception type: AMX-E3 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: no, Compat: no, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: no, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 1024, RawSize: 1024, Encoding: R, RegType: Tile, RegSize: 1024, RegId: 0, RegCount: 1 + Operand: 1, Acc: R-, Type: Memory, Size: 1024, RawSize: 1024, Encoding: M, Sibmem Addressing: yes, + Segment: 3, Base: 1, Index: 2 * 1, + +0000000000000087 c4e27a5fcd TTRANSPOSED tmm1, tmm5 + DSIZE: 32, ASIZE: 64, VLEN: - + ISA Set: AMX-TRANSPOSE, Ins cat: AMX, CET tracked: no + CPUID leaf: 0x0000001e, sub-leaf: 0x00000001, reg: eax, bit: 5 + Exception class: AMX, exception type: AMX-E9 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: no, Compat: no, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: no, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 1024, RawSize: 1024, Encoding: R, RegType: Tile, RegSize: 1024, RegId: 1, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 1024, RawSize: 1024, Encoding: M, RegType: Tile, RegSize: 1024, RegId: 5, RegCount: 1 + +000000000000008C c4e2786bcd TCONJTCMMIMFP16PS tmm1, tmm5, tmm0 + DSIZE: 32, ASIZE: 64, VLEN: - + ISA Set: AMX-TRANSPOSE, Ins cat: AMX, CET tracked: no + CPUID leaf: 0x0000001e, sub-leaf: 0x00000001, reg: eax, bit: 5 + Exception class: AMX, exception type: AMX-E10 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: no, Compat: no, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: no, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: RW, Type: Register, Size: 1024, RawSize: 1024, Encoding: R, RegType: Tile, RegSize: 1024, RegId: 1, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 1024, RawSize: 1024, Encoding: M, RegType: Tile, RegSize: 1024, RegId: 5, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 1024, RawSize: 1024, Encoding: V, RegType: Tile, RegSize: 1024, RegId: 0, RegCount: 1 + +0000000000000091 c4e2786bcd TCONJTCMMIMFP16PS tmm1, tmm5, tmm0 + DSIZE: 32, ASIZE: 64, VLEN: - + ISA Set: AMX-TRANSPOSE, Ins cat: AMX, CET tracked: no + CPUID leaf: 0x0000001e, sub-leaf: 0x00000001, reg: eax, bit: 5 + Exception class: AMX, exception type: AMX-E10 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: no, Compat: no, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: no, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: RW, Type: Register, Size: 1024, RawSize: 1024, Encoding: R, RegType: Tile, RegSize: 1024, RegId: 1, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 1024, RawSize: 1024, Encoding: M, RegType: Tile, RegSize: 1024, RegId: 5, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 1024, RawSize: 1024, Encoding: V, RegType: Tile, RegSize: 1024, RegId: 0, RegCount: 1 + +0000000000000096 c4e2796bcd TCONJTFP16 tmm1, tmm5 + DSIZE: 32, ASIZE: 64, VLEN: - + ISA Set: AMX-TRANSPOSE, Ins cat: AMX, CET tracked: no + CPUID leaf: 0x0000001e, sub-leaf: 0x00000001, reg: eax, bit: 5 + Exception class: AMX, exception type: AMX-E9 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: no, Compat: no, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: no, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 1024, RawSize: 1024, Encoding: R, RegType: Tile, RegSize: 1024, RegId: 1, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 1024, RawSize: 1024, Encoding: M, RegType: Tile, RegSize: 1024, RegId: 5, RegCount: 1 + +000000000000009B c4e27a6bcd TTCMMRLFP16PS tmm1, tmm5, tmm0 + DSIZE: 32, ASIZE: 64, VLEN: - + ISA Set: AMX-TRANSPOSE, Ins cat: AMX, CET tracked: no + CPUID leaf: 0x0000001e, sub-leaf: 0x00000001, reg: eax, bit: 5 + Exception class: AMX, exception type: AMX-E10 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: no, Compat: no, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: no, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: RW, Type: Register, Size: 1024, RawSize: 1024, Encoding: R, RegType: Tile, RegSize: 1024, RegId: 1, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 1024, RawSize: 1024, Encoding: M, RegType: Tile, RegSize: 1024, RegId: 5, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 1024, RawSize: 1024, Encoding: V, RegType: Tile, RegSize: 1024, RegId: 0, RegCount: 1 + +00000000000000A0 c4e27b6bcd TTCMMIMFP16PS tmm1, tmm5, tmm0 + DSIZE: 32, ASIZE: 64, VLEN: - + ISA Set: AMX-TRANSPOSE, Ins cat: AMX, CET tracked: no + CPUID leaf: 0x0000001e, sub-leaf: 0x00000001, reg: eax, bit: 5 + Exception class: AMX, exception type: AMX-E10 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: no, Compat: no, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: no, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: RW, Type: Register, Size: 1024, RawSize: 1024, Encoding: R, RegType: Tile, RegSize: 1024, RegId: 1, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 1024, RawSize: 1024, Encoding: M, RegType: Tile, RegSize: 1024, RegId: 5, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 1024, RawSize: 1024, Encoding: V, RegType: Tile, RegSize: 1024, RegId: 0, RegCount: 1 + +00000000000000A5 c4e27a6ccd TTDPBF16PS tmm1, tmm5, tmm0 + DSIZE: 32, ASIZE: 64, VLEN: - + ISA Set: AMX-TRANSPOSE, Ins cat: AMX, CET tracked: no + CPUID leaf: 0x0000001e, sub-leaf: 0x00000001, reg: eax, bit: 5 + Exception class: AMX, exception type: AMX-E10 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: no, Compat: no, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: no, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: RW, Type: Register, Size: 1024, RawSize: 1024, Encoding: R, RegType: Tile, RegSize: 1024, RegId: 1, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 1024, RawSize: 1024, Encoding: M, RegType: Tile, RegSize: 1024, RegId: 5, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 1024, RawSize: 1024, Encoding: V, RegType: Tile, RegSize: 1024, RegId: 0, RegCount: 1 + +00000000000000AA c4e27b6ccd TTDPFP16PS tmm1, tmm5, tmm0 + DSIZE: 32, ASIZE: 64, VLEN: - + ISA Set: AMX-TRANSPOSE, Ins cat: AMX, CET tracked: no + CPUID leaf: 0x0000001e, sub-leaf: 0x00000001, reg: eax, bit: 5 + Exception class: AMX, exception type: AMX-E10 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: no, Compat: no, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: no, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: RW, Type: Register, Size: 1024, RawSize: 1024, Encoding: R, RegType: Tile, RegSize: 1024, RegId: 1, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 1024, RawSize: 1024, Encoding: M, RegType: Tile, RegSize: 1024, RegId: 5, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 1024, RawSize: 1024, Encoding: V, RegType: Tile, RegSize: 1024, RegId: 0, RegCount: 1 + +00000000000000AF c4e2786e0411 T2RPNTLVWZ0 tmm0+1, [rcx+rdx] + DSIZE: 32, ASIZE: 64, VLEN: - + ISA Set: AMX-TRANSPOSE, Ins cat: AMX, CET tracked: no + CPUID leaf: 0x0000001e, sub-leaf: 0x00000001, reg: eax, bit: 5 + Exception class: AMX, exception type: AMX-E11 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: no, Compat: no, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: no, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 1024, RawSize: 1024, Encoding: R, RegType: Tile, RegSize: 1024, RegId: 0, RegCount: 2 + Operand: 1, Acc: R-, Type: Memory, Size: 1024, RawSize: 1024, Encoding: M, Sibmem Addressing: yes, + Segment: 3, Base: 1, Index: 2 * 1, + +00000000000000B5 c4e2796e0411 T2RPNTLVWZ1 tmm0+1, [rcx+rdx] + DSIZE: 32, ASIZE: 64, VLEN: - + ISA Set: AMX-TRANSPOSE, Ins cat: AMX, CET tracked: no + CPUID leaf: 0x0000001e, sub-leaf: 0x00000001, reg: eax, bit: 5 + Exception class: AMX, exception type: AMX-E11 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: no, Compat: no, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: no, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 1024, RawSize: 1024, Encoding: R, RegType: Tile, RegSize: 1024, RegId: 0, RegCount: 2 + Operand: 1, Acc: R-, Type: Memory, Size: 1024, RawSize: 1024, Encoding: M, Sibmem Addressing: yes, + Segment: 3, Base: 1, Index: 2 * 1, + +00000000000000BB c4e2786f0411 T2RPNTLVWZ0T1 tmm0+1, [rcx+rdx] + DSIZE: 32, ASIZE: 64, VLEN: - + ISA Set: AMX-TRANSPOSE, Ins cat: AMX, CET tracked: no + CPUID leaf: 0x0000001e, sub-leaf: 0x00000001, reg: eax, bit: 5 + Exception class: AMX, exception type: AMX-E11 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: no, Compat: no, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: no, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 1024, RawSize: 1024, Encoding: R, RegType: Tile, RegSize: 1024, RegId: 0, RegCount: 2 + Operand: 1, Acc: R-, Type: Memory, Size: 1024, RawSize: 1024, Encoding: M, Sibmem Addressing: yes, + Segment: 3, Base: 1, Index: 2 * 1, + +00000000000000C1 c4e2796f0411 T2RPNTLVWZ1T1 tmm0+1, [rcx+rdx] + DSIZE: 32, ASIZE: 64, VLEN: - + ISA Set: AMX-TRANSPOSE, Ins cat: AMX, CET tracked: no + CPUID leaf: 0x0000001e, sub-leaf: 0x00000001, reg: eax, bit: 5 + Exception class: AMX, exception type: AMX-E11 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: no, Compat: no, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: no, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 1024, RawSize: 1024, Encoding: R, RegType: Tile, RegSize: 1024, RegId: 0, RegCount: 2 + Operand: 1, Acc: R-, Type: Memory, Size: 1024, RawSize: 1024, Encoding: M, Sibmem Addressing: yes, + Segment: 3, Base: 1, Index: 2 * 1, + +00000000000000C7 c4e578f80411 T2RPNTLVWZ0RS tmm0+1, [rcx+rdx] + DSIZE: 32, ASIZE: 64, VLEN: - + ISA Set: AMX-TRANSPOSE, Ins cat: AMX, CET tracked: no + CPUID leaf: 0x0000001e, sub-leaf: 0x00000001, reg: eax, bit: 5 + Exception class: AMX, exception type: AMX-E11 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: no, Compat: no, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: no, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 1024, RawSize: 1024, Encoding: R, RegType: Tile, RegSize: 1024, RegId: 0, RegCount: 2 + Operand: 1, Acc: R-, Type: Memory, Size: 1024, RawSize: 1024, Encoding: M, Sibmem Addressing: yes, + Segment: 3, Base: 1, Index: 2 * 1, + +00000000000000CD c4e579f80411 T2RPNTLVWZ1RS tmm0+1, [rcx+rdx] + DSIZE: 32, ASIZE: 64, VLEN: - + ISA Set: AMX-TRANSPOSE, Ins cat: AMX, CET tracked: no + CPUID leaf: 0x0000001e, sub-leaf: 0x00000001, reg: eax, bit: 5 + Exception class: AMX, exception type: AMX-E11 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: no, Compat: no, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: no, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 1024, RawSize: 1024, Encoding: R, RegType: Tile, RegSize: 1024, RegId: 0, RegCount: 2 + Operand: 1, Acc: R-, Type: Memory, Size: 1024, RawSize: 1024, Encoding: M, Sibmem Addressing: yes, + Segment: 3, Base: 1, Index: 2 * 1, + +00000000000000D3 c4e578f90411 T2RPNTLVWZ0RST1 tmm0+1, [rcx+rdx] + DSIZE: 32, ASIZE: 64, VLEN: - + ISA Set: AMX-TRANSPOSE, Ins cat: AMX, CET tracked: no + CPUID leaf: 0x0000001e, sub-leaf: 0x00000001, reg: eax, bit: 5 + Exception class: AMX, exception type: AMX-E11 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: no, Compat: no, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: no, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 1024, RawSize: 1024, Encoding: R, RegType: Tile, RegSize: 1024, RegId: 0, RegCount: 2 + Operand: 1, Acc: R-, Type: Memory, Size: 1024, RawSize: 1024, Encoding: M, Sibmem Addressing: yes, + Segment: 3, Base: 1, Index: 2 * 1, + +00000000000000D9 c4e579f90411 T2RPNTLVWZ1RST1 tmm0+1, [rcx+rdx] + DSIZE: 32, ASIZE: 64, VLEN: - + ISA Set: AMX-TRANSPOSE, Ins cat: AMX, CET tracked: no + CPUID leaf: 0x0000001e, sub-leaf: 0x00000001, reg: eax, bit: 5 + Exception class: AMX, exception type: AMX-E11 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: no, Compat: no, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: no, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 1024, RawSize: 1024, Encoding: R, RegType: Tile, RegSize: 1024, RegId: 0, RegCount: 2 + Operand: 1, Acc: R-, Type: Memory, Size: 1024, RawSize: 1024, Encoding: M, Sibmem Addressing: yes, + Segment: 3, Base: 1, Index: 2 * 1, + +00000000000000DF c4e578fdcd TDPBF8PS tmm1, tmm5, tmm0 + DSIZE: 32, ASIZE: 64, VLEN: - + ISA Set: AMX-FP8, Ins cat: AMX, CET tracked: no + CPUID leaf: 0x0000001e, sub-leaf: 0x00000001, reg: eax, bit: 4 + Exception class: AMX, exception type: AMX-E4 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: no, Compat: no, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: no, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: RW, Type: Register, Size: 1024, RawSize: 1024, Encoding: R, RegType: Tile, RegSize: 1024, RegId: 1, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 1024, RawSize: 1024, Encoding: M, RegType: Tile, RegSize: 1024, RegId: 5, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 1024, RawSize: 1024, Encoding: V, RegType: Tile, RegSize: 1024, RegId: 0, RegCount: 1 + +00000000000000E4 c4e579fdcd TDPHF8PS tmm1, tmm5, tmm0 + DSIZE: 32, ASIZE: 64, VLEN: - + ISA Set: AMX-FP8, Ins cat: AMX, CET tracked: no + CPUID leaf: 0x0000001e, sub-leaf: 0x00000001, reg: eax, bit: 4 + Exception class: AMX, exception type: AMX-E4 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: no, Compat: no, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: no, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: RW, Type: Register, Size: 1024, RawSize: 1024, Encoding: R, RegType: Tile, RegSize: 1024, RegId: 1, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 1024, RawSize: 1024, Encoding: M, RegType: Tile, RegSize: 1024, RegId: 5, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 1024, RawSize: 1024, Encoding: V, RegType: Tile, RegSize: 1024, RegId: 0, RegCount: 1 + +00000000000000E9 c4e57afdcd TDPHBF8PS tmm1, tmm5, tmm0 + DSIZE: 32, ASIZE: 64, VLEN: - + ISA Set: AMX-FP8, Ins cat: AMX, CET tracked: no + CPUID leaf: 0x0000001e, sub-leaf: 0x00000001, reg: eax, bit: 4 + Exception class: AMX, exception type: AMX-E4 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: no, Compat: no, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: no, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: RW, Type: Register, Size: 1024, RawSize: 1024, Encoding: R, RegType: Tile, RegSize: 1024, RegId: 1, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 1024, RawSize: 1024, Encoding: M, RegType: Tile, RegSize: 1024, RegId: 5, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 1024, RawSize: 1024, Encoding: V, RegType: Tile, RegSize: 1024, RegId: 0, RegCount: 1 + +00000000000000EE c4e57bfdcd TDPBHF8PS tmm1, tmm5, tmm0 + DSIZE: 32, ASIZE: 64, VLEN: - + ISA Set: AMX-FP8, Ins cat: AMX, CET tracked: no + CPUID leaf: 0x0000001e, sub-leaf: 0x00000001, reg: eax, bit: 4 + Exception class: AMX, exception type: AMX-E4 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: no, Compat: no, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: no, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: RW, Type: Register, Size: 1024, RawSize: 1024, Encoding: R, RegType: Tile, RegSize: 1024, RegId: 1, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 1024, RawSize: 1024, Encoding: M, RegType: Tile, RegSize: 1024, RegId: 5, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 1024, RawSize: 1024, Encoding: V, RegType: Tile, RegSize: 1024, RegId: 0, RegCount: 1 + diff --git a/bddisasm_test/x86/amx/amx1_64.test b/bddisasm_test/x86/amx/amx1_64.test index b626313..e837b3d 100644 Binary files a/bddisasm_test/x86/amx/amx1_64.test and b/bddisasm_test/x86/amx/amx1_64.test differ diff --git a/bddisasm_test/x86/amx/amx_evex_64.result b/bddisasm_test/x86/amx/amx_evex_64.result new file mode 100644 index 0000000..0dd985b --- /dev/null +++ b/bddisasm_test/x86/amx/amx_evex_64.result @@ -0,0 +1,228 @@ +0000000000000000 62f27e484ade TCVTROWD2PS zmm3, tmm6, eax + DSIZE: 32, ASIZE: 64, VLEN: 512 + ISA Set: AMX-AVX512, Ins cat: AMX, CET tracked: no + CPUID leaf: 0x0000001e, sub-leaf: 0x00000001, reg: eax, bit: 7 + EVEX Tuple Type: None + Exception class: APX, exception type: AMX-EVEX-E8 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: no, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 1024, RawSize: 1024, Encoding: M, RegType: Tile, RegSize: 1024, RegId: 6, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: V, RegType: General Purpose, RegSize: 4, RegId: 0, RegCount: 1 + +0000000000000006 62f37e4807debd TCVTROWD2PS zmm3, tmm6, 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 512 + ISA Set: AMX-AVX512, Ins cat: AMX, CET tracked: no + CPUID leaf: 0x0000001e, sub-leaf: 0x00000001, reg: eax, bit: 7 + EVEX Tuple Type: None + Exception class: APX, exception type: AMX-EVEX-E7 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: no, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 1024, RawSize: 1024, Encoding: M, RegType: Tile, RegSize: 1024, RegId: 6, RegCount: 1 + Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + +000000000000000D 62f27f486dde TCVTROWPS2PBF16H zmm3, tmm6, eax + DSIZE: 32, ASIZE: 64, VLEN: 512 + ISA Set: AMX-AVX512, Ins cat: AMX, CET tracked: no + CPUID leaf: 0x0000001e, sub-leaf: 0x00000001, reg: eax, bit: 7 + EVEX Tuple Type: None + Exception class: APX, exception type: AMX-EVEX-E8 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: no, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 1024, RawSize: 1024, Encoding: M, RegType: Tile, RegSize: 1024, RegId: 6, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: V, RegType: General Purpose, RegSize: 4, RegId: 0, RegCount: 1 + +0000000000000013 62f37f4807debd TCVTROWPS2PBF16H zmm3, tmm6, 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 512 + ISA Set: AMX-AVX512, Ins cat: AMX, CET tracked: no + CPUID leaf: 0x0000001e, sub-leaf: 0x00000001, reg: eax, bit: 7 + EVEX Tuple Type: None + Exception class: APX, exception type: AMX-EVEX-E7 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: no, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 1024, RawSize: 1024, Encoding: M, RegType: Tile, RegSize: 1024, RegId: 6, RegCount: 1 + Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + +000000000000001A 62f27e486dde TCVTROWPS2PBF16L zmm3, tmm6, eax + DSIZE: 32, ASIZE: 64, VLEN: 512 + ISA Set: AMX-AVX512, Ins cat: AMX, CET tracked: no + CPUID leaf: 0x0000001e, sub-leaf: 0x00000001, reg: eax, bit: 7 + EVEX Tuple Type: None + Exception class: APX, exception type: AMX-EVEX-E8 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: no, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 1024, RawSize: 1024, Encoding: M, RegType: Tile, RegSize: 1024, RegId: 6, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: V, RegType: General Purpose, RegSize: 4, RegId: 0, RegCount: 1 + +0000000000000020 62f37e4877debd TCVTROWPS2PBF16L zmm3, tmm6, 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 512 + ISA Set: AMX-AVX512, Ins cat: AMX, CET tracked: no + CPUID leaf: 0x0000001e, sub-leaf: 0x00000001, reg: eax, bit: 7 + EVEX Tuple Type: None + Exception class: APX, exception type: AMX-EVEX-E7 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: no, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 1024, RawSize: 1024, Encoding: M, RegType: Tile, RegSize: 1024, RegId: 6, RegCount: 1 + Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + +0000000000000027 62f27c486dde TCVTROWPS2PHH zmm3, tmm6, eax + DSIZE: 32, ASIZE: 64, VLEN: 512 + ISA Set: AMX-AVX512, Ins cat: AMX, CET tracked: no + CPUID leaf: 0x0000001e, sub-leaf: 0x00000001, reg: eax, bit: 7 + EVEX Tuple Type: None + Exception class: APX, exception type: AMX-EVEX-E8 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: no, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 1024, RawSize: 1024, Encoding: M, RegType: Tile, RegSize: 1024, RegId: 6, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: V, RegType: General Purpose, RegSize: 4, RegId: 0, RegCount: 1 + +000000000000002D 62f37c4807debd TCVTROWPS2PHH zmm3, tmm6, 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 512 + ISA Set: AMX-AVX512, Ins cat: AMX, CET tracked: no + CPUID leaf: 0x0000001e, sub-leaf: 0x00000001, reg: eax, bit: 7 + EVEX Tuple Type: None + Exception class: APX, exception type: AMX-EVEX-E7 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: no, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 1024, RawSize: 1024, Encoding: M, RegType: Tile, RegSize: 1024, RegId: 6, RegCount: 1 + Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + +0000000000000034 62f27d486dde TCVTROWPS2PHL zmm3, tmm6, eax + DSIZE: 32, ASIZE: 64, VLEN: 512 + ISA Set: AMX-AVX512, Ins cat: AMX, CET tracked: no + CPUID leaf: 0x0000001e, sub-leaf: 0x00000001, reg: eax, bit: 7 + EVEX Tuple Type: None + Exception class: APX, exception type: AMX-EVEX-E8 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: no, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 1024, RawSize: 1024, Encoding: M, RegType: Tile, RegSize: 1024, RegId: 6, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: V, RegType: General Purpose, RegSize: 4, RegId: 0, RegCount: 1 + +000000000000003A 62f37f4877debd TCVTROWPS2PHL zmm3, tmm6, 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 512 + ISA Set: AMX-AVX512, Ins cat: AMX, CET tracked: no + CPUID leaf: 0x0000001e, sub-leaf: 0x00000001, reg: eax, bit: 7 + EVEX Tuple Type: None + Exception class: APX, exception type: AMX-EVEX-E7 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: no, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 1024, RawSize: 1024, Encoding: M, RegType: Tile, RegSize: 1024, RegId: 6, RegCount: 1 + Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + +0000000000000041 62f27d484ade TILEMOVROW zmm3, tmm6, eax + DSIZE: 32, ASIZE: 64, VLEN: 512 + ISA Set: AMX-AVX512, Ins cat: AMX, CET tracked: no + CPUID leaf: 0x0000001e, sub-leaf: 0x00000001, reg: eax, bit: 7 + EVEX Tuple Type: None + Exception class: APX, exception type: AMX-EVEX-E8 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: no, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 1024, RawSize: 1024, Encoding: M, RegType: Tile, RegSize: 1024, RegId: 6, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: V, RegType: General Purpose, RegSize: 4, RegId: 0, RegCount: 1 + +0000000000000047 62f37d4807debd TILEMOVROW zmm3, tmm6, 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 512 + ISA Set: AMX-AVX512, Ins cat: AMX, CET tracked: no + CPUID leaf: 0x0000001e, sub-leaf: 0x00000001, reg: eax, bit: 7 + EVEX Tuple Type: None + Exception class: APX, exception type: AMX-EVEX-E7 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: no, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 1024, RawSize: 1024, Encoding: M, RegType: Tile, RegSize: 1024, RegId: 6, RegCount: 1 + Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + diff --git a/bddisasm_test/x86/amx/amx_evex_64.test b/bddisasm_test/x86/amx/amx_evex_64.test new file mode 100644 index 0000000..44cf943 --- /dev/null +++ b/bddisasm_test/x86/amx/amx_evex_64.test @@ -0,0 +1 @@ +bò~HJÞbó~HÞ½bòHmÞbóHÞ½bò~HmÞbó~HwÞ½bò|HmÞbó|HÞ½bò}HmÞbóHwÞ½bò}HJÞbó}HÞ½ \ No newline at end of file diff --git a/bddisasm_test/x86/avx/avx_64.result b/bddisasm_test/x86/avx/avx_64.result index e96e1d7..fe774ae 100644 --- a/bddisasm_test/x86/avx/avx_64.result +++ b/bddisasm_test/x86/avx/avx_64.result @@ -3,6 +3,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21,6 +22,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40,6 +42,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59,6 +62,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79,6 +83,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99,6 +104,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120,6 +126,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141,6 +148,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162,6 +170,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182,6 +191,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203,6 +213,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224,6 +235,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -244,6 +256,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -262,6 +275,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -281,6 +295,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -300,6 +315,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -320,6 +336,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -340,6 +357,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -361,6 +379,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -382,6 +401,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -403,6 +423,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -423,6 +444,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -444,6 +466,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -465,6 +488,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -485,6 +509,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -503,6 +528,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -522,6 +548,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -541,6 +568,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -560,6 +588,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -578,6 +607,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -597,6 +627,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -616,6 +647,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -635,6 +667,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -653,6 +686,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -672,6 +706,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -691,6 +726,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -710,6 +746,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -728,6 +765,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -747,6 +785,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -766,6 +805,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2452,6 +2492,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2471,6 +2512,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2491,6 +2533,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2511,6 +2554,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2531,6 +2575,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2550,6 +2595,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2570,6 +2616,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2590,6 +2637,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2610,6 +2658,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2629,6 +2678,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2649,6 +2699,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2669,6 +2720,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2689,6 +2741,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2708,6 +2761,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2728,6 +2782,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2748,6 +2803,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2768,6 +2824,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID FLAGS access CF: m, PF: m, ZF: m, Valid modes @@ -2788,6 +2845,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID FLAGS access CF: m, PF: m, ZF: m, Valid modes @@ -2809,6 +2867,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID FLAGS access CF: m, PF: m, ZF: m, Valid modes @@ -2830,6 +2889,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID FLAGS access CF: m, PF: m, ZF: m, Valid modes @@ -2851,6 +2911,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID FLAGS access CF: m, PF: m, ZF: m, Valid modes @@ -2871,6 +2932,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID FLAGS access CF: m, PF: m, ZF: m, Valid modes @@ -2892,6 +2954,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID FLAGS access CF: m, PF: m, ZF: m, Valid modes @@ -2913,6 +2976,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID FLAGS access CF: m, PF: m, ZF: m, Valid modes @@ -3392,6 +3456,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3409,6 +3474,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3427,6 +3493,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3445,6 +3512,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3464,6 +3532,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3483,6 +3552,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3503,6 +3573,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3523,6 +3594,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3543,6 +3615,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3562,6 +3635,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3582,6 +3656,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3602,6 +3677,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3621,6 +3697,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3638,6 +3715,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3655,6 +3733,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3673,6 +3752,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3691,6 +3771,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3710,6 +3791,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3729,6 +3811,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3749,6 +3832,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3769,6 +3853,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3788,6 +3873,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3805,6 +3891,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3822,6 +3909,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3840,6 +3928,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3858,6 +3947,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3877,6 +3967,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3896,6 +3987,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3916,6 +4008,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3936,6 +4029,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3955,6 +4049,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3972,6 +4067,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3989,6 +4085,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4007,6 +4104,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4025,6 +4123,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4044,6 +4143,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4063,6 +4163,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4083,6 +4184,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4103,6 +4205,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4122,6 +4225,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4139,6 +4243,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4157,6 +4262,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4175,6 +4281,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4194,6 +4301,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4213,6 +4321,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4233,6 +4342,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4253,6 +4363,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4273,6 +4384,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4292,6 +4404,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4312,6 +4425,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4332,6 +4446,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4351,6 +4466,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4368,6 +4484,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4386,6 +4503,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4404,6 +4522,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4423,6 +4542,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4442,6 +4562,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4462,6 +4583,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4482,6 +4604,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4502,6 +4625,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4521,6 +4645,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4541,6 +4666,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4561,6 +4687,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4580,6 +4707,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4597,6 +4725,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4615,6 +4744,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4633,6 +4763,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4652,6 +4783,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4671,6 +4803,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4691,6 +4824,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4711,6 +4845,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4731,6 +4866,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4750,6 +4886,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4770,6 +4907,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4790,6 +4928,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4809,6 +4948,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4826,6 +4966,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4844,6 +4985,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4862,6 +5004,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4880,6 +5023,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4897,6 +5041,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4915,6 +5060,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4933,6 +5079,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4951,6 +5098,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4969,6 +5117,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4988,6 +5137,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5007,6 +5157,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5026,6 +5177,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5044,6 +5196,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5062,6 +5215,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5081,6 +5235,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5100,6 +5255,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5118,6 +5274,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5136,6 +5293,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5155,6 +5313,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5174,6 +5333,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5192,6 +5352,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5211,6 +5372,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5230,6 +5392,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5249,6 +5412,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5266,6 +5430,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5284,6 +5449,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5302,6 +5468,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5320,6 +5487,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5337,6 +5505,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5355,6 +5524,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5373,6 +5543,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5391,6 +5562,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5408,6 +5580,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5425,6 +5598,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5443,6 +5617,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5461,6 +5636,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5480,6 +5656,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5499,6 +5676,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5519,6 +5697,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5539,6 +5718,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5558,6 +5738,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5575,6 +5756,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5593,6 +5775,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5611,6 +5794,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5630,6 +5814,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5649,6 +5834,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5669,6 +5855,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5689,6 +5876,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5709,6 +5897,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5728,6 +5917,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5748,6 +5938,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5768,6 +5959,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5787,6 +5979,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5804,6 +5997,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5822,6 +6016,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5840,6 +6035,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5858,6 +6054,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5875,6 +6072,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5893,6 +6091,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5911,6 +6110,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5929,6 +6129,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5946,6 +6147,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5964,6 +6166,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5982,6 +6185,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6000,6 +6204,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6017,6 +6222,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6035,6 +6241,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6053,6 +6260,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6071,6 +6279,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6089,6 +6298,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6108,6 +6318,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6127,6 +6338,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6147,6 +6359,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6167,6 +6380,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6188,6 +6402,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6209,6 +6424,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6230,6 +6446,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6250,6 +6467,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6271,6 +6489,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6292,6 +6511,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6312,6 +6532,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6330,6 +6551,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6349,6 +6571,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6368,6 +6591,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6388,6 +6612,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6408,6 +6633,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6429,6 +6655,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6450,6 +6677,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6471,6 +6699,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6491,6 +6720,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6512,6 +6742,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6533,6 +6764,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6553,6 +6785,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6571,6 +6804,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6590,6 +6824,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6609,6 +6844,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6628,6 +6864,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6646,6 +6883,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6665,6 +6903,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6684,6 +6923,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6703,6 +6943,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6722,6 +6963,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6742,6 +6984,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6762,6 +7005,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6782,6 +7026,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6801,6 +7046,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6821,6 +7067,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6841,6 +7088,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6955,6 +7203,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6973,6 +7222,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6992,6 +7242,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7011,6 +7262,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7030,6 +7282,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7048,6 +7301,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7067,6 +7321,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7086,6 +7341,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7105,6 +7361,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7123,6 +7380,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7142,6 +7400,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7161,6 +7420,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7180,6 +7440,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7198,6 +7459,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7217,6 +7479,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7236,6 +7499,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7689,6 +7953,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7707,6 +7972,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7726,6 +7992,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7745,6 +8012,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7765,6 +8033,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7785,6 +8054,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7806,6 +8076,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7827,6 +8098,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7848,6 +8120,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7868,6 +8141,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7889,6 +8163,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7910,6 +8185,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7930,6 +8206,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7948,6 +8225,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7967,6 +8245,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7986,6 +8265,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8006,6 +8286,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8026,6 +8307,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8047,6 +8329,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8068,6 +8351,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8089,6 +8373,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8109,6 +8394,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8130,6 +8416,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8151,6 +8438,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8171,6 +8459,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8189,6 +8478,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8208,6 +8498,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8227,6 +8518,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8246,6 +8538,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8264,6 +8557,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8283,6 +8577,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8302,6 +8597,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8321,6 +8617,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8339,6 +8636,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8358,6 +8656,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8377,6 +8676,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8397,6 +8697,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8417,6 +8718,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8438,6 +8740,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8459,6 +8762,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8480,6 +8784,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8500,6 +8805,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8521,6 +8827,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8542,6 +8849,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8562,6 +8870,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8580,6 +8889,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8599,6 +8909,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8618,6 +8929,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8638,6 +8950,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8658,6 +8971,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8679,6 +8993,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8700,6 +9015,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8721,6 +9037,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8741,6 +9058,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8762,6 +9080,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8783,6 +9102,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8803,6 +9123,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8821,6 +9142,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8840,6 +9162,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8859,6 +9182,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8878,6 +9202,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8896,6 +9221,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8915,6 +9241,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8934,6 +9261,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13994,6 +14322,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14012,6 +14341,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14031,6 +14361,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14050,6 +14381,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14070,6 +14402,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14090,6 +14423,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14111,6 +14445,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14132,6 +14467,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14153,6 +14489,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14173,6 +14510,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14194,6 +14532,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14215,6 +14554,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14235,6 +14575,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14253,6 +14594,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14272,6 +14614,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14291,6 +14634,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14311,6 +14655,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14331,6 +14676,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14352,6 +14698,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14373,6 +14720,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14394,6 +14742,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14414,6 +14763,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14435,6 +14785,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14456,6 +14807,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14476,6 +14828,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14494,6 +14847,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14513,6 +14867,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14532,6 +14887,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14551,6 +14907,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14569,6 +14926,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14588,6 +14946,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14607,6 +14966,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38957,6 +39317,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38975,6 +39336,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38994,6 +39356,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39013,6 +39376,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39032,6 +39396,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39050,6 +39415,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39069,6 +39435,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39088,6 +39455,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39107,6 +39475,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39126,6 +39495,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39146,6 +39516,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39166,6 +39537,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39186,6 +39558,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39205,6 +39578,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39225,6 +39599,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39245,6 +39620,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39917,6 +40293,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39934,6 +40311,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39952,6 +40330,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39970,6 +40349,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39989,6 +40369,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40008,6 +40389,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40028,6 +40410,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40048,6 +40431,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40068,6 +40452,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40087,6 +40472,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40107,6 +40493,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40127,6 +40514,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40146,6 +40534,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40163,6 +40552,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40181,6 +40571,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40199,6 +40590,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40218,6 +40610,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40237,6 +40630,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40257,6 +40651,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40277,6 +40672,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40297,6 +40693,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40316,6 +40713,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40336,6 +40734,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40356,6 +40755,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40375,6 +40775,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40393,6 +40794,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40412,6 +40814,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40431,6 +40834,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40450,6 +40854,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40468,6 +40873,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40487,6 +40893,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40506,6 +40913,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40579,6 +40987,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40597,6 +41006,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40616,6 +41026,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40635,6 +41046,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40655,6 +41067,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40675,6 +41088,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40696,6 +41110,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40717,6 +41132,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40738,6 +41154,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40758,6 +41175,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40779,6 +41197,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40800,6 +41219,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40820,6 +41240,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40838,6 +41259,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40857,6 +41279,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40876,6 +41299,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40896,6 +41320,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40916,6 +41341,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40937,6 +41363,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40958,6 +41385,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40979,6 +41407,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40999,6 +41428,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41020,6 +41450,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41041,6 +41472,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41061,6 +41493,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41079,6 +41512,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41098,6 +41532,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41117,6 +41552,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41136,6 +41572,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41154,6 +41591,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41173,6 +41611,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41192,6 +41631,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41377,6 +41817,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID FLAGS access CF: m, PF: m, ZF: m, Valid modes @@ -41397,6 +41838,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID FLAGS access CF: m, PF: m, ZF: m, Valid modes @@ -41418,6 +41860,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID FLAGS access CF: m, PF: m, ZF: m, Valid modes @@ -41439,6 +41882,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID FLAGS access CF: m, PF: m, ZF: m, Valid modes @@ -41460,6 +41904,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID FLAGS access CF: m, PF: m, ZF: m, Valid modes @@ -41480,6 +41925,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID FLAGS access CF: m, PF: m, ZF: m, Valid modes @@ -41501,6 +41947,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID FLAGS access CF: m, PF: m, ZF: m, Valid modes @@ -41522,6 +41969,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID FLAGS access CF: m, PF: m, ZF: m, Valid modes diff --git a/bddisasm_test/x86/avx/f16c_64.result b/bddisasm_test/x86/avx/f16c_64.result index 9a9155b..32f8084 100644 --- a/bddisasm_test/x86/avx/f16c_64.result +++ b/bddisasm_test/x86/avx/f16c_64.result @@ -3,6 +3,7 @@ ISA Set: F16C, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 29 Exception class: SSE/VEX, exception type: 11 + SIMD Exceptions: I Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20,6 +21,7 @@ ISA Set: F16C, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 29 Exception class: SSE/VEX, exception type: 11 + SIMD Exceptions: I Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37,6 +39,7 @@ ISA Set: F16C, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 29 Exception class: SSE/VEX, exception type: 11 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55,6 +58,7 @@ ISA Set: F16C, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 29 Exception class: SSE/VEX, exception type: 11 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73,6 +77,7 @@ ISA Set: F16C, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 29 Exception class: SSE/VEX, exception type: 11 + SIMD Exceptions: I Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91,6 +96,7 @@ ISA Set: F16C, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 29 Exception class: SSE/VEX, exception type: 11 + SIMD Exceptions: I Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109,6 +115,7 @@ ISA Set: F16C, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 29 Exception class: SSE/VEX, exception type: 11 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128,6 +135,7 @@ ISA Set: F16C, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 29 Exception class: SSE/VEX, exception type: 11 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes diff --git a/bddisasm_test/x86/avx/fma4_64.result b/bddisasm_test/x86/avx/fma4_64.result index d1ed4b4..99fbf77 100644 --- a/bddisasm_test/x86/avx/fma4_64.result +++ b/bddisasm_test/x86/avx/fma4_64.result @@ -2,6 +2,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20,6 +21,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38,6 +40,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56,6 +59,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74,6 +78,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92,6 +97,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110,6 +116,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128,6 +135,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146,6 +154,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164,6 +173,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182,6 +192,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200,6 +211,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218,6 +230,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -236,6 +249,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -254,6 +268,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -272,6 +287,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -290,6 +306,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -308,6 +325,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -326,6 +344,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -344,6 +363,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -362,6 +382,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -380,6 +401,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -398,6 +420,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -416,6 +439,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -434,6 +458,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -452,6 +477,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -470,6 +496,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -488,6 +515,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -506,6 +534,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -524,6 +553,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -542,6 +572,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -560,6 +591,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -578,6 +610,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -596,6 +629,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -614,6 +648,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -632,6 +667,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -650,6 +686,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -668,6 +705,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -686,6 +724,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -704,6 +743,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -722,6 +762,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -741,6 +782,7 @@ DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -760,6 +802,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -779,6 +822,7 @@ DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -798,6 +842,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -817,6 +862,7 @@ DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -836,6 +882,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -855,6 +902,7 @@ DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -874,6 +922,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -893,6 +942,7 @@ DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -912,6 +962,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -931,6 +982,7 @@ DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -950,6 +1002,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -969,6 +1022,7 @@ DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -988,6 +1042,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1007,6 +1062,7 @@ DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1026,6 +1082,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1045,6 +1102,7 @@ DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1064,6 +1122,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1083,6 +1142,7 @@ DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1102,6 +1162,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1121,6 +1182,7 @@ DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1140,6 +1202,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1159,6 +1222,7 @@ DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1178,6 +1242,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1197,6 +1262,7 @@ DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1216,6 +1282,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1235,6 +1302,7 @@ DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1254,6 +1322,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1273,6 +1342,7 @@ DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1292,6 +1362,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1311,6 +1382,7 @@ DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1330,6 +1402,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1349,6 +1422,7 @@ DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1368,6 +1442,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1387,6 +1462,7 @@ DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1406,6 +1482,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1425,6 +1502,7 @@ DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1444,6 +1522,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1463,6 +1542,7 @@ DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1482,6 +1562,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1500,6 +1581,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1518,6 +1600,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1536,6 +1619,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1554,6 +1638,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1572,6 +1657,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1590,6 +1676,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1608,6 +1695,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1626,6 +1714,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1644,6 +1733,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1662,6 +1752,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1680,6 +1771,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1698,6 +1790,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1716,6 +1809,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1734,6 +1828,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1752,6 +1847,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1770,6 +1866,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1788,6 +1885,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1806,6 +1904,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1824,6 +1923,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1842,6 +1942,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1860,6 +1961,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1878,6 +1980,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1896,6 +1999,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1914,6 +2018,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1933,6 +2038,7 @@ DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1952,6 +2058,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1971,6 +2078,7 @@ DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1990,6 +2098,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2009,6 +2118,7 @@ DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2028,6 +2138,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2047,6 +2158,7 @@ DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2066,6 +2178,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2085,6 +2198,7 @@ DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2104,6 +2218,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2123,6 +2238,7 @@ DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2142,6 +2258,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2161,6 +2278,7 @@ DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2180,6 +2298,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2199,6 +2318,7 @@ DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2218,6 +2338,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2237,6 +2358,7 @@ DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2256,6 +2378,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2275,6 +2398,7 @@ DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2294,6 +2418,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2313,6 +2438,7 @@ DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2332,6 +2458,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2351,6 +2478,7 @@ DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes diff --git a/bddisasm_test/x86/avx/fma_64.result b/bddisasm_test/x86/avx/fma_64.result index b1634fb..9684926 100644 --- a/bddisasm_test/x86/avx/fma_64.result +++ b/bddisasm_test/x86/avx/fma_64.result @@ -3,6 +3,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21,6 +22,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39,6 +41,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57,6 +60,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75,6 +79,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93,6 +98,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111,6 +117,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129,6 +136,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147,6 +155,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165,6 +174,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183,6 +193,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201,6 +212,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219,6 +231,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -237,6 +250,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -255,6 +269,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -273,6 +288,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -291,6 +307,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -309,6 +326,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -327,6 +345,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -345,6 +364,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -363,6 +383,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -381,6 +402,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -399,6 +421,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -417,6 +440,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -435,6 +459,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -453,6 +478,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -471,6 +497,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -489,6 +516,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -507,6 +535,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -525,6 +554,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -543,6 +573,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -561,6 +592,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -579,6 +611,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -597,6 +630,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -615,6 +649,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -633,6 +668,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -651,6 +687,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -669,6 +706,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -687,6 +725,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -705,6 +744,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -723,6 +763,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -741,6 +782,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -759,6 +801,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -777,6 +820,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -795,6 +839,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -813,6 +858,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -831,6 +877,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -849,6 +896,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -867,6 +915,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -885,6 +934,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -903,6 +953,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -921,6 +972,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -939,6 +991,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -957,6 +1010,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -975,6 +1029,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -993,6 +1048,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1011,6 +1067,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1029,6 +1086,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1047,6 +1105,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1065,6 +1124,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1083,6 +1143,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1102,6 +1163,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1121,6 +1183,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1140,6 +1203,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1159,6 +1223,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1178,6 +1243,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1197,6 +1263,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1216,6 +1283,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1235,6 +1303,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1254,6 +1323,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1273,6 +1343,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1292,6 +1363,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1311,6 +1383,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1330,6 +1403,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1349,6 +1423,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1368,6 +1443,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1387,6 +1463,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1406,6 +1483,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1425,6 +1503,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1444,6 +1523,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1463,6 +1543,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1482,6 +1563,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1501,6 +1583,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1520,6 +1603,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1539,6 +1623,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1558,6 +1643,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1577,6 +1663,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1596,6 +1683,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1615,6 +1703,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1634,6 +1723,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1653,6 +1743,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1672,6 +1763,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1691,6 +1783,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1710,6 +1803,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1729,6 +1823,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1748,6 +1843,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1767,6 +1863,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1786,6 +1883,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1805,6 +1903,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1824,6 +1923,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1843,6 +1943,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1862,6 +1963,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1881,6 +1983,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1900,6 +2003,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1919,6 +2023,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1938,6 +2043,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1957,6 +2063,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1976,6 +2083,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1995,6 +2103,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2014,6 +2123,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2033,6 +2143,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2052,6 +2163,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2071,6 +2183,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2090,6 +2203,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2109,6 +2223,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2128,6 +2243,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2147,6 +2263,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2166,6 +2283,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2185,6 +2303,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2204,6 +2323,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2223,6 +2343,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2241,6 +2362,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2259,6 +2381,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2277,6 +2400,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2295,6 +2419,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2313,6 +2438,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2331,6 +2457,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2349,6 +2476,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2367,6 +2495,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2385,6 +2514,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2403,6 +2533,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2421,6 +2552,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2439,6 +2571,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2457,6 +2590,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2475,6 +2609,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2493,6 +2628,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2511,6 +2647,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2529,6 +2666,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2547,6 +2685,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2565,6 +2704,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2583,6 +2723,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2601,6 +2742,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2619,6 +2761,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2637,6 +2780,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2655,6 +2799,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2673,6 +2818,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2691,6 +2837,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2709,6 +2856,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2727,6 +2875,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2745,6 +2894,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2763,6 +2913,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2781,6 +2932,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2799,6 +2951,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2817,6 +2970,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2835,6 +2989,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2853,6 +3008,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2871,6 +3027,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2890,6 +3047,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2909,6 +3067,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2928,6 +3087,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2947,6 +3107,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2966,6 +3127,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2985,6 +3147,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3004,6 +3167,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3023,6 +3187,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3042,6 +3207,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3061,6 +3227,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3080,6 +3247,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3099,6 +3267,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3118,6 +3287,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3137,6 +3307,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3156,6 +3327,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3175,6 +3347,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3194,6 +3367,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3213,6 +3387,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3232,6 +3407,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3251,6 +3427,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3270,6 +3447,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3289,6 +3467,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3308,6 +3487,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3327,6 +3507,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3346,6 +3527,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3365,6 +3547,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3384,6 +3567,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3403,6 +3587,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3422,6 +3607,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3441,6 +3627,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3460,6 +3647,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3479,6 +3667,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3498,6 +3687,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3517,6 +3707,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3536,6 +3727,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes diff --git a/bddisasm_test/x86/avx10/avx101_64.result b/bddisasm_test/x86/avx10/avx101_64.result index 73a39a3..01ff850 100644 --- a/bddisasm_test/x86/avx10/avx101_64.result +++ b/bddisasm_test/x86/avx10/avx101_64.result @@ -4,6 +4,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23,6 +24,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes diff --git a/bddisasm_test/x86/avx10/avx102_64.result b/bddisasm_test/x86/avx10/avx102_64.result index 781ad9b..7d2c48e 100644 --- a/bddisasm_test/x86/avx10/avx102_64.result +++ b/bddisasm_test/x86/avx10/avx102_64.result @@ -685,11 +685,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000000D2 62f9fe082f1e VCOMXSD xmm3, qword ptr [r22] +00000000000000D2 62f9ff082f1e VCOMXSD xmm3, qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes @@ -706,11 +707,56 @@ Segment: 3, Base: 22, Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000000D8 62f9fe082fde VCOMXSD xmm3, xmm6 +00000000000000D8 62f9ff282f1e VCOMXSD xmm3, qword ptr [r22] + DSIZE: 64, ASIZE: 64, VLEN: 256 + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, + Segment: 3, Base: 22, + Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 + +00000000000000DE 62f9ff482f1e VCOMXSD xmm3, qword ptr [r22] + DSIZE: 64, ASIZE: 64, VLEN: 512 + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, + Segment: 3, Base: 22, + Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 + +00000000000000E4 62f9ff082fde VCOMXSD xmm3, xmm6 DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes @@ -726,11 +772,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000000DE 62f9fe182fde VCOMXSD xmm3, xmm6, {sae} - DSIZE: 64, ASIZE: 64, VLEN: 128 +00000000000000EA 62f9ff282fde VCOMXSD xmm3, xmm6 + DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes @@ -746,11 +793,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000000E4 62f9fa182fde VCOMXSD xmm3, xmm6, {sae} - DSIZE: 64, ASIZE: 64, VLEN: 128 +00000000000000F0 62f9ff482fde VCOMXSD xmm3, xmm6 + DSIZE: 64, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes @@ -766,11 +814,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000000EA 62fd7f082f1e VCOMXSH xmm3, word ptr [r22] - DSIZE: 32, ASIZE: 64, VLEN: 128 +00000000000000F6 62f9ff182fde VCOMXSD xmm3, xmm6, {sae} + DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no - EVEX Tuple Type: Tuple 1 scalar, 16 bit + EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes @@ -783,15 +832,15 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, - Segment: 3, Base: 22, - Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000000F0 62fd7f082fde VCOMXSH xmm3, xmm6 - DSIZE: 32, ASIZE: 64, VLEN: 128 +00000000000000FC 62f9ff382fde VCOMXSD xmm3, xmm6, {sae} + DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no - EVEX Tuple Type: Tuple 1 scalar, 16 bit + EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes @@ -804,14 +853,15 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 - Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000000F6 62fd7f182fde VCOMXSH xmm3, xmm6, {sae} - DSIZE: 32, ASIZE: 64, VLEN: 128 +0000000000000102 62f9ff582fde VCOMXSD xmm3, xmm6, {sae} + DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no - EVEX Tuple Type: Tuple 1 scalar, 16 bit + EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes @@ -824,14 +874,15 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 - Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000000FC 62fd7b182fde VCOMXSH xmm3, xmm6, {sae} - DSIZE: 32, ASIZE: 64, VLEN: 128 +0000000000000108 62f9ff782fde VCOMXSD xmm3, xmm6, {sae} + DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no - EVEX Tuple Type: Tuple 1 scalar, 16 bit + EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes @@ -844,14 +895,15 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 - Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000000102 62f97f082f1e VCOMXSS xmm3, dword ptr [r22] - DSIZE: 32, ASIZE: 64, VLEN: 128 +000000000000010E 62f9fb182fde VCOMXSD xmm3, xmm6, {sae} + DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes @@ -864,15 +916,15 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, - Segment: 3, Base: 22, - Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000000108 62f97f082fde VCOMXSS xmm3, xmm6 - DSIZE: 32, ASIZE: 64, VLEN: 128 +0000000000000114 62f9fb382fde VCOMXSD xmm3, xmm6, {sae} + DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes @@ -885,14 +937,15 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 - Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000010E 62f97f182fde VCOMXSS xmm3, xmm6, {sae} - DSIZE: 32, ASIZE: 64, VLEN: 128 +000000000000011A 62f9fb582fde VCOMXSD xmm3, xmm6, {sae} + DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes @@ -905,14 +958,15 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 - Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000000114 62f97b182fde VCOMXSS xmm3, xmm6, {sae} - DSIZE: 32, ASIZE: 64, VLEN: 128 +0000000000000120 62f9fb782fde VCOMXSD xmm3, xmm6, {sae} + DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes @@ -925,14 +979,17 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 - Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000011A 62fa7d08671e VCVT2PS2PHX xmm3, xmm0, xmmword ptr [r22] +0000000000000126 62fd7e082f1e VCOMXSH xmm3, word ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E4NF + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 scalar, 16 bit + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -942,17 +999,19 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Segment: 3, Base: 22, + Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000000120 62fa7d28671e VCVT2PS2PHX ymm3, ymm0, ymmword ptr [r22] +000000000000012C 62fd7e282f1e VCOMXSH xmm3, word ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 - ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E4NF + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 scalar, 16 bit + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -962,17 +1021,19 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Segment: 3, Base: 22, + Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000000126 62fa7d48671e VCVT2PS2PHX zmm3, zmm0, zmmword ptr [r22] +0000000000000132 62fd7e482f1e VCOMXSH xmm3, word ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 - ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E4NF + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 scalar, 16 bit + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -982,17 +1043,19 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Segment: 3, Base: 22, + Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000012C 62fa7d0867de VCVT2PS2PHX xmm3, xmm0, xmm6 +0000000000000138 62fd7e082fde VCOMXSH xmm3, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E4NF + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 scalar, 16 bit + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1002,16 +1065,18 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000000132 62fa7d2867de VCVT2PS2PHX ymm3, ymm0, ymm6 +000000000000013E 62fd7e282fde VCOMXSH xmm3, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 256 - ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E4NF + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 scalar, 16 bit + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1021,16 +1086,18 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000000138 62fa7d4867de VCVT2PS2PHX zmm3, zmm0, zmm6 +0000000000000144 62fd7e482fde VCOMXSH xmm3, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 - ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E4NF + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 scalar, 16 bit + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1040,16 +1107,18 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000013E 62fa7d18671e VCVT2PS2PHX xmm3, xmm0, dword ptr [r22]{1to4} +000000000000014A 62fd7e182fde VCOMXSH xmm3, xmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E4NF + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 scalar, 16 bit + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1059,18 +1128,18 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Broadcast: yes, - Segment: 3, Base: 22, - Decorator: Broadcast 4 bytes element 4 times + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000000144 62fa7d38671e VCVT2PS2PHX ymm3, ymm0, dword ptr [r22]{1to8} - DSIZE: 32, ASIZE: 64, VLEN: 256 - ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E4NF +0000000000000150 62fd7e382fde VCOMXSH xmm3, xmm6, {sae} + DSIZE: 32, ASIZE: 64, VLEN: 128 + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 scalar, 16 bit + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1080,18 +1149,18 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Broadcast: yes, - Segment: 3, Base: 22, - Decorator: Broadcast 4 bytes element 8 times + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000014A 62fa7d58671e VCVT2PS2PHX zmm3, zmm0, dword ptr [r22]{1to16} - DSIZE: 32, ASIZE: 64, VLEN: 512 - ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E4NF +0000000000000156 62fd7e582fde VCOMXSH xmm3, xmm6, {sae} + DSIZE: 32, ASIZE: 64, VLEN: 128 + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 scalar, 16 bit + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1101,18 +1170,18 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Broadcast: yes, - Segment: 3, Base: 22, - Decorator: Broadcast 4 bytes element 16 times + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000000150 62fa7d0f671e VCVT2PS2PHX xmm3{k7}, xmm0, xmmword ptr [r22] +000000000000015C 62fd7e782fde VCOMXSH xmm3, xmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E4NF + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 scalar, 16 bit + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1122,18 +1191,608 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 + +0000000000000162 62fd7a182fde VCOMXSH xmm3, xmm6, {sae} + DSIZE: 32, ASIZE: 64, VLEN: 128 + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 scalar, 16 bit + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 + +0000000000000168 62fd7a382fde VCOMXSH xmm3, xmm6, {sae} + DSIZE: 32, ASIZE: 64, VLEN: 128 + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 scalar, 16 bit + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 + +000000000000016E 62fd7a582fde VCOMXSH xmm3, xmm6, {sae} + DSIZE: 32, ASIZE: 64, VLEN: 128 + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 scalar, 16 bit + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 + +0000000000000174 62fd7a782fde VCOMXSH xmm3, xmm6, {sae} + DSIZE: 32, ASIZE: 64, VLEN: 128 + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 scalar, 16 bit + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 + +000000000000017A 62f97e082f1e VCOMXSS xmm3, dword ptr [r22] + DSIZE: 32, ASIZE: 64, VLEN: 128 + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, + Segment: 3, Base: 22, + Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 + +0000000000000180 62f97e282f1e VCOMXSS xmm3, dword ptr [r22] + DSIZE: 32, ASIZE: 64, VLEN: 256 + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, + Segment: 3, Base: 22, + Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 + +0000000000000186 62f97e482f1e VCOMXSS xmm3, dword ptr [r22] + DSIZE: 32, ASIZE: 64, VLEN: 512 + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, + Segment: 3, Base: 22, + Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 + +000000000000018C 62f97e082fde VCOMXSS xmm3, xmm6 + DSIZE: 32, ASIZE: 64, VLEN: 128 + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 + +0000000000000192 62f97e282fde VCOMXSS xmm3, xmm6 + DSIZE: 32, ASIZE: 64, VLEN: 256 + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 + +0000000000000198 62f97e482fde VCOMXSS xmm3, xmm6 + DSIZE: 32, ASIZE: 64, VLEN: 512 + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 + +000000000000019E 62f97e182fde VCOMXSS xmm3, xmm6, {sae} + DSIZE: 32, ASIZE: 64, VLEN: 128 + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 + +00000000000001A4 62f97e382fde VCOMXSS xmm3, xmm6, {sae} + DSIZE: 32, ASIZE: 64, VLEN: 128 + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 + +00000000000001AA 62f97e582fde VCOMXSS xmm3, xmm6, {sae} + DSIZE: 32, ASIZE: 64, VLEN: 128 + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 + +00000000000001B0 62f97e782fde VCOMXSS xmm3, xmm6, {sae} + DSIZE: 32, ASIZE: 64, VLEN: 128 + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 + +00000000000001B6 62f97a182fde VCOMXSS xmm3, xmm6, {sae} + DSIZE: 32, ASIZE: 64, VLEN: 128 + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 + +00000000000001BC 62f97a382fde VCOMXSS xmm3, xmm6, {sae} + DSIZE: 32, ASIZE: 64, VLEN: 128 + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 + +00000000000001C2 62f97a582fde VCOMXSS xmm3, xmm6, {sae} + DSIZE: 32, ASIZE: 64, VLEN: 128 + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 + +00000000000001C8 62f97a782fde VCOMXSS xmm3, xmm6, {sae} + DSIZE: 32, ASIZE: 64, VLEN: 128 + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 + +00000000000001CE 62fa7d08671e VCVT2PS2PHX xmm3, xmm0, xmmword ptr [r22] + DSIZE: 32, ASIZE: 64, VLEN: 128 + ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, + Segment: 3, Base: 22, + +00000000000001D4 62fa7d28671e VCVT2PS2PHX ymm3, ymm0, ymmword ptr [r22] + DSIZE: 32, ASIZE: 64, VLEN: 256 + ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, + Segment: 3, Base: 22, + +00000000000001DA 62fa7d48671e VCVT2PS2PHX zmm3, zmm0, zmmword ptr [r22] + DSIZE: 32, ASIZE: 64, VLEN: 512 + ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, + Segment: 3, Base: 22, + +00000000000001E0 62fa7d0867de VCVT2PS2PHX xmm3, xmm0, xmm6 + DSIZE: 32, ASIZE: 64, VLEN: 128 + ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + +00000000000001E6 62fa7d2867de VCVT2PS2PHX ymm3, ymm0, ymm6 + DSIZE: 32, ASIZE: 64, VLEN: 256 + ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 + +00000000000001EC 62fa7d4867de VCVT2PS2PHX zmm3, zmm0, zmm6 + DSIZE: 32, ASIZE: 64, VLEN: 512 + ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 + +00000000000001F2 62fa7d18671e VCVT2PS2PHX xmm3, xmm0, dword ptr [r22]{1to4} + DSIZE: 32, ASIZE: 64, VLEN: 128 + ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Broadcast: yes, + Segment: 3, Base: 22, + Decorator: Broadcast 4 bytes element 4 times + +00000000000001F8 62fa7d38671e VCVT2PS2PHX ymm3, ymm0, dword ptr [r22]{1to8} + DSIZE: 32, ASIZE: 64, VLEN: 256 + ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Broadcast: yes, + Segment: 3, Base: 22, + Decorator: Broadcast 4 bytes element 8 times + +00000000000001FE 62fa7d58671e VCVT2PS2PHX zmm3, zmm0, dword ptr [r22]{1to16} + DSIZE: 32, ASIZE: 64, VLEN: 512 + ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Broadcast: yes, + Segment: 3, Base: 22, + Decorator: Broadcast 4 bytes element 16 times + +0000000000000204 62fa7d0f671e VCVT2PS2PHX xmm3{k7}, xmm0, xmmword ptr [r22] + DSIZE: 32, ASIZE: 64, VLEN: 128 + ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Decorator: Mask k7 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000156 62fa7d2f671e VCVT2PS2PHX ymm3{k7}, ymm0, ymmword ptr [r22] +000000000000020A 62fa7d2f671e VCVT2PS2PHX ymm3{k7}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1150,11 +1809,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -000000000000015C 62fa7d4f671e VCVT2PS2PHX zmm3{k7}, zmm0, zmmword ptr [r22] +0000000000000210 62fa7d4f671e VCVT2PS2PHX zmm3{k7}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1171,11 +1831,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000000162 62fa7d8f671e VCVT2PS2PHX xmm3{k7}{z}, xmm0, xmmword ptr [r22] +0000000000000216 62fa7d8f671e VCVT2PS2PHX xmm3{k7}{z}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1193,11 +1854,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000168 62fa7daf671e VCVT2PS2PHX ymm3{k7}{z}, ymm0, ymmword ptr [r22] +000000000000021C 62fa7daf671e VCVT2PS2PHX ymm3{k7}{z}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1215,11 +1877,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -000000000000016E 62fa7dcf671e VCVT2PS2PHX zmm3{k7}{z}, zmm0, zmmword ptr [r22] +0000000000000222 62fa7dcf671e VCVT2PS2PHX zmm3{k7}{z}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1237,11 +1900,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000000174 62fa7d1867de VCVT2PS2PHX zmm3, zmm0, zmm6, {rn-sae} +0000000000000228 62fa7d1867de VCVT2PS2PHX zmm3, zmm0, zmm6, {rn-sae} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1256,11 +1920,12 @@ Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -000000000000017A 62fa7d3867de VCVT2PS2PHX zmm3, zmm0, zmm6, {rd-sae} +000000000000022E 62fa7d3867de VCVT2PS2PHX zmm3, zmm0, zmm6, {rd-sae} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1275,11 +1940,12 @@ Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000180 62fa7d5867de VCVT2PS2PHX zmm3, zmm0, zmm6, {ru-sae} +0000000000000234 62fa7d5867de VCVT2PS2PHX zmm3, zmm0, zmm6, {ru-sae} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1294,11 +1960,12 @@ Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000186 62fa7d7867de VCVT2PS2PHX zmm3, zmm0, zmm6, {rz-sae} +000000000000023A 62fa7d7867de VCVT2PS2PHX zmm3, zmm0, zmm6, {rz-sae} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1313,11 +1980,12 @@ Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -000000000000018C 62fa791867de VCVT2PS2PHX ymm3, ymm0, ymm6, {rn-sae} +0000000000000240 62fa791867de VCVT2PS2PHX ymm3, ymm0, ymm6, {rn-sae} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1332,11 +2000,12 @@ Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000192 62fa793867de VCVT2PS2PHX ymm3, ymm0, ymm6, {rd-sae} +0000000000000246 62fa793867de VCVT2PS2PHX ymm3, ymm0, ymm6, {rd-sae} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1351,11 +2020,12 @@ Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000198 62fa795867de VCVT2PS2PHX ymm3, ymm0, ymm6, {ru-sae} +000000000000024C 62fa795867de VCVT2PS2PHX ymm3, ymm0, ymm6, {ru-sae} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1370,11 +2040,12 @@ Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -000000000000019E 62fa797867de VCVT2PS2PHX ymm3, ymm0, ymm6, {rz-sae} +0000000000000252 62fa797867de VCVT2PS2PHX ymm3, ymm0, ymm6, {rz-sae} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1389,7 +2060,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -00000000000001A4 62fa7c08741e VCVTBIASPH2BF8 xmm3, xmm0, xmmword ptr [r22] +0000000000000258 62fa7c08741e VCVTBIASPH2BF8 xmm3, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full @@ -1409,7 +2080,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -00000000000001AA 62fa7c28741e VCVTBIASPH2BF8 xmm3, ymm0, ymmword ptr [r22] +000000000000025E 62fa7c28741e VCVTBIASPH2BF8 xmm3, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full @@ -1429,7 +2100,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -00000000000001B0 62fa7c48741e VCVTBIASPH2BF8 ymm3, zmm0, zmmword ptr [r22] +0000000000000264 62fa7c48741e VCVTBIASPH2BF8 ymm3, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full @@ -1449,7 +2120,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -00000000000001B6 62fa7c0874de VCVTBIASPH2BF8 xmm3, xmm0, xmm6 +000000000000026A 62fa7c0874de VCVTBIASPH2BF8 xmm3, xmm0, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full @@ -1468,7 +2139,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -00000000000001BC 62fa7c2874de VCVTBIASPH2BF8 xmm3, ymm0, ymm6 +0000000000000270 62fa7c2874de VCVTBIASPH2BF8 xmm3, ymm0, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full @@ -1487,7 +2158,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -00000000000001C2 62fa7c4874de VCVTBIASPH2BF8 ymm3, zmm0, zmm6 +0000000000000276 62fa7c4874de VCVTBIASPH2BF8 ymm3, zmm0, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full @@ -1506,7 +2177,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -00000000000001C8 62fa7c18741e VCVTBIASPH2BF8 xmm3, xmm0, word ptr [r22]{1to8} +000000000000027C 62fa7c18741e VCVTBIASPH2BF8 xmm3, xmm0, word ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full @@ -1527,7 +2198,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 8 times -00000000000001CE 62fa7c38741e VCVTBIASPH2BF8 xmm3, ymm0, word ptr [r22]{1to16} +0000000000000282 62fa7c38741e VCVTBIASPH2BF8 xmm3, ymm0, word ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full @@ -1548,7 +2219,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 16 times -00000000000001D4 62fa7c58741e VCVTBIASPH2BF8 ymm3, zmm0, word ptr [r22]{1to32} +0000000000000288 62fa7c58741e VCVTBIASPH2BF8 ymm3, zmm0, word ptr [r22]{1to32} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full @@ -1569,7 +2240,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 32 times -00000000000001DA 62fa7c0f741e VCVTBIASPH2BF8 xmm3{k7}, xmm0, xmmword ptr [r22] +000000000000028E 62fa7c0f741e VCVTBIASPH2BF8 xmm3{k7}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full @@ -1590,7 +2261,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -00000000000001E0 62fa7c2f741e VCVTBIASPH2BF8 xmm3{k7}, ymm0, ymmword ptr [r22] +0000000000000294 62fa7c2f741e VCVTBIASPH2BF8 xmm3{k7}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full @@ -1611,7 +2282,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -00000000000001E6 62fa7c4f741e VCVTBIASPH2BF8 ymm3{k7}, zmm0, zmmword ptr [r22] +000000000000029A 62fa7c4f741e VCVTBIASPH2BF8 ymm3{k7}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full @@ -1632,7 +2303,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -00000000000001EC 62fa7c8f741e VCVTBIASPH2BF8 xmm3{k7}{z}, xmm0, xmmword ptr [r22] +00000000000002A0 62fa7c8f741e VCVTBIASPH2BF8 xmm3{k7}{z}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full @@ -1654,7 +2325,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -00000000000001F2 62fa7caf741e VCVTBIASPH2BF8 xmm3{k7}{z}, ymm0, ymmword ptr [r22] +00000000000002A6 62fa7caf741e VCVTBIASPH2BF8 xmm3{k7}{z}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full @@ -1676,7 +2347,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -00000000000001F8 62fa7ccf741e VCVTBIASPH2BF8 ymm3{k7}{z}, zmm0, zmmword ptr [r22] +00000000000002AC 62fa7ccf741e VCVTBIASPH2BF8 ymm3{k7}{z}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full @@ -1698,11 +2369,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -00000000000001FE 62fd7c08741e VCVTBIASPH2BF8S xmm3, xmm0, xmmword ptr [r22] +00000000000002B2 62fd7c08741e VCVTBIASPH2BF8S xmm3, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1718,11 +2390,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000204 62fd7c28741e VCVTBIASPH2BF8S xmm3, ymm0, ymmword ptr [r22] +00000000000002B8 62fd7c28741e VCVTBIASPH2BF8S xmm3, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1738,11 +2411,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -000000000000020A 62fd7c48741e VCVTBIASPH2BF8S ymm3, zmm0, zmmword ptr [r22] +00000000000002BE 62fd7c48741e VCVTBIASPH2BF8S ymm3, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1758,11 +2432,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000000210 62fd7c0874de VCVTBIASPH2BF8S xmm3, xmm0, xmm6 +00000000000002C4 62fd7c0874de VCVTBIASPH2BF8S xmm3, xmm0, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1777,11 +2452,12 @@ Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000000216 62fd7c2874de VCVTBIASPH2BF8S xmm3, ymm0, ymm6 +00000000000002CA 62fd7c2874de VCVTBIASPH2BF8S xmm3, ymm0, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1796,11 +2472,12 @@ Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -000000000000021C 62fd7c4874de VCVTBIASPH2BF8S ymm3, zmm0, zmm6 +00000000000002D0 62fd7c4874de VCVTBIASPH2BF8S ymm3, zmm0, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1815,11 +2492,12 @@ Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000222 62fd7c18741e VCVTBIASPH2BF8S xmm3, xmm0, word ptr [r22]{1to8} +00000000000002D6 62fd7c18741e VCVTBIASPH2BF8S xmm3, xmm0, word ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1836,11 +2514,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 8 times -0000000000000228 62fd7c38741e VCVTBIASPH2BF8S xmm3, ymm0, word ptr [r22]{1to16} +00000000000002DC 62fd7c38741e VCVTBIASPH2BF8S xmm3, ymm0, word ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1857,11 +2536,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 16 times -000000000000022E 62fd7c58741e VCVTBIASPH2BF8S ymm3, zmm0, word ptr [r22]{1to32} +00000000000002E2 62fd7c58741e VCVTBIASPH2BF8S ymm3, zmm0, word ptr [r22]{1to32} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1878,11 +2558,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 32 times -0000000000000234 62fd7c0f741e VCVTBIASPH2BF8S xmm3{k7}, xmm0, xmmword ptr [r22] +00000000000002E8 62fd7c0f741e VCVTBIASPH2BF8S xmm3{k7}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1899,11 +2580,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -000000000000023A 62fd7c2f741e VCVTBIASPH2BF8S xmm3{k7}, ymm0, ymmword ptr [r22] +00000000000002EE 62fd7c2f741e VCVTBIASPH2BF8S xmm3{k7}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1920,11 +2602,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000000240 62fd7c4f741e VCVTBIASPH2BF8S ymm3{k7}, zmm0, zmmword ptr [r22] +00000000000002F4 62fd7c4f741e VCVTBIASPH2BF8S ymm3{k7}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1941,11 +2624,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000000246 62fd7c8f741e VCVTBIASPH2BF8S xmm3{k7}{z}, xmm0, xmmword ptr [r22] +00000000000002FA 62fd7c8f741e VCVTBIASPH2BF8S xmm3{k7}{z}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1963,11 +2647,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -000000000000024C 62fd7caf741e VCVTBIASPH2BF8S xmm3{k7}{z}, ymm0, ymmword ptr [r22] +0000000000000300 62fd7caf741e VCVTBIASPH2BF8S xmm3{k7}{z}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1985,11 +2670,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000000252 62fd7ccf741e VCVTBIASPH2BF8S ymm3{k7}{z}, zmm0, zmmword ptr [r22] +0000000000000306 62fd7ccf741e VCVTBIASPH2BF8S ymm3{k7}{z}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2007,11 +2693,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000000258 62fd7c08181e VCVTBIASPH2HF8 xmm3, xmm0, xmmword ptr [r22] +000000000000030C 62fd7c08181e VCVTBIASPH2HF8 xmm3, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2027,11 +2714,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -000000000000025E 62fd7c28181e VCVTBIASPH2HF8 xmm3, ymm0, ymmword ptr [r22] +0000000000000312 62fd7c28181e VCVTBIASPH2HF8 xmm3, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2047,11 +2735,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000000264 62fd7c48181e VCVTBIASPH2HF8 ymm3, zmm0, zmmword ptr [r22] +0000000000000318 62fd7c48181e VCVTBIASPH2HF8 ymm3, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2067,11 +2756,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -000000000000026A 62fd7c0818de VCVTBIASPH2HF8 xmm3, xmm0, xmm6 +000000000000031E 62fd7c0818de VCVTBIASPH2HF8 xmm3, xmm0, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2086,11 +2776,12 @@ Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000000270 62fd7c2818de VCVTBIASPH2HF8 xmm3, ymm0, ymm6 +0000000000000324 62fd7c2818de VCVTBIASPH2HF8 xmm3, ymm0, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2105,11 +2796,12 @@ Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000276 62fd7c4818de VCVTBIASPH2HF8 ymm3, zmm0, zmm6 +000000000000032A 62fd7c4818de VCVTBIASPH2HF8 ymm3, zmm0, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2124,11 +2816,12 @@ Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -000000000000027C 62fd7c18181e VCVTBIASPH2HF8 xmm3, xmm0, word ptr [r22]{1to8} +0000000000000330 62fd7c18181e VCVTBIASPH2HF8 xmm3, xmm0, word ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2145,11 +2838,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 8 times -0000000000000282 62fd7c38181e VCVTBIASPH2HF8 xmm3, ymm0, word ptr [r22]{1to16} +0000000000000336 62fd7c38181e VCVTBIASPH2HF8 xmm3, ymm0, word ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2166,11 +2860,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 16 times -0000000000000288 62fd7c58181e VCVTBIASPH2HF8 ymm3, zmm0, word ptr [r22]{1to32} +000000000000033C 62fd7c58181e VCVTBIASPH2HF8 ymm3, zmm0, word ptr [r22]{1to32} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2187,11 +2882,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 32 times -000000000000028E 62fd7c0f181e VCVTBIASPH2HF8 xmm3{k7}, xmm0, xmmword ptr [r22] +0000000000000342 62fd7c0f181e VCVTBIASPH2HF8 xmm3{k7}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2208,11 +2904,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000294 62fd7c2f181e VCVTBIASPH2HF8 xmm3{k7}, ymm0, ymmword ptr [r22] +0000000000000348 62fd7c2f181e VCVTBIASPH2HF8 xmm3{k7}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2229,11 +2926,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -000000000000029A 62fd7c4f181e VCVTBIASPH2HF8 ymm3{k7}, zmm0, zmmword ptr [r22] +000000000000034E 62fd7c4f181e VCVTBIASPH2HF8 ymm3{k7}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2250,11 +2948,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -00000000000002A0 62fd7c8f181e VCVTBIASPH2HF8 xmm3{k7}{z}, xmm0, xmmword ptr [r22] +0000000000000354 62fd7c8f181e VCVTBIASPH2HF8 xmm3{k7}{z}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2272,11 +2971,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -00000000000002A6 62fd7caf181e VCVTBIASPH2HF8 xmm3{k7}{z}, ymm0, ymmword ptr [r22] +000000000000035A 62fd7caf181e VCVTBIASPH2HF8 xmm3{k7}{z}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2294,11 +2994,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -00000000000002AC 62fd7ccf181e VCVTBIASPH2HF8 ymm3{k7}{z}, zmm0, zmmword ptr [r22] +0000000000000360 62fd7ccf181e VCVTBIASPH2HF8 ymm3{k7}{z}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2316,11 +3017,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -00000000000002B2 62fd7c081b1e VCVTBIASPH2HF8S xmm3, xmm0, xmmword ptr [r22] +0000000000000366 62fd7c081b1e VCVTBIASPH2HF8S xmm3, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2336,11 +3038,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -00000000000002B8 62fd7c281b1e VCVTBIASPH2HF8S xmm3, ymm0, ymmword ptr [r22] +000000000000036C 62fd7c281b1e VCVTBIASPH2HF8S xmm3, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2356,11 +3059,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -00000000000002BE 62fd7c481b1e VCVTBIASPH2HF8S ymm3, zmm0, zmmword ptr [r22] +0000000000000372 62fd7c481b1e VCVTBIASPH2HF8S ymm3, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2376,11 +3080,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -00000000000002C4 62fd7c081bde VCVTBIASPH2HF8S xmm3, xmm0, xmm6 +0000000000000378 62fd7c081bde VCVTBIASPH2HF8S xmm3, xmm0, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2395,11 +3100,12 @@ Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -00000000000002CA 62fd7c281bde VCVTBIASPH2HF8S xmm3, ymm0, ymm6 +000000000000037E 62fd7c281bde VCVTBIASPH2HF8S xmm3, ymm0, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2414,11 +3120,12 @@ Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -00000000000002D0 62fd7c481bde VCVTBIASPH2HF8S ymm3, zmm0, zmm6 +0000000000000384 62fd7c481bde VCVTBIASPH2HF8S ymm3, zmm0, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2433,11 +3140,12 @@ Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -00000000000002D6 62fd7c181b1e VCVTBIASPH2HF8S xmm3, xmm0, word ptr [r22]{1to8} +000000000000038A 62fd7c181b1e VCVTBIASPH2HF8S xmm3, xmm0, word ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2454,11 +3162,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 8 times -00000000000002DC 62fd7c381b1e VCVTBIASPH2HF8S xmm3, ymm0, word ptr [r22]{1to16} +0000000000000390 62fd7c381b1e VCVTBIASPH2HF8S xmm3, ymm0, word ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2475,11 +3184,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 16 times -00000000000002E2 62fd7c581b1e VCVTBIASPH2HF8S ymm3, zmm0, word ptr [r22]{1to32} +0000000000000396 62fd7c581b1e VCVTBIASPH2HF8S ymm3, zmm0, word ptr [r22]{1to32} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2496,11 +3206,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 32 times -00000000000002E8 62fd7c0f1b1e VCVTBIASPH2HF8S xmm3{k7}, xmm0, xmmword ptr [r22] +000000000000039C 62fd7c0f1b1e VCVTBIASPH2HF8S xmm3{k7}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2517,11 +3228,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -00000000000002EE 62fd7c2f1b1e VCVTBIASPH2HF8S xmm3{k7}, ymm0, ymmword ptr [r22] +00000000000003A2 62fd7c2f1b1e VCVTBIASPH2HF8S xmm3{k7}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2538,11 +3250,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -00000000000002F4 62fd7c4f1b1e VCVTBIASPH2HF8S ymm3{k7}, zmm0, zmmword ptr [r22] +00000000000003A8 62fd7c4f1b1e VCVTBIASPH2HF8S ymm3{k7}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2559,11 +3272,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -00000000000002FA 62fd7c8f1b1e VCVTBIASPH2HF8S xmm3{k7}{z}, xmm0, xmmword ptr [r22] +00000000000003AE 62fd7c8f1b1e VCVTBIASPH2HF8S xmm3{k7}{z}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2581,11 +3295,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000300 62fd7caf1b1e VCVTBIASPH2HF8S xmm3{k7}{z}, ymm0, ymmword ptr [r22] +00000000000003B4 62fd7caf1b1e VCVTBIASPH2HF8S xmm3{k7}{z}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2603,11 +3318,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000000306 62fd7ccf1b1e VCVTBIASPH2HF8S ymm3{k7}{z}, zmm0, zmmword ptr [r22] +00000000000003BA 62fd7ccf1b1e VCVTBIASPH2HF8S ymm3{k7}{z}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2625,11 +3341,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -000000000000030C 62fd7f081e1e VCVTHF82PH xmm3, qword ptr [r22] +00000000000003C0 62fd7f081e1e VCVTHF82PH xmm3, qword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: D Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2644,11 +3361,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -0000000000000312 62fd7f281e1e VCVTHF82PH ymm3, xmmword ptr [r22] +00000000000003C6 62fd7f281e1e VCVTHF82PH ymm3, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: D Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2663,11 +3381,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000318 62fd7f481e1e VCVTHF82PH zmm3, ymmword ptr [r22] +00000000000003CC 62fd7f481e1e VCVTHF82PH zmm3, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: D Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2682,11 +3401,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -000000000000031E 62fd7f081ede VCVTHF82PH xmm3, xmm6 +00000000000003D2 62fd7f081ede VCVTHF82PH xmm3, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: D Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2700,11 +3420,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000000324 62fd7f281ede VCVTHF82PH ymm3, xmm6 +00000000000003D8 62fd7f281ede VCVTHF82PH ymm3, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: D Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2718,11 +3439,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -000000000000032A 62fd7f481ede VCVTHF82PH zmm3, ymm6 +00000000000003DE 62fd7f481ede VCVTHF82PH zmm3, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: D Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2736,11 +3458,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000330 62fd7f0f1e1e VCVTHF82PH xmm3{k7}, qword ptr [r22] +00000000000003E4 62fd7f0f1e1e VCVTHF82PH xmm3{k7}, qword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: D Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2756,11 +3479,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -0000000000000336 62fd7f2f1e1e VCVTHF82PH ymm3{k7}, xmmword ptr [r22] +00000000000003EA 62fd7f2f1e1e VCVTHF82PH ymm3{k7}, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: D Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2776,11 +3500,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -000000000000033C 62fd7f4f1e1e VCVTHF82PH zmm3{k7}, ymmword ptr [r22] +00000000000003F0 62fd7f4f1e1e VCVTHF82PH zmm3{k7}, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: D Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2796,11 +3521,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000000342 62fd7f8f1e1e VCVTHF82PH xmm3{k7}{z}, qword ptr [r22] +00000000000003F6 62fd7f8f1e1e VCVTHF82PH xmm3{k7}{z}, qword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: D Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2817,11 +3543,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -0000000000000348 62fd7faf1e1e VCVTHF82PH ymm3{k7}{z}, xmmword ptr [r22] +00000000000003FC 62fd7faf1e1e VCVTHF82PH ymm3{k7}{z}, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: D Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2838,11 +3565,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -000000000000034E 62fd7fcf1e1e VCVTHF82PH zmm3{k7}{z}, ymmword ptr [r22] +0000000000000402 62fd7fcf1e1e VCVTHF82PH zmm3{k7}{z}, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: D Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2859,11 +3587,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000000354 62f97f08741e VCVTNE2PH2BF8 xmm3, xmm0, xmmword ptr [r22] +0000000000000408 62fa7f08741e VCVTNE2PH2BF8 xmm3, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2879,11 +3608,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -000000000000035A 62f97f28741e VCVTNE2PH2BF8 ymm3, ymm0, ymmword ptr [r22] +000000000000040E 62fa7f28741e VCVTNE2PH2BF8 ymm3, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2899,11 +3629,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000000360 62f97f48741e VCVTNE2PH2BF8 zmm3, zmm0, zmmword ptr [r22] +0000000000000414 62fa7f48741e VCVTNE2PH2BF8 zmm3, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2919,11 +3650,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000000366 62f97f0874de VCVTNE2PH2BF8 xmm3, xmm0, xmm6 +000000000000041A 62fa7f0874de VCVTNE2PH2BF8 xmm3, xmm0, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2938,11 +3670,12 @@ Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -000000000000036C 62f97f2874de VCVTNE2PH2BF8 ymm3, ymm0, ymm6 +0000000000000420 62fa7f2874de VCVTNE2PH2BF8 ymm3, ymm0, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2957,11 +3690,12 @@ Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000372 62f97f4874de VCVTNE2PH2BF8 zmm3, zmm0, zmm6 +0000000000000426 62fa7f4874de VCVTNE2PH2BF8 zmm3, zmm0, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2976,11 +3710,12 @@ Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000378 62f97f18741e VCVTNE2PH2BF8 xmm3, xmm0, word ptr [r22]{1to8} +000000000000042C 62fa7f18741e VCVTNE2PH2BF8 xmm3, xmm0, word ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2997,11 +3732,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 8 times -000000000000037E 62f97f38741e VCVTNE2PH2BF8 ymm3, ymm0, word ptr [r22]{1to16} +0000000000000432 62fa7f38741e VCVTNE2PH2BF8 ymm3, ymm0, word ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3018,11 +3754,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 16 times -0000000000000384 62f97f58741e VCVTNE2PH2BF8 zmm3, zmm0, word ptr [r22]{1to32} +0000000000000438 62fa7f58741e VCVTNE2PH2BF8 zmm3, zmm0, word ptr [r22]{1to32} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3039,11 +3776,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 32 times -000000000000038A 62f97f0f741e VCVTNE2PH2BF8 xmm3{k7}, xmm0, xmmword ptr [r22] +000000000000043E 62fa7f0f741e VCVTNE2PH2BF8 xmm3{k7}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3060,11 +3798,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000390 62f97f2f741e VCVTNE2PH2BF8 ymm3{k7}, ymm0, ymmword ptr [r22] +0000000000000444 62fa7f2f741e VCVTNE2PH2BF8 ymm3{k7}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3081,11 +3820,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000000396 62f97f4f741e VCVTNE2PH2BF8 zmm3{k7}, zmm0, zmmword ptr [r22] +000000000000044A 62fa7f4f741e VCVTNE2PH2BF8 zmm3{k7}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3102,11 +3842,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -000000000000039C 62f97f8f741e VCVTNE2PH2BF8 xmm3{k7}{z}, xmm0, xmmword ptr [r22] +0000000000000450 62fa7f8f741e VCVTNE2PH2BF8 xmm3{k7}{z}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3124,11 +3865,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -00000000000003A2 62f97faf741e VCVTNE2PH2BF8 ymm3{k7}{z}, ymm0, ymmword ptr [r22] +0000000000000456 62fa7faf741e VCVTNE2PH2BF8 ymm3{k7}{z}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3146,11 +3888,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -00000000000003A8 62f97fcf741e VCVTNE2PH2BF8 zmm3{k7}{z}, zmm0, zmmword ptr [r22] +000000000000045C 62fa7fcf741e VCVTNE2PH2BF8 zmm3{k7}{z}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3168,11 +3911,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -00000000000003AE 62fd7f08741e VCVTNE2PH2BF8S xmm3, xmm0, xmmword ptr [r22] +0000000000000462 62fd7f08741e VCVTNE2PH2BF8S xmm3, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3188,11 +3932,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -00000000000003B4 62fd7f28741e VCVTNE2PH2BF8S ymm3, ymm0, ymmword ptr [r22] +0000000000000468 62fd7f28741e VCVTNE2PH2BF8S ymm3, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3208,11 +3953,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -00000000000003BA 62fd7f48741e VCVTNE2PH2BF8S zmm3, zmm0, zmmword ptr [r22] +000000000000046E 62fd7f48741e VCVTNE2PH2BF8S zmm3, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3228,11 +3974,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -00000000000003C0 62fd7f0874de VCVTNE2PH2BF8S xmm3, xmm0, xmm6 +0000000000000474 62fd7f0874de VCVTNE2PH2BF8S xmm3, xmm0, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3247,11 +3994,12 @@ Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -00000000000003C6 62fd7f2874de VCVTNE2PH2BF8S ymm3, ymm0, ymm6 +000000000000047A 62fd7f2874de VCVTNE2PH2BF8S ymm3, ymm0, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3266,11 +4014,12 @@ Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -00000000000003CC 62fd7f4874de VCVTNE2PH2BF8S zmm3, zmm0, zmm6 +0000000000000480 62fd7f4874de VCVTNE2PH2BF8S zmm3, zmm0, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3285,11 +4034,12 @@ Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -00000000000003D2 62fd7f18741e VCVTNE2PH2BF8S xmm3, xmm0, word ptr [r22]{1to8} +0000000000000486 62fd7f18741e VCVTNE2PH2BF8S xmm3, xmm0, word ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3306,11 +4056,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 8 times -00000000000003D8 62fd7f38741e VCVTNE2PH2BF8S ymm3, ymm0, word ptr [r22]{1to16} +000000000000048C 62fd7f38741e VCVTNE2PH2BF8S ymm3, ymm0, word ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3327,11 +4078,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 16 times -00000000000003DE 62fd7f58741e VCVTNE2PH2BF8S zmm3, zmm0, word ptr [r22]{1to32} +0000000000000492 62fd7f58741e VCVTNE2PH2BF8S zmm3, zmm0, word ptr [r22]{1to32} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3348,11 +4100,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 32 times -00000000000003E4 62fd7f0f741e VCVTNE2PH2BF8S xmm3{k7}, xmm0, xmmword ptr [r22] +0000000000000498 62fd7f0f741e VCVTNE2PH2BF8S xmm3{k7}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3369,11 +4122,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -00000000000003EA 62fd7f2f741e VCVTNE2PH2BF8S ymm3{k7}, ymm0, ymmword ptr [r22] +000000000000049E 62fd7f2f741e VCVTNE2PH2BF8S ymm3{k7}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3390,11 +4144,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -00000000000003F0 62fd7f4f741e VCVTNE2PH2BF8S zmm3{k7}, zmm0, zmmword ptr [r22] +00000000000004A4 62fd7f4f741e VCVTNE2PH2BF8S zmm3{k7}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3411,11 +4166,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -00000000000003F6 62fd7f8f741e VCVTNE2PH2BF8S xmm3{k7}{z}, xmm0, xmmword ptr [r22] +00000000000004AA 62fd7f8f741e VCVTNE2PH2BF8S xmm3{k7}{z}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3433,11 +4189,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -00000000000003FC 62fd7faf741e VCVTNE2PH2BF8S ymm3{k7}{z}, ymm0, ymmword ptr [r22] +00000000000004B0 62fd7faf741e VCVTNE2PH2BF8S ymm3{k7}{z}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3455,11 +4212,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000000402 62fd7fcf741e VCVTNE2PH2BF8S zmm3{k7}{z}, zmm0, zmmword ptr [r22] +00000000000004B6 62fd7fcf741e VCVTNE2PH2BF8S zmm3{k7}{z}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3477,11 +4235,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000000408 62fd7f08181e VCVTNE2PH2HF8 xmm3, xmm0, xmmword ptr [r22] +00000000000004BC 62fd7f08181e VCVTNE2PH2HF8 xmm3, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3497,11 +4256,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -000000000000040E 62fd7f28181e VCVTNE2PH2HF8 ymm3, ymm0, ymmword ptr [r22] +00000000000004C2 62fd7f28181e VCVTNE2PH2HF8 ymm3, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3517,11 +4277,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000000414 62fd7f48181e VCVTNE2PH2HF8 zmm3, zmm0, zmmword ptr [r22] +00000000000004C8 62fd7f48181e VCVTNE2PH2HF8 zmm3, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3537,11 +4298,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -000000000000041A 62fd7f0818de VCVTNE2PH2HF8 xmm3, xmm0, xmm6 +00000000000004CE 62fd7f0818de VCVTNE2PH2HF8 xmm3, xmm0, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3556,11 +4318,12 @@ Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000000420 62fd7f2818de VCVTNE2PH2HF8 ymm3, ymm0, ymm6 +00000000000004D4 62fd7f2818de VCVTNE2PH2HF8 ymm3, ymm0, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3575,11 +4338,12 @@ Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000426 62fd7f4818de VCVTNE2PH2HF8 zmm3, zmm0, zmm6 +00000000000004DA 62fd7f4818de VCVTNE2PH2HF8 zmm3, zmm0, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3594,11 +4358,12 @@ Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -000000000000042C 62fd7f18181e VCVTNE2PH2HF8 xmm3, xmm0, word ptr [r22]{1to8} +00000000000004E0 62fd7f18181e VCVTNE2PH2HF8 xmm3, xmm0, word ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3615,11 +4380,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 8 times -0000000000000432 62fd7f38181e VCVTNE2PH2HF8 ymm3, ymm0, word ptr [r22]{1to16} +00000000000004E6 62fd7f38181e VCVTNE2PH2HF8 ymm3, ymm0, word ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3636,11 +4402,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 16 times -0000000000000438 62fd7f58181e VCVTNE2PH2HF8 zmm3, zmm0, word ptr [r22]{1to32} +00000000000004EC 62fd7f58181e VCVTNE2PH2HF8 zmm3, zmm0, word ptr [r22]{1to32} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3657,11 +4424,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 32 times -000000000000043E 62fd7f0f181e VCVTNE2PH2HF8 xmm3{k7}, xmm0, xmmword ptr [r22] +00000000000004F2 62fd7f0f181e VCVTNE2PH2HF8 xmm3{k7}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3678,11 +4446,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000444 62fd7f2f181e VCVTNE2PH2HF8 ymm3{k7}, ymm0, ymmword ptr [r22] +00000000000004F8 62fd7f2f181e VCVTNE2PH2HF8 ymm3{k7}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3699,11 +4468,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -000000000000044A 62fd7f4f181e VCVTNE2PH2HF8 zmm3{k7}, zmm0, zmmword ptr [r22] +00000000000004FE 62fd7f4f181e VCVTNE2PH2HF8 zmm3{k7}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3720,11 +4490,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000000450 62fd7f8f181e VCVTNE2PH2HF8 xmm3{k7}{z}, xmm0, xmmword ptr [r22] +0000000000000504 62fd7f8f181e VCVTNE2PH2HF8 xmm3{k7}{z}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3742,11 +4513,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000456 62fd7faf181e VCVTNE2PH2HF8 ymm3{k7}{z}, ymm0, ymmword ptr [r22] +000000000000050A 62fd7faf181e VCVTNE2PH2HF8 ymm3{k7}{z}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3764,11 +4536,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -000000000000045C 62fd7fcf181e VCVTNE2PH2HF8 zmm3{k7}{z}, zmm0, zmmword ptr [r22] +0000000000000510 62fd7fcf181e VCVTNE2PH2HF8 zmm3{k7}{z}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3786,11 +4559,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000000462 62fd7f081b1e VCVTNE2PH2HF8S xmm3, xmm0, xmmword ptr [r22] +0000000000000516 62fd7f081b1e VCVTNE2PH2HF8S xmm3, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3806,11 +4580,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000468 62fd7f281b1e VCVTNE2PH2HF8S ymm3, ymm0, ymmword ptr [r22] +000000000000051C 62fd7f281b1e VCVTNE2PH2HF8S ymm3, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3826,11 +4601,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -000000000000046E 62fd7f481b1e VCVTNE2PH2HF8S zmm3, zmm0, zmmword ptr [r22] +0000000000000522 62fd7f481b1e VCVTNE2PH2HF8S zmm3, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3846,11 +4622,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000000474 62fd7f081bde VCVTNE2PH2HF8S xmm3, xmm0, xmm6 +0000000000000528 62fd7f081bde VCVTNE2PH2HF8S xmm3, xmm0, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3865,11 +4642,12 @@ Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -000000000000047A 62fd7f281bde VCVTNE2PH2HF8S ymm3, ymm0, ymm6 +000000000000052E 62fd7f281bde VCVTNE2PH2HF8S ymm3, ymm0, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3884,11 +4662,12 @@ Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000480 62fd7f481bde VCVTNE2PH2HF8S zmm3, zmm0, zmm6 +0000000000000534 62fd7f481bde VCVTNE2PH2HF8S zmm3, zmm0, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3903,11 +4682,12 @@ Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000486 62fd7f181b1e VCVTNE2PH2HF8S xmm3, xmm0, word ptr [r22]{1to8} +000000000000053A 62fd7f181b1e VCVTNE2PH2HF8S xmm3, xmm0, word ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3924,11 +4704,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 8 times -000000000000048C 62fd7f381b1e VCVTNE2PH2HF8S ymm3, ymm0, word ptr [r22]{1to16} +0000000000000540 62fd7f381b1e VCVTNE2PH2HF8S ymm3, ymm0, word ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3945,11 +4726,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 16 times -0000000000000492 62fd7f581b1e VCVTNE2PH2HF8S zmm3, zmm0, word ptr [r22]{1to32} +0000000000000546 62fd7f581b1e VCVTNE2PH2HF8S zmm3, zmm0, word ptr [r22]{1to32} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3966,11 +4748,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 32 times -0000000000000498 62fd7f0f1b1e VCVTNE2PH2HF8S xmm3{k7}, xmm0, xmmword ptr [r22] +000000000000054C 62fd7f0f1b1e VCVTNE2PH2HF8S xmm3{k7}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3987,11 +4770,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -000000000000049E 62fd7f2f1b1e VCVTNE2PH2HF8S ymm3{k7}, ymm0, ymmword ptr [r22] +0000000000000552 62fd7f2f1b1e VCVTNE2PH2HF8S ymm3{k7}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4008,11 +4792,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -00000000000004A4 62fd7f4f1b1e VCVTNE2PH2HF8S zmm3{k7}, zmm0, zmmword ptr [r22] +0000000000000558 62fd7f4f1b1e VCVTNE2PH2HF8S zmm3{k7}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4029,11 +4814,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -00000000000004AA 62fd7f8f1b1e VCVTNE2PH2HF8S xmm3{k7}{z}, xmm0, xmmword ptr [r22] +000000000000055E 62fd7f8f1b1e VCVTNE2PH2HF8S xmm3{k7}{z}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4051,11 +4837,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -00000000000004B0 62fd7faf1b1e VCVTNE2PH2HF8S ymm3{k7}{z}, ymm0, ymmword ptr [r22] +0000000000000564 62fd7faf1b1e VCVTNE2PH2HF8S ymm3{k7}{z}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4073,11 +4860,12 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -00000000000004B6 62fd7fcf1b1e VCVTNE2PH2HF8S zmm3{k7}{z}, zmm0, zmmword ptr [r22] +000000000000056A 62fd7fcf1b1e VCVTNE2PH2HF8S zmm3{k7}{z}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4095,7 +4883,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -00000000000004BC 62fd7f08691e VCVTNEBF162IBS xmm3, xmmword ptr [r22] +0000000000000570 62fd7f08691e VCVTNEBF162IBS xmm3, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -4114,7 +4902,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -00000000000004C2 62fd7f28691e VCVTNEBF162IBS ymm3, ymmword ptr [r22] +0000000000000576 62fd7f28691e VCVTNEBF162IBS ymm3, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -4133,7 +4921,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -00000000000004C8 62fd7f48691e VCVTNEBF162IBS zmm3, zmmword ptr [r22] +000000000000057C 62fd7f48691e VCVTNEBF162IBS zmm3, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -4152,7 +4940,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -00000000000004CE 62fd7f0869de VCVTNEBF162IBS xmm3, xmm6 +0000000000000582 62fd7f0869de VCVTNEBF162IBS xmm3, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -4170,7 +4958,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -00000000000004D4 62fd7f2869de VCVTNEBF162IBS ymm3, ymm6 +0000000000000588 62fd7f2869de VCVTNEBF162IBS ymm3, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -4188,7 +4976,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -00000000000004DA 62fd7f4869de VCVTNEBF162IBS zmm3, zmm6 +000000000000058E 62fd7f4869de VCVTNEBF162IBS zmm3, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -4206,7 +4994,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -00000000000004E0 62fd7f18691e VCVTNEBF162IBS xmm3, word ptr [r22]{1to8} +0000000000000594 62fd7f18691e VCVTNEBF162IBS xmm3, word ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -4226,7 +5014,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 8 times -00000000000004E6 62fd7f38691e VCVTNEBF162IBS ymm3, word ptr [r22]{1to16} +000000000000059A 62fd7f38691e VCVTNEBF162IBS ymm3, word ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -4246,7 +5034,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 16 times -00000000000004EC 62fd7f58691e VCVTNEBF162IBS zmm3, word ptr [r22]{1to32} +00000000000005A0 62fd7f58691e VCVTNEBF162IBS zmm3, word ptr [r22]{1to32} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -4266,7 +5054,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 32 times -00000000000004F2 62fd7f0f691e VCVTNEBF162IBS xmm3{k7}, xmmword ptr [r22] +00000000000005A6 62fd7f0f691e VCVTNEBF162IBS xmm3{k7}, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -4286,7 +5074,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -00000000000004F8 62fd7f2f691e VCVTNEBF162IBS ymm3{k7}, ymmword ptr [r22] +00000000000005AC 62fd7f2f691e VCVTNEBF162IBS ymm3{k7}, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -4306,7 +5094,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -00000000000004FE 62fd7f4f691e VCVTNEBF162IBS zmm3{k7}, zmmword ptr [r22] +00000000000005B2 62fd7f4f691e VCVTNEBF162IBS zmm3{k7}, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -4326,7 +5114,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000000504 62fd7f8f691e VCVTNEBF162IBS xmm3{k7}{z}, xmmword ptr [r22] +00000000000005B8 62fd7f8f691e VCVTNEBF162IBS xmm3{k7}{z}, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -4347,7 +5135,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -000000000000050A 62fd7faf691e VCVTNEBF162IBS ymm3{k7}{z}, ymmword ptr [r22] +00000000000005BE 62fd7faf691e VCVTNEBF162IBS ymm3{k7}{z}, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -4368,7 +5156,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000000510 62fd7fcf691e VCVTNEBF162IBS zmm3{k7}{z}, zmmword ptr [r22] +00000000000005C4 62fd7fcf691e VCVTNEBF162IBS zmm3{k7}{z}, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -4389,7 +5177,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000000516 62fd7f086b1e VCVTNEBF162IUBS xmm3, xmmword ptr [r22] +00000000000005CA 62fd7f086b1e VCVTNEBF162IUBS xmm3, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -4408,7 +5196,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -000000000000051C 62fd7f286b1e VCVTNEBF162IUBS ymm3, ymmword ptr [r22] +00000000000005D0 62fd7f286b1e VCVTNEBF162IUBS ymm3, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -4427,7 +5215,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000000522 62fd7f486b1e VCVTNEBF162IUBS zmm3, zmmword ptr [r22] +00000000000005D6 62fd7f486b1e VCVTNEBF162IUBS zmm3, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -4446,7 +5234,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000000528 62fd7f086bde VCVTNEBF162IUBS xmm3, xmm6 +00000000000005DC 62fd7f086bde VCVTNEBF162IUBS xmm3, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -4464,7 +5252,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -000000000000052E 62fd7f286bde VCVTNEBF162IUBS ymm3, ymm6 +00000000000005E2 62fd7f286bde VCVTNEBF162IUBS ymm3, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -4482,7 +5270,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000534 62fd7f486bde VCVTNEBF162IUBS zmm3, zmm6 +00000000000005E8 62fd7f486bde VCVTNEBF162IUBS zmm3, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -4500,7 +5288,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -000000000000053A 62fd7f186b1e VCVTNEBF162IUBS xmm3, word ptr [r22]{1to8} +00000000000005EE 62fd7f186b1e VCVTNEBF162IUBS xmm3, word ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -4520,7 +5308,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 8 times -0000000000000540 62fd7f386b1e VCVTNEBF162IUBS ymm3, word ptr [r22]{1to16} +00000000000005F4 62fd7f386b1e VCVTNEBF162IUBS ymm3, word ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -4540,7 +5328,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 16 times -0000000000000546 62fd7f586b1e VCVTNEBF162IUBS zmm3, word ptr [r22]{1to32} +00000000000005FA 62fd7f586b1e VCVTNEBF162IUBS zmm3, word ptr [r22]{1to32} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -4560,7 +5348,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 32 times -000000000000054C 62fd7f0f6b1e VCVTNEBF162IUBS xmm3{k7}, xmmword ptr [r22] +0000000000000600 62fd7f0f6b1e VCVTNEBF162IUBS xmm3{k7}, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -4580,7 +5368,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000552 62fd7f2f6b1e VCVTNEBF162IUBS ymm3{k7}, ymmword ptr [r22] +0000000000000606 62fd7f2f6b1e VCVTNEBF162IUBS ymm3{k7}, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -4600,7 +5388,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000000558 62fd7f4f6b1e VCVTNEBF162IUBS zmm3{k7}, zmmword ptr [r22] +000000000000060C 62fd7f4f6b1e VCVTNEBF162IUBS zmm3{k7}, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -4620,7 +5408,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -000000000000055E 62fd7f8f6b1e VCVTNEBF162IUBS xmm3{k7}{z}, xmmword ptr [r22] +0000000000000612 62fd7f8f6b1e VCVTNEBF162IUBS xmm3{k7}{z}, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -4641,7 +5429,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000564 62fd7faf6b1e VCVTNEBF162IUBS ymm3{k7}{z}, ymmword ptr [r22] +0000000000000618 62fd7faf6b1e VCVTNEBF162IUBS ymm3{k7}{z}, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -4662,7 +5450,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -000000000000056A 62fd7fcf6b1e VCVTNEBF162IUBS zmm3{k7}{z}, zmmword ptr [r22] +000000000000061E 62fd7fcf6b1e VCVTNEBF162IUBS zmm3{k7}{z}, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -4683,11 +5471,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000000570 62f97e08741e VCVTNEPH2BF8 xmm3, xmmword ptr [r22] +0000000000000624 62fa7e08741e VCVTNEPH2BF8 xmm3, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4702,11 +5491,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000576 62f97e28741e VCVTNEPH2BF8 xmm3, ymmword ptr [r22] +000000000000062A 62fa7e28741e VCVTNEPH2BF8 xmm3, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4721,11 +5511,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -000000000000057C 62f97e48741e VCVTNEPH2BF8 ymm3, zmmword ptr [r22] +0000000000000630 62fa7e48741e VCVTNEPH2BF8 ymm3, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4740,11 +5531,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000000582 62f97e0874de VCVTNEPH2BF8 xmm3, xmm6 +0000000000000636 62fa7e0874de VCVTNEPH2BF8 xmm3, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4758,11 +5550,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000000588 62f97e2874de VCVTNEPH2BF8 xmm3, ymm6 +000000000000063C 62fa7e2874de VCVTNEPH2BF8 xmm3, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4776,11 +5569,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -000000000000058E 62f97e4874de VCVTNEPH2BF8 ymm3, zmm6 +0000000000000642 62fa7e4874de VCVTNEPH2BF8 ymm3, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4794,11 +5588,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000594 62f97e18741e VCVTNEPH2BF8 xmm3, word ptr [r22]{1to8} +0000000000000648 62fa7e18741e VCVTNEPH2BF8 xmm3, word ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4814,11 +5609,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 8 times -000000000000059A 62f97e38741e VCVTNEPH2BF8 xmm3, word ptr [r22]{1to16} +000000000000064E 62fa7e38741e VCVTNEPH2BF8 xmm3, word ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4834,11 +5630,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 16 times -00000000000005A0 62f97e58741e VCVTNEPH2BF8 ymm3, word ptr [r22]{1to32} +0000000000000654 62fa7e58741e VCVTNEPH2BF8 ymm3, word ptr [r22]{1to32} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4854,11 +5651,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 32 times -00000000000005A6 62f97e0f741e VCVTNEPH2BF8 xmm3{k7}, xmmword ptr [r22] +000000000000065A 62fa7e0f741e VCVTNEPH2BF8 xmm3{k7}, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4874,11 +5672,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -00000000000005AC 62f97e2f741e VCVTNEPH2BF8 xmm3{k7}, ymmword ptr [r22] +0000000000000660 62fa7e2f741e VCVTNEPH2BF8 xmm3{k7}, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4894,11 +5693,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -00000000000005B2 62f97e4f741e VCVTNEPH2BF8 ymm3{k7}, zmmword ptr [r22] +0000000000000666 62fa7e4f741e VCVTNEPH2BF8 ymm3{k7}, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4914,11 +5714,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -00000000000005B8 62f97e8f741e VCVTNEPH2BF8 xmm3{k7}{z}, xmmword ptr [r22] +000000000000066C 62fa7e8f741e VCVTNEPH2BF8 xmm3{k7}{z}, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4935,11 +5736,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -00000000000005BE 62f97eaf741e VCVTNEPH2BF8 xmm3{k7}{z}, ymmword ptr [r22] +0000000000000672 62fa7eaf741e VCVTNEPH2BF8 xmm3{k7}{z}, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4956,11 +5758,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -00000000000005C4 62f97ecf741e VCVTNEPH2BF8 ymm3{k7}{z}, zmmword ptr [r22] +0000000000000678 62fa7ecf741e VCVTNEPH2BF8 ymm3{k7}{z}, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4977,11 +5780,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -00000000000005CA 62fd7e08741e VCVTNEPH2BF8S xmm3, xmmword ptr [r22] +000000000000067E 62fd7e08741e VCVTNEPH2BF8S xmm3, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4996,11 +5800,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -00000000000005D0 62fd7e28741e VCVTNEPH2BF8S xmm3, ymmword ptr [r22] +0000000000000684 62fd7e28741e VCVTNEPH2BF8S xmm3, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5015,11 +5820,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -00000000000005D6 62fd7e48741e VCVTNEPH2BF8S ymm3, zmmword ptr [r22] +000000000000068A 62fd7e48741e VCVTNEPH2BF8S ymm3, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5034,11 +5840,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -00000000000005DC 62fd7e0874de VCVTNEPH2BF8S xmm3, xmm6 +0000000000000690 62fd7e0874de VCVTNEPH2BF8S xmm3, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5052,11 +5859,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -00000000000005E2 62fd7e2874de VCVTNEPH2BF8S xmm3, ymm6 +0000000000000696 62fd7e2874de VCVTNEPH2BF8S xmm3, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5070,11 +5878,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -00000000000005E8 62fd7e4874de VCVTNEPH2BF8S ymm3, zmm6 +000000000000069C 62fd7e4874de VCVTNEPH2BF8S ymm3, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5088,11 +5897,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -00000000000005EE 62fd7e18741e VCVTNEPH2BF8S xmm3, word ptr [r22]{1to8} +00000000000006A2 62fd7e18741e VCVTNEPH2BF8S xmm3, word ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5108,11 +5918,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 8 times -00000000000005F4 62fd7e38741e VCVTNEPH2BF8S xmm3, word ptr [r22]{1to16} +00000000000006A8 62fd7e38741e VCVTNEPH2BF8S xmm3, word ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5128,11 +5939,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 16 times -00000000000005FA 62fd7e58741e VCVTNEPH2BF8S ymm3, word ptr [r22]{1to32} +00000000000006AE 62fd7e58741e VCVTNEPH2BF8S ymm3, word ptr [r22]{1to32} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5148,11 +5960,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 32 times -0000000000000600 62fd7e0f741e VCVTNEPH2BF8S xmm3{k7}, xmmword ptr [r22] +00000000000006B4 62fd7e0f741e VCVTNEPH2BF8S xmm3{k7}, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5168,11 +5981,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000606 62fd7e2f741e VCVTNEPH2BF8S xmm3{k7}, ymmword ptr [r22] +00000000000006BA 62fd7e2f741e VCVTNEPH2BF8S xmm3{k7}, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5188,11 +6002,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -000000000000060C 62fd7e4f741e VCVTNEPH2BF8S ymm3{k7}, zmmword ptr [r22] +00000000000006C0 62fd7e4f741e VCVTNEPH2BF8S ymm3{k7}, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5208,11 +6023,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000000612 62fd7e8f741e VCVTNEPH2BF8S xmm3{k7}{z}, xmmword ptr [r22] +00000000000006C6 62fd7e8f741e VCVTNEPH2BF8S xmm3{k7}{z}, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5229,11 +6045,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000618 62fd7eaf741e VCVTNEPH2BF8S xmm3{k7}{z}, ymmword ptr [r22] +00000000000006CC 62fd7eaf741e VCVTNEPH2BF8S xmm3{k7}{z}, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5250,11 +6067,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -000000000000061E 62fd7ecf741e VCVTNEPH2BF8S ymm3{k7}{z}, zmmword ptr [r22] +00000000000006D2 62fd7ecf741e VCVTNEPH2BF8S ymm3{k7}{z}, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5271,11 +6089,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000000624 62fd7e08181e VCVTNEPH2HF8 xmm3, xmmword ptr [r22] +00000000000006D8 62fd7e08181e VCVTNEPH2HF8 xmm3, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5290,11 +6109,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -000000000000062A 62fd7e28181e VCVTNEPH2HF8 xmm3, ymmword ptr [r22] +00000000000006DE 62fd7e28181e VCVTNEPH2HF8 xmm3, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5309,11 +6129,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000000630 62fd7e48181e VCVTNEPH2HF8 ymm3, zmmword ptr [r22] +00000000000006E4 62fd7e48181e VCVTNEPH2HF8 ymm3, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5328,11 +6149,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000000636 62fd7e0818de VCVTNEPH2HF8 xmm3, xmm6 +00000000000006EA 62fd7e0818de VCVTNEPH2HF8 xmm3, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5346,11 +6168,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -000000000000063C 62fd7e2818de VCVTNEPH2HF8 xmm3, ymm6 +00000000000006F0 62fd7e2818de VCVTNEPH2HF8 xmm3, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5364,11 +6187,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000642 62fd7e4818de VCVTNEPH2HF8 ymm3, zmm6 +00000000000006F6 62fd7e4818de VCVTNEPH2HF8 ymm3, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5382,11 +6206,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000648 62fd7e18181e VCVTNEPH2HF8 xmm3, word ptr [r22]{1to8} +00000000000006FC 62fd7e18181e VCVTNEPH2HF8 xmm3, word ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5402,11 +6227,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 8 times -000000000000064E 62fd7e38181e VCVTNEPH2HF8 xmm3, word ptr [r22]{1to16} +0000000000000702 62fd7e38181e VCVTNEPH2HF8 xmm3, word ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5422,11 +6248,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 16 times -0000000000000654 62fd7e58181e VCVTNEPH2HF8 ymm3, word ptr [r22]{1to32} +0000000000000708 62fd7e58181e VCVTNEPH2HF8 ymm3, word ptr [r22]{1to32} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5442,11 +6269,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 32 times -000000000000065A 62fd7e0f181e VCVTNEPH2HF8 xmm3{k7}, xmmword ptr [r22] +000000000000070E 62fd7e0f181e VCVTNEPH2HF8 xmm3{k7}, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5462,11 +6290,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000660 62fd7e2f181e VCVTNEPH2HF8 xmm3{k7}, ymmword ptr [r22] +0000000000000714 62fd7e2f181e VCVTNEPH2HF8 xmm3{k7}, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5482,11 +6311,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000000666 62fd7e4f181e VCVTNEPH2HF8 ymm3{k7}, zmmword ptr [r22] +000000000000071A 62fd7e4f181e VCVTNEPH2HF8 ymm3{k7}, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5502,11 +6332,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -000000000000066C 62fd7e8f181e VCVTNEPH2HF8 xmm3{k7}{z}, xmmword ptr [r22] +0000000000000720 62fd7e8f181e VCVTNEPH2HF8 xmm3{k7}{z}, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5523,11 +6354,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000672 62fd7eaf181e VCVTNEPH2HF8 xmm3{k7}{z}, ymmword ptr [r22] +0000000000000726 62fd7eaf181e VCVTNEPH2HF8 xmm3{k7}{z}, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5544,11 +6376,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000000678 62fd7ecf181e VCVTNEPH2HF8 ymm3{k7}{z}, zmmword ptr [r22] +000000000000072C 62fd7ecf181e VCVTNEPH2HF8 ymm3{k7}{z}, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5565,11 +6398,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -000000000000067E 62fd7e081b1e VCVTNEPH2HF8S xmm3, xmmword ptr [r22] +0000000000000732 62fd7e081b1e VCVTNEPH2HF8S xmm3, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5584,11 +6418,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000684 62fd7e281b1e VCVTNEPH2HF8S xmm3, ymmword ptr [r22] +0000000000000738 62fd7e281b1e VCVTNEPH2HF8S xmm3, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5603,11 +6438,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -000000000000068A 62fd7e481b1e VCVTNEPH2HF8S ymm3, zmmword ptr [r22] +000000000000073E 62fd7e481b1e VCVTNEPH2HF8S ymm3, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5622,11 +6458,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000000690 62fd7e081bde VCVTNEPH2HF8S xmm3, xmm6 +0000000000000744 62fd7e081bde VCVTNEPH2HF8S xmm3, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5640,11 +6477,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000000696 62fd7e281bde VCVTNEPH2HF8S xmm3, ymm6 +000000000000074A 62fd7e281bde VCVTNEPH2HF8S xmm3, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5658,11 +6496,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -000000000000069C 62fd7e481bde VCVTNEPH2HF8S ymm3, zmm6 +0000000000000750 62fd7e481bde VCVTNEPH2HF8S ymm3, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5676,11 +6515,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -00000000000006A2 62fd7e181b1e VCVTNEPH2HF8S xmm3, word ptr [r22]{1to8} +0000000000000756 62fd7e181b1e VCVTNEPH2HF8S xmm3, word ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5696,11 +6536,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 8 times -00000000000006A8 62fd7e381b1e VCVTNEPH2HF8S xmm3, word ptr [r22]{1to16} +000000000000075C 62fd7e381b1e VCVTNEPH2HF8S xmm3, word ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5716,11 +6557,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 16 times -00000000000006AE 62fd7e581b1e VCVTNEPH2HF8S ymm3, word ptr [r22]{1to32} +0000000000000762 62fd7e581b1e VCVTNEPH2HF8S ymm3, word ptr [r22]{1to32} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5736,11 +6578,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 32 times -00000000000006B4 62fd7e0f1b1e VCVTNEPH2HF8S xmm3{k7}, xmmword ptr [r22] +0000000000000768 62fd7e0f1b1e VCVTNEPH2HF8S xmm3{k7}, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5756,11 +6599,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -00000000000006BA 62fd7e2f1b1e VCVTNEPH2HF8S xmm3{k7}, ymmword ptr [r22] +000000000000076E 62fd7e2f1b1e VCVTNEPH2HF8S xmm3{k7}, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5776,11 +6620,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -00000000000006C0 62fd7e4f1b1e VCVTNEPH2HF8S ymm3{k7}, zmmword ptr [r22] +0000000000000774 62fd7e4f1b1e VCVTNEPH2HF8S ymm3{k7}, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5796,11 +6641,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -00000000000006C6 62fd7e8f1b1e VCVTNEPH2HF8S xmm3{k7}{z}, xmmword ptr [r22] +000000000000077A 62fd7e8f1b1e VCVTNEPH2HF8S xmm3{k7}{z}, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5817,11 +6663,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -00000000000006CC 62fd7eaf1b1e VCVTNEPH2HF8S xmm3{k7}{z}, ymmword ptr [r22] +0000000000000780 62fd7eaf1b1e VCVTNEPH2HF8S xmm3{k7}{z}, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5838,11 +6685,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -00000000000006D2 62fd7ecf1b1e VCVTNEPH2HF8S ymm3{k7}{z}, zmmword ptr [r22] +0000000000000786 62fd7ecf1b1e VCVTNEPH2HF8S ymm3{k7}{z}, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4NF + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5859,11 +6707,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -00000000000006D8 62fd7c08691e VCVTPH2IBS xmm3, xmmword ptr [r22] +000000000000078C 62fd7c08691e VCVTPH2IBS xmm3, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5878,11 +6727,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -00000000000006DE 62fd7c28691e VCVTPH2IBS ymm3, ymmword ptr [r22] +0000000000000792 62fd7c28691e VCVTPH2IBS ymm3, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5897,11 +6747,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -00000000000006E4 62fd7c48691e VCVTPH2IBS zmm3, zmmword ptr [r22] +0000000000000798 62fd7c48691e VCVTPH2IBS zmm3, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5916,11 +6767,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -00000000000006EA 62fd7c0869de VCVTPH2IBS xmm3, xmm6 +000000000000079E 62fd7c0869de VCVTPH2IBS xmm3, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5934,11 +6786,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -00000000000006F0 62fd7c2869de VCVTPH2IBS ymm3, ymm6 +00000000000007A4 62fd7c2869de VCVTPH2IBS ymm3, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5952,11 +6805,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -00000000000006F6 62fd7c4869de VCVTPH2IBS zmm3, zmm6 +00000000000007AA 62fd7c4869de VCVTPH2IBS zmm3, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5970,11 +6824,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -00000000000006FC 62fd7c18691e VCVTPH2IBS xmm3, word ptr [r22]{1to8} +00000000000007B0 62fd7c18691e VCVTPH2IBS xmm3, word ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5990,11 +6845,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 8 times -0000000000000702 62fd7c38691e VCVTPH2IBS ymm3, word ptr [r22]{1to16} +00000000000007B6 62fd7c38691e VCVTPH2IBS ymm3, word ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6010,11 +6866,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 16 times -0000000000000708 62fd7c58691e VCVTPH2IBS zmm3, word ptr [r22]{1to32} +00000000000007BC 62fd7c58691e VCVTPH2IBS zmm3, word ptr [r22]{1to32} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6030,11 +6887,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 32 times -000000000000070E 62fd7c0f691e VCVTPH2IBS xmm3{k7}, xmmword ptr [r22] +00000000000007C2 62fd7c0f691e VCVTPH2IBS xmm3{k7}, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6050,11 +6908,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000714 62fd7c2f691e VCVTPH2IBS ymm3{k7}, ymmword ptr [r22] +00000000000007C8 62fd7c2f691e VCVTPH2IBS ymm3{k7}, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6070,11 +6929,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -000000000000071A 62fd7c4f691e VCVTPH2IBS zmm3{k7}, zmmword ptr [r22] +00000000000007CE 62fd7c4f691e VCVTPH2IBS zmm3{k7}, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6090,11 +6950,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000000720 62fd7c8f691e VCVTPH2IBS xmm3{k7}{z}, xmmword ptr [r22] +00000000000007D4 62fd7c8f691e VCVTPH2IBS xmm3{k7}{z}, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6111,11 +6972,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000726 62fd7caf691e VCVTPH2IBS ymm3{k7}{z}, ymmword ptr [r22] +00000000000007DA 62fd7caf691e VCVTPH2IBS ymm3{k7}{z}, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6132,11 +6994,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -000000000000072C 62fd7ccf691e VCVTPH2IBS zmm3{k7}{z}, zmmword ptr [r22] +00000000000007E0 62fd7ccf691e VCVTPH2IBS zmm3{k7}{z}, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6153,11 +7016,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000000732 62fd7c1869de VCVTPH2IBS zmm3, zmm6, {rn-sae} +00000000000007E6 62fd7c1869de VCVTPH2IBS zmm3, zmm6, {rn-sae} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6171,11 +7035,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000738 62fd7c3869de VCVTPH2IBS zmm3, zmm6, {rd-sae} +00000000000007EC 62fd7c3869de VCVTPH2IBS zmm3, zmm6, {rd-sae} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6189,11 +7054,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -000000000000073E 62fd7c5869de VCVTPH2IBS zmm3, zmm6, {ru-sae} +00000000000007F2 62fd7c5869de VCVTPH2IBS zmm3, zmm6, {ru-sae} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6207,11 +7073,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000744 62fd7c7869de VCVTPH2IBS zmm3, zmm6, {rz-sae} +00000000000007F8 62fd7c7869de VCVTPH2IBS zmm3, zmm6, {rz-sae} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6225,11 +7092,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -000000000000074A 62fd781869de VCVTPH2IBS ymm3, ymm6, {rn-sae} +00000000000007FE 62fd781869de VCVTPH2IBS ymm3, ymm6, {rn-sae} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6243,11 +7111,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000750 62fd783869de VCVTPH2IBS ymm3, ymm6, {rd-sae} +0000000000000804 62fd783869de VCVTPH2IBS ymm3, ymm6, {rd-sae} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6261,11 +7130,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000756 62fd785869de VCVTPH2IBS ymm3, ymm6, {ru-sae} +000000000000080A 62fd785869de VCVTPH2IBS ymm3, ymm6, {ru-sae} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6279,11 +7149,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -000000000000075C 62fd787869de VCVTPH2IBS ymm3, ymm6, {rz-sae} +0000000000000810 62fd787869de VCVTPH2IBS ymm3, ymm6, {rz-sae} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6297,11 +7168,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000762 62fd7c086b1e VCVTPH2IUBS xmm3, xmmword ptr [r22] +0000000000000816 62fd7c086b1e VCVTPH2IUBS xmm3, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6316,11 +7188,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000768 62fd7c286b1e VCVTPH2IUBS ymm3, ymmword ptr [r22] +000000000000081C 62fd7c286b1e VCVTPH2IUBS ymm3, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6335,11 +7208,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -000000000000076E 62fd7c486b1e VCVTPH2IUBS zmm3, zmmword ptr [r22] +0000000000000822 62fd7c486b1e VCVTPH2IUBS zmm3, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6354,11 +7228,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000000774 62fd7c086bde VCVTPH2IUBS xmm3, xmm6 +0000000000000828 62fd7c086bde VCVTPH2IUBS xmm3, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6372,11 +7247,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -000000000000077A 62fd7c286bde VCVTPH2IUBS ymm3, ymm6 +000000000000082E 62fd7c286bde VCVTPH2IUBS ymm3, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6390,11 +7266,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000780 62fd7c486bde VCVTPH2IUBS zmm3, zmm6 +0000000000000834 62fd7c486bde VCVTPH2IUBS zmm3, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6408,11 +7285,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000786 62fd7c186b1e VCVTPH2IUBS xmm3, word ptr [r22]{1to8} +000000000000083A 62fd7c186b1e VCVTPH2IUBS xmm3, word ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6428,11 +7306,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 8 times -000000000000078C 62fd7c386b1e VCVTPH2IUBS ymm3, word ptr [r22]{1to16} +0000000000000840 62fd7c386b1e VCVTPH2IUBS ymm3, word ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6448,11 +7327,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 16 times -0000000000000792 62fd7c586b1e VCVTPH2IUBS zmm3, word ptr [r22]{1to32} +0000000000000846 62fd7c586b1e VCVTPH2IUBS zmm3, word ptr [r22]{1to32} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6468,11 +7348,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 32 times -0000000000000798 62fd7c0f6b1e VCVTPH2IUBS xmm3{k7}, xmmword ptr [r22] +000000000000084C 62fd7c0f6b1e VCVTPH2IUBS xmm3{k7}, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6488,11 +7369,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -000000000000079E 62fd7c2f6b1e VCVTPH2IUBS ymm3{k7}, ymmword ptr [r22] +0000000000000852 62fd7c2f6b1e VCVTPH2IUBS ymm3{k7}, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6508,11 +7390,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -00000000000007A4 62fd7c4f6b1e VCVTPH2IUBS zmm3{k7}, zmmword ptr [r22] +0000000000000858 62fd7c4f6b1e VCVTPH2IUBS zmm3{k7}, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6528,11 +7411,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -00000000000007AA 62fd7c8f6b1e VCVTPH2IUBS xmm3{k7}{z}, xmmword ptr [r22] +000000000000085E 62fd7c8f6b1e VCVTPH2IUBS xmm3{k7}{z}, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6549,11 +7433,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -00000000000007B0 62fd7caf6b1e VCVTPH2IUBS ymm3{k7}{z}, ymmword ptr [r22] +0000000000000864 62fd7caf6b1e VCVTPH2IUBS ymm3{k7}{z}, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6570,11 +7455,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -00000000000007B6 62fd7ccf6b1e VCVTPH2IUBS zmm3{k7}{z}, zmmword ptr [r22] +000000000000086A 62fd7ccf6b1e VCVTPH2IUBS zmm3{k7}{z}, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6591,11 +7477,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -00000000000007BC 62fd7c186bde VCVTPH2IUBS zmm3, zmm6, {rn-sae} +0000000000000870 62fd7c186bde VCVTPH2IUBS zmm3, zmm6, {rn-sae} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6609,11 +7496,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -00000000000007C2 62fd7c386bde VCVTPH2IUBS zmm3, zmm6, {rd-sae} +0000000000000876 62fd7c386bde VCVTPH2IUBS zmm3, zmm6, {rd-sae} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6627,11 +7515,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -00000000000007C8 62fd7c586bde VCVTPH2IUBS zmm3, zmm6, {ru-sae} +000000000000087C 62fd7c586bde VCVTPH2IUBS zmm3, zmm6, {ru-sae} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6645,11 +7534,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -00000000000007CE 62fd7c786bde VCVTPH2IUBS zmm3, zmm6, {rz-sae} +0000000000000882 62fd7c786bde VCVTPH2IUBS zmm3, zmm6, {rz-sae} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6663,11 +7553,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -00000000000007D4 62fd78186bde VCVTPH2IUBS ymm3, ymm6, {rn-sae} +0000000000000888 62fd78186bde VCVTPH2IUBS ymm3, ymm6, {rn-sae} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6681,11 +7572,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -00000000000007DA 62fd78386bde VCVTPH2IUBS ymm3, ymm6, {rd-sae} +000000000000088E 62fd78386bde VCVTPH2IUBS ymm3, ymm6, {rd-sae} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6699,11 +7591,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -00000000000007E0 62fd78586bde VCVTPH2IUBS ymm3, ymm6, {ru-sae} +0000000000000894 62fd78586bde VCVTPH2IUBS ymm3, ymm6, {ru-sae} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6717,11 +7610,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -00000000000007E6 62fd78786bde VCVTPH2IUBS ymm3, ymm6, {rz-sae} +000000000000089A 62fd78786bde VCVTPH2IUBS ymm3, ymm6, {rz-sae} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6735,11 +7629,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -00000000000007EC 62fd7d08691e VCVTPS2IBS xmm3, xmmword ptr [r22] +00000000000008A0 62fd7d08691e VCVTPS2IBS xmm3, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6754,11 +7649,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -00000000000007F2 62fd7d28691e VCVTPS2IBS ymm3, ymmword ptr [r22] +00000000000008A6 62fd7d28691e VCVTPS2IBS ymm3, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6773,11 +7669,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -00000000000007F8 62fd7d48691e VCVTPS2IBS zmm3, zmmword ptr [r22] +00000000000008AC 62fd7d48691e VCVTPS2IBS zmm3, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6792,11 +7689,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -00000000000007FE 62fd7d0869de VCVTPS2IBS xmm3, xmm6 +00000000000008B2 62fd7d0869de VCVTPS2IBS xmm3, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6810,11 +7708,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000000804 62fd7d2869de VCVTPS2IBS ymm3, ymm6 +00000000000008B8 62fd7d2869de VCVTPS2IBS ymm3, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6828,11 +7727,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -000000000000080A 62fd7d4869de VCVTPS2IBS zmm3, zmm6 +00000000000008BE 62fd7d4869de VCVTPS2IBS zmm3, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6846,11 +7746,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000810 62fd7d18691e VCVTPS2IBS xmm3, dword ptr [r22]{1to4} +00000000000008C4 62fd7d18691e VCVTPS2IBS xmm3, dword ptr [r22]{1to4} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6866,11 +7767,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 4 bytes element 4 times -0000000000000816 62fd7d38691e VCVTPS2IBS ymm3, dword ptr [r22]{1to8} +00000000000008CA 62fd7d38691e VCVTPS2IBS ymm3, dword ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6886,11 +7788,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 4 bytes element 8 times -000000000000081C 62fd7d58691e VCVTPS2IBS zmm3, dword ptr [r22]{1to16} +00000000000008D0 62fd7d58691e VCVTPS2IBS zmm3, dword ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6906,11 +7809,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 4 bytes element 16 times -0000000000000822 62fd7d0f691e VCVTPS2IBS xmm3{k7}, xmmword ptr [r22] +00000000000008D6 62fd7d0f691e VCVTPS2IBS xmm3{k7}, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6926,11 +7830,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000828 62fd7d2f691e VCVTPS2IBS ymm3{k7}, ymmword ptr [r22] +00000000000008DC 62fd7d2f691e VCVTPS2IBS ymm3{k7}, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6946,11 +7851,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -000000000000082E 62fd7d4f691e VCVTPS2IBS zmm3{k7}, zmmword ptr [r22] +00000000000008E2 62fd7d4f691e VCVTPS2IBS zmm3{k7}, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6966,11 +7872,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000000834 62fd7d8f691e VCVTPS2IBS xmm3{k7}{z}, xmmword ptr [r22] +00000000000008E8 62fd7d8f691e VCVTPS2IBS xmm3{k7}{z}, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6987,11 +7894,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -000000000000083A 62fd7daf691e VCVTPS2IBS ymm3{k7}{z}, ymmword ptr [r22] +00000000000008EE 62fd7daf691e VCVTPS2IBS ymm3{k7}{z}, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7008,11 +7916,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000000840 62fd7dcf691e VCVTPS2IBS zmm3{k7}{z}, zmmword ptr [r22] +00000000000008F4 62fd7dcf691e VCVTPS2IBS zmm3{k7}{z}, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7029,11 +7938,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000000846 62fd7d1869de VCVTPS2IBS zmm3, zmm6, {rn-sae} +00000000000008FA 62fd7d1869de VCVTPS2IBS zmm3, zmm6, {rn-sae} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7047,11 +7957,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -000000000000084C 62fd7d3869de VCVTPS2IBS zmm3, zmm6, {rd-sae} +0000000000000900 62fd7d3869de VCVTPS2IBS zmm3, zmm6, {rd-sae} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7065,11 +7976,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000852 62fd7d5869de VCVTPS2IBS zmm3, zmm6, {ru-sae} +0000000000000906 62fd7d5869de VCVTPS2IBS zmm3, zmm6, {ru-sae} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7083,11 +7995,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000858 62fd7d7869de VCVTPS2IBS zmm3, zmm6, {rz-sae} +000000000000090C 62fd7d7869de VCVTPS2IBS zmm3, zmm6, {rz-sae} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7101,11 +8014,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -000000000000085E 62fd791869de VCVTPS2IBS ymm3, ymm6, {rn-sae} +0000000000000912 62fd791869de VCVTPS2IBS ymm3, ymm6, {rn-sae} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7119,11 +8033,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000864 62fd793869de VCVTPS2IBS ymm3, ymm6, {rd-sae} +0000000000000918 62fd793869de VCVTPS2IBS ymm3, ymm6, {rd-sae} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7137,11 +8052,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -000000000000086A 62fd795869de VCVTPS2IBS ymm3, ymm6, {ru-sae} +000000000000091E 62fd795869de VCVTPS2IBS ymm3, ymm6, {ru-sae} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7155,11 +8071,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000870 62fd797869de VCVTPS2IBS ymm3, ymm6, {rz-sae} +0000000000000924 62fd797869de VCVTPS2IBS ymm3, ymm6, {rz-sae} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7173,11 +8090,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000876 62fd7d086b1e VCVTPS2IUBS xmm3, xmmword ptr [r22] +000000000000092A 62fd7d086b1e VCVTPS2IUBS xmm3, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7192,11 +8110,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -000000000000087C 62fd7d286b1e VCVTPS2IUBS ymm3, ymmword ptr [r22] +0000000000000930 62fd7d286b1e VCVTPS2IUBS ymm3, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7211,11 +8130,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000000882 62fd7d486b1e VCVTPS2IUBS zmm3, zmmword ptr [r22] +0000000000000936 62fd7d486b1e VCVTPS2IUBS zmm3, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7230,11 +8150,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000000888 62fd7d086bde VCVTPS2IUBS xmm3, xmm6 +000000000000093C 62fd7d086bde VCVTPS2IUBS xmm3, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7248,11 +8169,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -000000000000088E 62fd7d286bde VCVTPS2IUBS ymm3, ymm6 +0000000000000942 62fd7d286bde VCVTPS2IUBS ymm3, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7266,11 +8188,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000894 62fd7d486bde VCVTPS2IUBS zmm3, zmm6 +0000000000000948 62fd7d486bde VCVTPS2IUBS zmm3, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7284,11 +8207,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -000000000000089A 62fd7d186b1e VCVTPS2IUBS xmm3, dword ptr [r22]{1to4} +000000000000094E 62fd7d186b1e VCVTPS2IUBS xmm3, dword ptr [r22]{1to4} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7304,11 +8228,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 4 bytes element 4 times -00000000000008A0 62fd7d386b1e VCVTPS2IUBS ymm3, dword ptr [r22]{1to8} +0000000000000954 62fd7d386b1e VCVTPS2IUBS ymm3, dword ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7324,11 +8249,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 4 bytes element 8 times -00000000000008A6 62fd7d586b1e VCVTPS2IUBS zmm3, dword ptr [r22]{1to16} +000000000000095A 62fd7d586b1e VCVTPS2IUBS zmm3, dword ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7344,11 +8270,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 4 bytes element 16 times -00000000000008AC 62fd7d0f6b1e VCVTPS2IUBS xmm3{k7}, xmmword ptr [r22] +0000000000000960 62fd7d0f6b1e VCVTPS2IUBS xmm3{k7}, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7364,11 +8291,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -00000000000008B2 62fd7d2f6b1e VCVTPS2IUBS ymm3{k7}, ymmword ptr [r22] +0000000000000966 62fd7d2f6b1e VCVTPS2IUBS ymm3{k7}, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7384,11 +8312,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -00000000000008B8 62fd7d4f6b1e VCVTPS2IUBS zmm3{k7}, zmmword ptr [r22] +000000000000096C 62fd7d4f6b1e VCVTPS2IUBS zmm3{k7}, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7404,11 +8333,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -00000000000008BE 62fd7d8f6b1e VCVTPS2IUBS xmm3{k7}{z}, xmmword ptr [r22] +0000000000000972 62fd7d8f6b1e VCVTPS2IUBS xmm3{k7}{z}, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7425,11 +8355,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -00000000000008C4 62fd7daf6b1e VCVTPS2IUBS ymm3{k7}{z}, ymmword ptr [r22] +0000000000000978 62fd7daf6b1e VCVTPS2IUBS ymm3{k7}{z}, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7446,11 +8377,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -00000000000008CA 62fd7dcf6b1e VCVTPS2IUBS zmm3{k7}{z}, zmmword ptr [r22] +000000000000097E 62fd7dcf6b1e VCVTPS2IUBS zmm3{k7}{z}, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7467,11 +8399,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -00000000000008D0 62fd7d186bde VCVTPS2IUBS zmm3, zmm6, {rn-sae} +0000000000000984 62fd7d186bde VCVTPS2IUBS zmm3, zmm6, {rn-sae} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7485,11 +8418,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -00000000000008D6 62fd7d386bde VCVTPS2IUBS zmm3, zmm6, {rd-sae} +000000000000098A 62fd7d386bde VCVTPS2IUBS zmm3, zmm6, {rd-sae} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7503,11 +8437,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -00000000000008DC 62fd7d586bde VCVTPS2IUBS zmm3, zmm6, {ru-sae} +0000000000000990 62fd7d586bde VCVTPS2IUBS zmm3, zmm6, {ru-sae} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7521,11 +8456,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -00000000000008E2 62fd7d786bde VCVTPS2IUBS zmm3, zmm6, {rz-sae} +0000000000000996 62fd7d786bde VCVTPS2IUBS zmm3, zmm6, {rz-sae} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7539,11 +8475,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -00000000000008E8 62fd79186bde VCVTPS2IUBS ymm3, ymm6, {rn-sae} +000000000000099C 62fd79186bde VCVTPS2IUBS ymm3, ymm6, {rn-sae} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7557,11 +8494,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -00000000000008EE 62fd79386bde VCVTPS2IUBS ymm3, ymm6, {rd-sae} +00000000000009A2 62fd79386bde VCVTPS2IUBS ymm3, ymm6, {rd-sae} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7575,11 +8513,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -00000000000008F4 62fd79586bde VCVTPS2IUBS ymm3, ymm6, {ru-sae} +00000000000009A8 62fd79586bde VCVTPS2IUBS ymm3, ymm6, {ru-sae} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7593,11 +8532,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -00000000000008FA 62fd79786bde VCVTPS2IUBS ymm3, ymm6, {rz-sae} +00000000000009AE 62fd79786bde VCVTPS2IUBS ymm3, ymm6, {rz-sae} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7611,7 +8551,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000900 62fd7f08681e VCVTTNEBF162IBS xmm3, xmmword ptr [r22] +00000000000009B4 62fd7f08681e VCVTTNEBF162IBS xmm3, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -7630,7 +8570,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000906 62fd7f28681e VCVTTNEBF162IBS ymm3, ymmword ptr [r22] +00000000000009BA 62fd7f28681e VCVTTNEBF162IBS ymm3, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -7649,7 +8589,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -000000000000090C 62fd7f48681e VCVTTNEBF162IBS zmm3, zmmword ptr [r22] +00000000000009C0 62fd7f48681e VCVTTNEBF162IBS zmm3, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -7668,7 +8608,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000000912 62fd7f0868de VCVTTNEBF162IBS xmm3, xmm6 +00000000000009C6 62fd7f0868de VCVTTNEBF162IBS xmm3, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -7686,7 +8626,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000000918 62fd7f2868de VCVTTNEBF162IBS ymm3, ymm6 +00000000000009CC 62fd7f2868de VCVTTNEBF162IBS ymm3, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -7704,7 +8644,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -000000000000091E 62fd7f4868de VCVTTNEBF162IBS zmm3, zmm6 +00000000000009D2 62fd7f4868de VCVTTNEBF162IBS zmm3, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -7722,7 +8662,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000924 62fd7f18681e VCVTTNEBF162IBS xmm3, word ptr [r22]{1to8} +00000000000009D8 62fd7f18681e VCVTTNEBF162IBS xmm3, word ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -7742,7 +8682,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 8 times -000000000000092A 62fd7f38681e VCVTTNEBF162IBS ymm3, word ptr [r22]{1to16} +00000000000009DE 62fd7f38681e VCVTTNEBF162IBS ymm3, word ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -7762,7 +8702,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 16 times -0000000000000930 62fd7f58681e VCVTTNEBF162IBS zmm3, word ptr [r22]{1to32} +00000000000009E4 62fd7f58681e VCVTTNEBF162IBS zmm3, word ptr [r22]{1to32} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -7782,7 +8722,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 32 times -0000000000000936 62fd7f0f681e VCVTTNEBF162IBS xmm3{k7}, xmmword ptr [r22] +00000000000009EA 62fd7f0f681e VCVTTNEBF162IBS xmm3{k7}, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -7802,7 +8742,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -000000000000093C 62fd7f2f681e VCVTTNEBF162IBS ymm3{k7}, ymmword ptr [r22] +00000000000009F0 62fd7f2f681e VCVTTNEBF162IBS ymm3{k7}, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -7822,7 +8762,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000000942 62fd7f4f681e VCVTTNEBF162IBS zmm3{k7}, zmmword ptr [r22] +00000000000009F6 62fd7f4f681e VCVTTNEBF162IBS zmm3{k7}, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -7842,7 +8782,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000000948 62fd7f8f681e VCVTTNEBF162IBS xmm3{k7}{z}, xmmword ptr [r22] +00000000000009FC 62fd7f8f681e VCVTTNEBF162IBS xmm3{k7}{z}, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -7863,7 +8803,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -000000000000094E 62fd7faf681e VCVTTNEBF162IBS ymm3{k7}{z}, ymmword ptr [r22] +0000000000000A02 62fd7faf681e VCVTTNEBF162IBS ymm3{k7}{z}, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -7884,7 +8824,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000000954 62fd7fcf681e VCVTTNEBF162IBS zmm3{k7}{z}, zmmword ptr [r22] +0000000000000A08 62fd7fcf681e VCVTTNEBF162IBS zmm3{k7}{z}, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -7905,7 +8845,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -000000000000095A 62fd7f086a1e VCVTTNEBF162IUBS xmm3, xmmword ptr [r22] +0000000000000A0E 62fd7f086a1e VCVTTNEBF162IUBS xmm3, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -7924,7 +8864,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000960 62fd7f286a1e VCVTTNEBF162IUBS ymm3, ymmword ptr [r22] +0000000000000A14 62fd7f286a1e VCVTTNEBF162IUBS ymm3, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -7943,7 +8883,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000000966 62fd7f486a1e VCVTTNEBF162IUBS zmm3, zmmword ptr [r22] +0000000000000A1A 62fd7f486a1e VCVTTNEBF162IUBS zmm3, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -7962,7 +8902,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -000000000000096C 62fd7f086ade VCVTTNEBF162IUBS xmm3, xmm6 +0000000000000A20 62fd7f086ade VCVTTNEBF162IUBS xmm3, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -7980,7 +8920,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000000972 62fd7f286ade VCVTTNEBF162IUBS ymm3, ymm6 +0000000000000A26 62fd7f286ade VCVTTNEBF162IUBS ymm3, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -7998,7 +8938,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000978 62fd7f486ade VCVTTNEBF162IUBS zmm3, zmm6 +0000000000000A2C 62fd7f486ade VCVTTNEBF162IUBS zmm3, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -8016,7 +8956,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -000000000000097E 62fd7f186a1e VCVTTNEBF162IUBS xmm3, word ptr [r22]{1to8} +0000000000000A32 62fd7f186a1e VCVTTNEBF162IUBS xmm3, word ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -8036,7 +8976,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 8 times -0000000000000984 62fd7f386a1e VCVTTNEBF162IUBS ymm3, word ptr [r22]{1to16} +0000000000000A38 62fd7f386a1e VCVTTNEBF162IUBS ymm3, word ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -8056,7 +8996,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 16 times -000000000000098A 62fd7f586a1e VCVTTNEBF162IUBS zmm3, word ptr [r22]{1to32} +0000000000000A3E 62fd7f586a1e VCVTTNEBF162IUBS zmm3, word ptr [r22]{1to32} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -8076,7 +9016,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 32 times -0000000000000990 62fd7f0f6a1e VCVTTNEBF162IUBS xmm3{k7}, xmmword ptr [r22] +0000000000000A44 62fd7f0f6a1e VCVTTNEBF162IUBS xmm3{k7}, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -8096,7 +9036,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000996 62fd7f2f6a1e VCVTTNEBF162IUBS ymm3{k7}, ymmword ptr [r22] +0000000000000A4A 62fd7f2f6a1e VCVTTNEBF162IUBS ymm3{k7}, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -8116,7 +9056,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -000000000000099C 62fd7f4f6a1e VCVTTNEBF162IUBS zmm3{k7}, zmmword ptr [r22] +0000000000000A50 62fd7f4f6a1e VCVTTNEBF162IUBS zmm3{k7}, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -8136,7 +9076,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -00000000000009A2 62fd7f8f6a1e VCVTTNEBF162IUBS xmm3{k7}{z}, xmmword ptr [r22] +0000000000000A56 62fd7f8f6a1e VCVTTNEBF162IUBS xmm3{k7}{z}, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -8157,7 +9097,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -00000000000009A8 62fd7faf6a1e VCVTTNEBF162IUBS ymm3{k7}{z}, ymmword ptr [r22] +0000000000000A5C 62fd7faf6a1e VCVTTNEBF162IUBS ymm3{k7}{z}, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -8178,7 +9118,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -00000000000009AE 62fd7fcf6a1e VCVTTNEBF162IUBS zmm3{k7}{z}, zmmword ptr [r22] +0000000000000A62 62fd7fcf6a1e VCVTTNEBF162IUBS zmm3{k7}{z}, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full @@ -8199,11 +9139,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -00000000000009B4 62fdfc086d1e VCVTTPD2DQS xmm3, xmmword ptr [r22] +0000000000000A68 62fdfc086d1e VCVTTPD2DQS xmm3, xmmword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8218,11 +9159,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -00000000000009BA 62fdfc286d1e VCVTTPD2DQS xmm3, ymmword ptr [r22] +0000000000000A6E 62fdfc286d1e VCVTTPD2DQS xmm3, ymmword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8237,11 +9179,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -00000000000009C0 62fdfc486d1e VCVTTPD2DQS ymm3, zmmword ptr [r22] +0000000000000A74 62fdfc486d1e VCVTTPD2DQS ymm3, zmmword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8256,11 +9199,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -00000000000009C6 62fdfc086dde VCVTTPD2DQS xmm3, xmm6 +0000000000000A7A 62fdfc086dde VCVTTPD2DQS xmm3, xmm6 DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8274,11 +9218,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -00000000000009CC 62fdfc286dde VCVTTPD2DQS xmm3, ymm6 +0000000000000A80 62fdfc286dde VCVTTPD2DQS xmm3, ymm6 DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8292,11 +9237,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -00000000000009D2 62fdfc486dde VCVTTPD2DQS ymm3, zmm6 +0000000000000A86 62fdfc486dde VCVTTPD2DQS ymm3, zmm6 DSIZE: 64, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8310,11 +9256,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -00000000000009D8 62fdfc186d1e VCVTTPD2DQS xmm3, qword ptr [r22]{1to2} +0000000000000A8C 62fdfc186d1e VCVTTPD2DQS xmm3, qword ptr [r22]{1to2} DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8330,11 +9277,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 8 bytes element 2 times -00000000000009DE 62fdfc386d1e VCVTTPD2DQS xmm3, qword ptr [r22]{1to4} +0000000000000A92 62fdfc386d1e VCVTTPD2DQS xmm3, qword ptr [r22]{1to4} DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8350,11 +9298,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 8 bytes element 4 times -00000000000009E4 62fdfc586d1e VCVTTPD2DQS ymm3, qword ptr [r22]{1to8} +0000000000000A98 62fdfc586d1e VCVTTPD2DQS ymm3, qword ptr [r22]{1to8} DSIZE: 64, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8370,11 +9319,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 8 bytes element 8 times -00000000000009EA 62fdfc0f6d1e VCVTTPD2DQS xmm3{k7}, xmmword ptr [r22] +0000000000000A9E 62fdfc0f6d1e VCVTTPD2DQS xmm3{k7}, xmmword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8390,11 +9340,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -00000000000009F0 62fdfc2f6d1e VCVTTPD2DQS xmm3{k7}, ymmword ptr [r22] +0000000000000AA4 62fdfc2f6d1e VCVTTPD2DQS xmm3{k7}, ymmword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8410,11 +9361,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -00000000000009F6 62fdfc4f6d1e VCVTTPD2DQS ymm3{k7}, zmmword ptr [r22] +0000000000000AAA 62fdfc4f6d1e VCVTTPD2DQS ymm3{k7}, zmmword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8430,11 +9382,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -00000000000009FC 62fdfc8f6d1e VCVTTPD2DQS xmm3{k7}{z}, xmmword ptr [r22] +0000000000000AB0 62fdfc8f6d1e VCVTTPD2DQS xmm3{k7}{z}, xmmword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8451,11 +9404,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000A02 62fdfcaf6d1e VCVTTPD2DQS xmm3{k7}{z}, ymmword ptr [r22] +0000000000000AB6 62fdfcaf6d1e VCVTTPD2DQS xmm3{k7}{z}, ymmword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8472,11 +9426,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000000A08 62fdfccf6d1e VCVTTPD2DQS ymm3{k7}{z}, zmmword ptr [r22] +0000000000000ABC 62fdfccf6d1e VCVTTPD2DQS ymm3{k7}{z}, zmmword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8493,11 +9448,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000000A0E 62fdfc186dde VCVTTPD2DQS ymm3, zmm6, {sae} +0000000000000AC2 62fdfc186dde VCVTTPD2DQS ymm3, zmm6, {sae} DSIZE: 64, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8511,11 +9467,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000A14 62fdfc386dde VCVTTPD2DQS ymm3, zmm6, {sae} +0000000000000AC8 62fdfc386dde VCVTTPD2DQS ymm3, zmm6, {sae} DSIZE: 64, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8529,11 +9486,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000A1A 62fdfc586dde VCVTTPD2DQS ymm3, zmm6, {sae} +0000000000000ACE 62fdfc586dde VCVTTPD2DQS ymm3, zmm6, {sae} DSIZE: 64, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8547,11 +9505,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000A20 62fdfc786dde VCVTTPD2DQS ymm3, zmm6, {sae} +0000000000000AD4 62fdfc786dde VCVTTPD2DQS ymm3, zmm6, {sae} DSIZE: 64, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8565,11 +9524,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000A26 62fdf8186dde VCVTTPD2DQS xmm3, ymm6, {sae} +0000000000000ADA 62fdf8186dde VCVTTPD2DQS xmm3, ymm6, {sae} DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8583,11 +9543,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000A2C 62fdf8386dde VCVTTPD2DQS xmm3, ymm6, {sae} +0000000000000AE0 62fdf8386dde VCVTTPD2DQS xmm3, ymm6, {sae} DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8601,11 +9562,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000A32 62fdf8586dde VCVTTPD2DQS xmm3, ymm6, {sae} +0000000000000AE6 62fdf8586dde VCVTTPD2DQS xmm3, ymm6, {sae} DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8619,11 +9581,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000A38 62fdf8786dde VCVTTPD2DQS xmm3, ymm6, {sae} +0000000000000AEC 62fdf8786dde VCVTTPD2DQS xmm3, ymm6, {sae} DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8637,11 +9600,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000A3E 62fdfd086d1e VCVTTPD2QQS xmm3, xmmword ptr [r22] +0000000000000AF2 62fdfd086d1e VCVTTPD2QQS xmm3, xmmword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8656,11 +9620,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000A44 62fdfd286d1e VCVTTPD2QQS ymm3, ymmword ptr [r22] +0000000000000AF8 62fdfd286d1e VCVTTPD2QQS ymm3, ymmword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8675,11 +9640,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000000A4A 62fdfd486d1e VCVTTPD2QQS zmm3, zmmword ptr [r22] +0000000000000AFE 62fdfd486d1e VCVTTPD2QQS zmm3, zmmword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8694,11 +9660,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000000A50 62fdfd086dde VCVTTPD2QQS xmm3, xmm6 +0000000000000B04 62fdfd086dde VCVTTPD2QQS xmm3, xmm6 DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8712,11 +9679,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000000A56 62fdfd286dde VCVTTPD2QQS ymm3, ymm6 +0000000000000B0A 62fdfd286dde VCVTTPD2QQS ymm3, ymm6 DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8730,11 +9698,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000A5C 62fdfd486dde VCVTTPD2QQS zmm3, zmm6 +0000000000000B10 62fdfd486dde VCVTTPD2QQS zmm3, zmm6 DSIZE: 64, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8748,11 +9717,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000A62 62fdfd186d1e VCVTTPD2QQS xmm3, qword ptr [r22]{1to2} +0000000000000B16 62fdfd186d1e VCVTTPD2QQS xmm3, qword ptr [r22]{1to2} DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8768,11 +9738,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 8 bytes element 2 times -0000000000000A68 62fdfd386d1e VCVTTPD2QQS ymm3, qword ptr [r22]{1to4} +0000000000000B1C 62fdfd386d1e VCVTTPD2QQS ymm3, qword ptr [r22]{1to4} DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8788,11 +9759,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 8 bytes element 4 times -0000000000000A6E 62fdfd586d1e VCVTTPD2QQS zmm3, qword ptr [r22]{1to8} +0000000000000B22 62fdfd586d1e VCVTTPD2QQS zmm3, qword ptr [r22]{1to8} DSIZE: 64, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8808,11 +9780,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 8 bytes element 8 times -0000000000000A74 62fdfd0f6d1e VCVTTPD2QQS xmm3{k7}, xmmword ptr [r22] +0000000000000B28 62fdfd0f6d1e VCVTTPD2QQS xmm3{k7}, xmmword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8828,11 +9801,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000A7A 62fdfd2f6d1e VCVTTPD2QQS ymm3{k7}, ymmword ptr [r22] +0000000000000B2E 62fdfd2f6d1e VCVTTPD2QQS ymm3{k7}, ymmword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8848,11 +9822,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000000A80 62fdfd4f6d1e VCVTTPD2QQS zmm3{k7}, zmmword ptr [r22] +0000000000000B34 62fdfd4f6d1e VCVTTPD2QQS zmm3{k7}, zmmword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8868,11 +9843,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000000A86 62fdfd8f6d1e VCVTTPD2QQS xmm3{k7}{z}, xmmword ptr [r22] +0000000000000B3A 62fdfd8f6d1e VCVTTPD2QQS xmm3{k7}{z}, xmmword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8889,11 +9865,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000A8C 62fdfdaf6d1e VCVTTPD2QQS ymm3{k7}{z}, ymmword ptr [r22] +0000000000000B40 62fdfdaf6d1e VCVTTPD2QQS ymm3{k7}{z}, ymmword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8910,11 +9887,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000000A92 62fdfdcf6d1e VCVTTPD2QQS zmm3{k7}{z}, zmmword ptr [r22] +0000000000000B46 62fdfdcf6d1e VCVTTPD2QQS zmm3{k7}{z}, zmmword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8931,11 +9909,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000000A98 62fdfd186dde VCVTTPD2QQS zmm3, zmm6, {sae} +0000000000000B4C 62fdfd186dde VCVTTPD2QQS zmm3, zmm6, {sae} DSIZE: 64, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8949,11 +9928,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000A9E 62fdfd386dde VCVTTPD2QQS zmm3, zmm6, {sae} +0000000000000B52 62fdfd386dde VCVTTPD2QQS zmm3, zmm6, {sae} DSIZE: 64, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8967,11 +9947,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000AA4 62fdfd586dde VCVTTPD2QQS zmm3, zmm6, {sae} +0000000000000B58 62fdfd586dde VCVTTPD2QQS zmm3, zmm6, {sae} DSIZE: 64, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8985,11 +9966,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000AAA 62fdfd786dde VCVTTPD2QQS zmm3, zmm6, {sae} +0000000000000B5E 62fdfd786dde VCVTTPD2QQS zmm3, zmm6, {sae} DSIZE: 64, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9003,11 +9985,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000AB0 62fdf9186dde VCVTTPD2QQS ymm3, ymm6, {sae} +0000000000000B64 62fdf9186dde VCVTTPD2QQS ymm3, ymm6, {sae} DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9021,11 +10004,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000AB6 62fdf9386dde VCVTTPD2QQS ymm3, ymm6, {sae} +0000000000000B6A 62fdf9386dde VCVTTPD2QQS ymm3, ymm6, {sae} DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9039,11 +10023,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000ABC 62fdf9586dde VCVTTPD2QQS ymm3, ymm6, {sae} +0000000000000B70 62fdf9586dde VCVTTPD2QQS ymm3, ymm6, {sae} DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9057,11 +10042,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000AC2 62fdf9786dde VCVTTPD2QQS ymm3, ymm6, {sae} +0000000000000B76 62fdf9786dde VCVTTPD2QQS ymm3, ymm6, {sae} DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9075,11 +10061,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000AC8 62fdfc086c1e VCVTTPD2UDQS xmm3, xmmword ptr [r22] +0000000000000B7C 62fdfc086c1e VCVTTPD2UDQS xmm3, xmmword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9094,11 +10081,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000ACE 62fdfc286c1e VCVTTPD2UDQS xmm3, ymmword ptr [r22] +0000000000000B82 62fdfc286c1e VCVTTPD2UDQS xmm3, ymmword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9113,11 +10101,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000000AD4 62fdfc486c1e VCVTTPD2UDQS ymm3, zmmword ptr [r22] +0000000000000B88 62fdfc486c1e VCVTTPD2UDQS ymm3, zmmword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9132,11 +10121,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000000ADA 62fdfc086cde VCVTTPD2UDQS xmm3, xmm6 +0000000000000B8E 62fdfc086cde VCVTTPD2UDQS xmm3, xmm6 DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9150,11 +10140,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000000AE0 62fdfc286cde VCVTTPD2UDQS xmm3, ymm6 +0000000000000B94 62fdfc286cde VCVTTPD2UDQS xmm3, ymm6 DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9168,11 +10159,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000AE6 62fdfc486cde VCVTTPD2UDQS ymm3, zmm6 +0000000000000B9A 62fdfc486cde VCVTTPD2UDQS ymm3, zmm6 DSIZE: 64, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9186,11 +10178,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000AEC 62fdfc186c1e VCVTTPD2UDQS xmm3, qword ptr [r22]{1to2} +0000000000000BA0 62fdfc186c1e VCVTTPD2UDQS xmm3, qword ptr [r22]{1to2} DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9206,11 +10199,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 8 bytes element 2 times -0000000000000AF2 62fdfc386c1e VCVTTPD2UDQS xmm3, qword ptr [r22]{1to4} +0000000000000BA6 62fdfc386c1e VCVTTPD2UDQS xmm3, qword ptr [r22]{1to4} DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9226,11 +10220,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 8 bytes element 4 times -0000000000000AF8 62fdfc586c1e VCVTTPD2UDQS ymm3, qword ptr [r22]{1to8} +0000000000000BAC 62fdfc586c1e VCVTTPD2UDQS ymm3, qword ptr [r22]{1to8} DSIZE: 64, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9246,11 +10241,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 8 bytes element 8 times -0000000000000AFE 62fdfc0f6c1e VCVTTPD2UDQS xmm3{k7}, xmmword ptr [r22] +0000000000000BB2 62fdfc0f6c1e VCVTTPD2UDQS xmm3{k7}, xmmword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9266,11 +10262,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000B04 62fdfc2f6c1e VCVTTPD2UDQS xmm3{k7}, ymmword ptr [r22] +0000000000000BB8 62fdfc2f6c1e VCVTTPD2UDQS xmm3{k7}, ymmword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9286,11 +10283,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000000B0A 62fdfc4f6c1e VCVTTPD2UDQS ymm3{k7}, zmmword ptr [r22] +0000000000000BBE 62fdfc4f6c1e VCVTTPD2UDQS ymm3{k7}, zmmword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9306,11 +10304,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000000B10 62fdfc8f6c1e VCVTTPD2UDQS xmm3{k7}{z}, xmmword ptr [r22] +0000000000000BC4 62fdfc8f6c1e VCVTTPD2UDQS xmm3{k7}{z}, xmmword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9327,11 +10326,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000B16 62fdfcaf6c1e VCVTTPD2UDQS xmm3{k7}{z}, ymmword ptr [r22] +0000000000000BCA 62fdfcaf6c1e VCVTTPD2UDQS xmm3{k7}{z}, ymmword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9348,11 +10348,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000000B1C 62fdfccf6c1e VCVTTPD2UDQS ymm3{k7}{z}, zmmword ptr [r22] +0000000000000BD0 62fdfccf6c1e VCVTTPD2UDQS ymm3{k7}{z}, zmmword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9369,11 +10370,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000000B22 62fdfc186cde VCVTTPD2UDQS ymm3, zmm6, {sae} +0000000000000BD6 62fdfc186cde VCVTTPD2UDQS ymm3, zmm6, {sae} DSIZE: 64, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9387,11 +10389,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000B28 62fdfc386cde VCVTTPD2UDQS ymm3, zmm6, {sae} +0000000000000BDC 62fdfc386cde VCVTTPD2UDQS ymm3, zmm6, {sae} DSIZE: 64, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9405,11 +10408,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000B2E 62fdfc586cde VCVTTPD2UDQS ymm3, zmm6, {sae} +0000000000000BE2 62fdfc586cde VCVTTPD2UDQS ymm3, zmm6, {sae} DSIZE: 64, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9423,11 +10427,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000B34 62fdfc786cde VCVTTPD2UDQS ymm3, zmm6, {sae} +0000000000000BE8 62fdfc786cde VCVTTPD2UDQS ymm3, zmm6, {sae} DSIZE: 64, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9441,11 +10446,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000B3A 62fdf8186cde VCVTTPD2UDQS xmm3, ymm6, {sae} +0000000000000BEE 62fdf8186cde VCVTTPD2UDQS xmm3, ymm6, {sae} DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9459,11 +10465,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000B40 62fdf8386cde VCVTTPD2UDQS xmm3, ymm6, {sae} +0000000000000BF4 62fdf8386cde VCVTTPD2UDQS xmm3, ymm6, {sae} DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9477,11 +10484,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000B46 62fdf8586cde VCVTTPD2UDQS xmm3, ymm6, {sae} +0000000000000BFA 62fdf8586cde VCVTTPD2UDQS xmm3, ymm6, {sae} DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9495,11 +10503,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000B4C 62fdf8786cde VCVTTPD2UDQS xmm3, ymm6, {sae} +0000000000000C00 62fdf8786cde VCVTTPD2UDQS xmm3, ymm6, {sae} DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9513,11 +10522,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000B52 62fdfd086c1e VCVTTPD2UQQS xmm3, xmmword ptr [r22] +0000000000000C06 62fdfd086c1e VCVTTPD2UQQS xmm3, xmmword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9532,11 +10542,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000B58 62fdfd286c1e VCVTTPD2UQQS ymm3, ymmword ptr [r22] +0000000000000C0C 62fdfd286c1e VCVTTPD2UQQS ymm3, ymmword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9551,11 +10562,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000000B5E 62fdfd486c1e VCVTTPD2UQQS zmm3, zmmword ptr [r22] +0000000000000C12 62fdfd486c1e VCVTTPD2UQQS zmm3, zmmword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9570,11 +10582,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000000B64 62fdfd086cde VCVTTPD2UQQS xmm3, xmm6 +0000000000000C18 62fdfd086cde VCVTTPD2UQQS xmm3, xmm6 DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9588,11 +10601,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000000B6A 62fdfd286cde VCVTTPD2UQQS ymm3, ymm6 +0000000000000C1E 62fdfd286cde VCVTTPD2UQQS ymm3, ymm6 DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9606,11 +10620,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000B70 62fdfd486cde VCVTTPD2UQQS zmm3, zmm6 +0000000000000C24 62fdfd486cde VCVTTPD2UQQS zmm3, zmm6 DSIZE: 64, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9624,11 +10639,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000B76 62fdfd186c1e VCVTTPD2UQQS xmm3, qword ptr [r22]{1to2} +0000000000000C2A 62fdfd186c1e VCVTTPD2UQQS xmm3, qword ptr [r22]{1to2} DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9644,11 +10660,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 8 bytes element 2 times -0000000000000B7C 62fdfd386c1e VCVTTPD2UQQS ymm3, qword ptr [r22]{1to4} +0000000000000C30 62fdfd386c1e VCVTTPD2UQQS ymm3, qword ptr [r22]{1to4} DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9664,11 +10681,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 8 bytes element 4 times -0000000000000B82 62fdfd586c1e VCVTTPD2UQQS zmm3, qword ptr [r22]{1to8} +0000000000000C36 62fdfd586c1e VCVTTPD2UQQS zmm3, qword ptr [r22]{1to8} DSIZE: 64, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9684,11 +10702,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 8 bytes element 8 times -0000000000000B88 62fdfd0f6c1e VCVTTPD2UQQS xmm3{k7}, xmmword ptr [r22] +0000000000000C3C 62fdfd0f6c1e VCVTTPD2UQQS xmm3{k7}, xmmword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9704,11 +10723,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000B8E 62fdfd2f6c1e VCVTTPD2UQQS ymm3{k7}, ymmword ptr [r22] +0000000000000C42 62fdfd2f6c1e VCVTTPD2UQQS ymm3{k7}, ymmword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9724,11 +10744,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000000B94 62fdfd4f6c1e VCVTTPD2UQQS zmm3{k7}, zmmword ptr [r22] +0000000000000C48 62fdfd4f6c1e VCVTTPD2UQQS zmm3{k7}, zmmword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9744,11 +10765,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000000B9A 62fdfd8f6c1e VCVTTPD2UQQS xmm3{k7}{z}, xmmword ptr [r22] +0000000000000C4E 62fdfd8f6c1e VCVTTPD2UQQS xmm3{k7}{z}, xmmword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9765,11 +10787,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000BA0 62fdfdaf6c1e VCVTTPD2UQQS ymm3{k7}{z}, ymmword ptr [r22] +0000000000000C54 62fdfdaf6c1e VCVTTPD2UQQS ymm3{k7}{z}, ymmword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9786,11 +10809,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000000BA6 62fdfdcf6c1e VCVTTPD2UQQS zmm3{k7}{z}, zmmword ptr [r22] +0000000000000C5A 62fdfdcf6c1e VCVTTPD2UQQS zmm3{k7}{z}, zmmword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9807,11 +10831,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000000BAC 62fdfd186cde VCVTTPD2UQQS zmm3, zmm6, {sae} +0000000000000C60 62fdfd186cde VCVTTPD2UQQS zmm3, zmm6, {sae} DSIZE: 64, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9825,11 +10850,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000BB2 62fdfd386cde VCVTTPD2UQQS zmm3, zmm6, {sae} +0000000000000C66 62fdfd386cde VCVTTPD2UQQS zmm3, zmm6, {sae} DSIZE: 64, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9843,11 +10869,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000BB8 62fdfd586cde VCVTTPD2UQQS zmm3, zmm6, {sae} +0000000000000C6C 62fdfd586cde VCVTTPD2UQQS zmm3, zmm6, {sae} DSIZE: 64, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9861,11 +10888,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000BBE 62fdfd786cde VCVTTPD2UQQS zmm3, zmm6, {sae} +0000000000000C72 62fdfd786cde VCVTTPD2UQQS zmm3, zmm6, {sae} DSIZE: 64, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9879,11 +10907,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000BC4 62fdf9186cde VCVTTPD2UQQS ymm3, ymm6, {sae} +0000000000000C78 62fdf9186cde VCVTTPD2UQQS ymm3, ymm6, {sae} DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9897,11 +10926,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000BCA 62fdf9386cde VCVTTPD2UQQS ymm3, ymm6, {sae} +0000000000000C7E 62fdf9386cde VCVTTPD2UQQS ymm3, ymm6, {sae} DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9915,11 +10945,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000BD0 62fdf9586cde VCVTTPD2UQQS ymm3, ymm6, {sae} +0000000000000C84 62fdf9586cde VCVTTPD2UQQS ymm3, ymm6, {sae} DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9933,11 +10964,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000BD6 62fdf9786cde VCVTTPD2UQQS ymm3, ymm6, {sae} +0000000000000C8A 62fdf9786cde VCVTTPD2UQQS ymm3, ymm6, {sae} DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9951,11 +10983,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000BDC 62fd7c08681e VCVTTPH2IBS xmm3, xmmword ptr [r22] +0000000000000C90 62fd7c08681e VCVTTPH2IBS xmm3, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9970,11 +11003,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000BE2 62fd7c28681e VCVTTPH2IBS ymm3, ymmword ptr [r22] +0000000000000C96 62fd7c28681e VCVTTPH2IBS ymm3, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9989,11 +11023,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000000BE8 62fd7c48681e VCVTTPH2IBS zmm3, zmmword ptr [r22] +0000000000000C9C 62fd7c48681e VCVTTPH2IBS zmm3, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10008,11 +11043,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000000BEE 62fd7c0868de VCVTTPH2IBS xmm3, xmm6 +0000000000000CA2 62fd7c0868de VCVTTPH2IBS xmm3, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10026,11 +11062,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000000BF4 62fd7c2868de VCVTTPH2IBS ymm3, ymm6 +0000000000000CA8 62fd7c2868de VCVTTPH2IBS ymm3, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10044,11 +11081,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000BFA 62fd7c4868de VCVTTPH2IBS zmm3, zmm6 +0000000000000CAE 62fd7c4868de VCVTTPH2IBS zmm3, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10062,11 +11100,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000C00 62fd7c18681e VCVTTPH2IBS xmm3, word ptr [r22]{1to8} +0000000000000CB4 62fd7c18681e VCVTTPH2IBS xmm3, word ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10082,11 +11121,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 8 times -0000000000000C06 62fd7c38681e VCVTTPH2IBS ymm3, word ptr [r22]{1to16} +0000000000000CBA 62fd7c38681e VCVTTPH2IBS ymm3, word ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10102,11 +11142,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 16 times -0000000000000C0C 62fd7c58681e VCVTTPH2IBS zmm3, word ptr [r22]{1to32} +0000000000000CC0 62fd7c58681e VCVTTPH2IBS zmm3, word ptr [r22]{1to32} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10122,11 +11163,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 32 times -0000000000000C12 62fd7c0f681e VCVTTPH2IBS xmm3{k7}, xmmword ptr [r22] +0000000000000CC6 62fd7c0f681e VCVTTPH2IBS xmm3{k7}, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10142,11 +11184,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000C18 62fd7c2f681e VCVTTPH2IBS ymm3{k7}, ymmword ptr [r22] +0000000000000CCC 62fd7c2f681e VCVTTPH2IBS ymm3{k7}, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10162,11 +11205,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000000C1E 62fd7c4f681e VCVTTPH2IBS zmm3{k7}, zmmword ptr [r22] +0000000000000CD2 62fd7c4f681e VCVTTPH2IBS zmm3{k7}, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10182,11 +11226,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000000C24 62fd7c8f681e VCVTTPH2IBS xmm3{k7}{z}, xmmword ptr [r22] +0000000000000CD8 62fd7c8f681e VCVTTPH2IBS xmm3{k7}{z}, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10203,11 +11248,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000C2A 62fd7caf681e VCVTTPH2IBS ymm3{k7}{z}, ymmword ptr [r22] +0000000000000CDE 62fd7caf681e VCVTTPH2IBS ymm3{k7}{z}, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10224,11 +11270,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000000C30 62fd7ccf681e VCVTTPH2IBS zmm3{k7}{z}, zmmword ptr [r22] +0000000000000CE4 62fd7ccf681e VCVTTPH2IBS zmm3{k7}{z}, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10245,11 +11292,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000000C36 62fd7c1868de VCVTTPH2IBS zmm3, zmm6, {sae} +0000000000000CEA 62fd7c1868de VCVTTPH2IBS zmm3, zmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10263,11 +11311,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000C3C 62fd7c3868de VCVTTPH2IBS zmm3, zmm6, {sae} +0000000000000CF0 62fd7c3868de VCVTTPH2IBS zmm3, zmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10281,11 +11330,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000C42 62fd7c5868de VCVTTPH2IBS zmm3, zmm6, {sae} +0000000000000CF6 62fd7c5868de VCVTTPH2IBS zmm3, zmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10299,11 +11349,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000C48 62fd7c7868de VCVTTPH2IBS zmm3, zmm6, {sae} +0000000000000CFC 62fd7c7868de VCVTTPH2IBS zmm3, zmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10317,11 +11368,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000C4E 62fd781868de VCVTTPH2IBS ymm3, ymm6, {sae} +0000000000000D02 62fd781868de VCVTTPH2IBS ymm3, ymm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10335,11 +11387,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000C54 62fd783868de VCVTTPH2IBS ymm3, ymm6, {sae} +0000000000000D08 62fd783868de VCVTTPH2IBS ymm3, ymm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10353,11 +11406,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000C5A 62fd785868de VCVTTPH2IBS ymm3, ymm6, {sae} +0000000000000D0E 62fd785868de VCVTTPH2IBS ymm3, ymm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10371,11 +11425,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000C60 62fd787868de VCVTTPH2IBS ymm3, ymm6, {sae} +0000000000000D14 62fd787868de VCVTTPH2IBS ymm3, ymm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10389,11 +11444,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000C66 62fd7c086a1e VCVTTPH2IUBS xmm3, xmmword ptr [r22] +0000000000000D1A 62fd7c086a1e VCVTTPH2IUBS xmm3, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10408,11 +11464,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000C6C 62fd7c286a1e VCVTTPH2IUBS ymm3, ymmword ptr [r22] +0000000000000D20 62fd7c286a1e VCVTTPH2IUBS ymm3, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10427,11 +11484,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000000C72 62fd7c486a1e VCVTTPH2IUBS zmm3, zmmword ptr [r22] +0000000000000D26 62fd7c486a1e VCVTTPH2IUBS zmm3, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10446,11 +11504,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000000C78 62fd7c086ade VCVTTPH2IUBS xmm3, xmm6 +0000000000000D2C 62fd7c086ade VCVTTPH2IUBS xmm3, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10464,11 +11523,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000000C7E 62fd7c286ade VCVTTPH2IUBS ymm3, ymm6 +0000000000000D32 62fd7c286ade VCVTTPH2IUBS ymm3, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10482,11 +11542,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000C84 62fd7c486ade VCVTTPH2IUBS zmm3, zmm6 +0000000000000D38 62fd7c486ade VCVTTPH2IUBS zmm3, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10500,11 +11561,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000C8A 62fd7c186a1e VCVTTPH2IUBS xmm3, word ptr [r22]{1to8} +0000000000000D3E 62fd7c186a1e VCVTTPH2IUBS xmm3, word ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10520,11 +11582,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 8 times -0000000000000C90 62fd7c386a1e VCVTTPH2IUBS ymm3, word ptr [r22]{1to16} +0000000000000D44 62fd7c386a1e VCVTTPH2IUBS ymm3, word ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10540,11 +11603,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 16 times -0000000000000C96 62fd7c586a1e VCVTTPH2IUBS zmm3, word ptr [r22]{1to32} +0000000000000D4A 62fd7c586a1e VCVTTPH2IUBS zmm3, word ptr [r22]{1to32} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10560,11 +11624,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 32 times -0000000000000C9C 62fd7c0f6a1e VCVTTPH2IUBS xmm3{k7}, xmmword ptr [r22] +0000000000000D50 62fd7c0f6a1e VCVTTPH2IUBS xmm3{k7}, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10580,11 +11645,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000CA2 62fd7c2f6a1e VCVTTPH2IUBS ymm3{k7}, ymmword ptr [r22] +0000000000000D56 62fd7c2f6a1e VCVTTPH2IUBS ymm3{k7}, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10600,11 +11666,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000000CA8 62fd7c4f6a1e VCVTTPH2IUBS zmm3{k7}, zmmword ptr [r22] +0000000000000D5C 62fd7c4f6a1e VCVTTPH2IUBS zmm3{k7}, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10620,11 +11687,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000000CAE 62fd7c8f6a1e VCVTTPH2IUBS xmm3{k7}{z}, xmmword ptr [r22] +0000000000000D62 62fd7c8f6a1e VCVTTPH2IUBS xmm3{k7}{z}, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10641,11 +11709,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000CB4 62fd7caf6a1e VCVTTPH2IUBS ymm3{k7}{z}, ymmword ptr [r22] +0000000000000D68 62fd7caf6a1e VCVTTPH2IUBS ymm3{k7}{z}, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10662,11 +11731,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000000CBA 62fd7ccf6a1e VCVTTPH2IUBS zmm3{k7}{z}, zmmword ptr [r22] +0000000000000D6E 62fd7ccf6a1e VCVTTPH2IUBS zmm3{k7}{z}, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10683,11 +11753,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000000CC0 62fd7c186ade VCVTTPH2IUBS zmm3, zmm6, {sae} +0000000000000D74 62fd7c186ade VCVTTPH2IUBS zmm3, zmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10701,11 +11772,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000CC6 62fd7c386ade VCVTTPH2IUBS zmm3, zmm6, {sae} +0000000000000D7A 62fd7c386ade VCVTTPH2IUBS zmm3, zmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10719,11 +11791,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000CCC 62fd7c586ade VCVTTPH2IUBS zmm3, zmm6, {sae} +0000000000000D80 62fd7c586ade VCVTTPH2IUBS zmm3, zmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10737,11 +11810,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000CD2 62fd7c786ade VCVTTPH2IUBS zmm3, zmm6, {sae} +0000000000000D86 62fd7c786ade VCVTTPH2IUBS zmm3, zmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10755,11 +11829,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000CD8 62fd78186ade VCVTTPH2IUBS ymm3, ymm6, {sae} +0000000000000D8C 62fd78186ade VCVTTPH2IUBS ymm3, ymm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10773,11 +11848,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000CDE 62fd78386ade VCVTTPH2IUBS ymm3, ymm6, {sae} +0000000000000D92 62fd78386ade VCVTTPH2IUBS ymm3, ymm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10791,11 +11867,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000CE4 62fd78586ade VCVTTPH2IUBS ymm3, ymm6, {sae} +0000000000000D98 62fd78586ade VCVTTPH2IUBS ymm3, ymm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10809,11 +11886,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000CEA 62fd78786ade VCVTTPH2IUBS ymm3, ymm6, {sae} +0000000000000D9E 62fd78786ade VCVTTPH2IUBS ymm3, ymm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10827,11 +11905,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000CF0 62fd7c086d1e VCVTTPS2DQS xmm3, xmmword ptr [r22] +0000000000000DA4 62fd7c086d1e VCVTTPS2DQS xmm3, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10846,11 +11925,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000CF6 62fd7c286d1e VCVTTPS2DQS ymm3, ymmword ptr [r22] +0000000000000DAA 62fd7c286d1e VCVTTPS2DQS ymm3, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10865,11 +11945,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000000CFC 62fd7c486d1e VCVTTPS2DQS zmm3, zmmword ptr [r22] +0000000000000DB0 62fd7c486d1e VCVTTPS2DQS zmm3, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10884,11 +11965,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000000D02 62fd7c086dde VCVTTPS2DQS xmm3, xmm6 +0000000000000DB6 62fd7c086dde VCVTTPS2DQS xmm3, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10902,11 +11984,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000000D08 62fd7c286dde VCVTTPS2DQS ymm3, ymm6 +0000000000000DBC 62fd7c286dde VCVTTPS2DQS ymm3, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10920,11 +12003,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000D0E 62fd7c486dde VCVTTPS2DQS zmm3, zmm6 +0000000000000DC2 62fd7c486dde VCVTTPS2DQS zmm3, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10938,11 +12022,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000D14 62fd7c186d1e VCVTTPS2DQS xmm3, dword ptr [r22]{1to4} +0000000000000DC8 62fd7c186d1e VCVTTPS2DQS xmm3, dword ptr [r22]{1to4} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10958,11 +12043,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 4 bytes element 4 times -0000000000000D1A 62fd7c386d1e VCVTTPS2DQS ymm3, dword ptr [r22]{1to8} +0000000000000DCE 62fd7c386d1e VCVTTPS2DQS ymm3, dword ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10978,11 +12064,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 4 bytes element 8 times -0000000000000D20 62fd7c586d1e VCVTTPS2DQS zmm3, dword ptr [r22]{1to16} +0000000000000DD4 62fd7c586d1e VCVTTPS2DQS zmm3, dword ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10998,11 +12085,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 4 bytes element 16 times -0000000000000D26 62fd7c0f6d1e VCVTTPS2DQS xmm3{k7}, xmmword ptr [r22] +0000000000000DDA 62fd7c0f6d1e VCVTTPS2DQS xmm3{k7}, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11018,11 +12106,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000D2C 62fd7c2f6d1e VCVTTPS2DQS ymm3{k7}, ymmword ptr [r22] +0000000000000DE0 62fd7c2f6d1e VCVTTPS2DQS ymm3{k7}, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11038,11 +12127,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000000D32 62fd7c4f6d1e VCVTTPS2DQS zmm3{k7}, zmmword ptr [r22] +0000000000000DE6 62fd7c4f6d1e VCVTTPS2DQS zmm3{k7}, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11058,11 +12148,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000000D38 62fd7c8f6d1e VCVTTPS2DQS xmm3{k7}{z}, xmmword ptr [r22] +0000000000000DEC 62fd7c8f6d1e VCVTTPS2DQS xmm3{k7}{z}, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11079,11 +12170,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000D3E 62fd7caf6d1e VCVTTPS2DQS ymm3{k7}{z}, ymmword ptr [r22] +0000000000000DF2 62fd7caf6d1e VCVTTPS2DQS ymm3{k7}{z}, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11100,11 +12192,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000000D44 62fd7ccf6d1e VCVTTPS2DQS zmm3{k7}{z}, zmmword ptr [r22] +0000000000000DF8 62fd7ccf6d1e VCVTTPS2DQS zmm3{k7}{z}, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11121,11 +12214,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000000D4A 62fd7c186dde VCVTTPS2DQS zmm3, zmm6, {sae} +0000000000000DFE 62fd7c186dde VCVTTPS2DQS zmm3, zmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11139,11 +12233,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000D50 62fd7c386dde VCVTTPS2DQS zmm3, zmm6, {sae} +0000000000000E04 62fd7c386dde VCVTTPS2DQS zmm3, zmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11157,11 +12252,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000D56 62fd7c586dde VCVTTPS2DQS zmm3, zmm6, {sae} +0000000000000E0A 62fd7c586dde VCVTTPS2DQS zmm3, zmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11175,11 +12271,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000D5C 62fd7c786dde VCVTTPS2DQS zmm3, zmm6, {sae} +0000000000000E10 62fd7c786dde VCVTTPS2DQS zmm3, zmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11193,11 +12290,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000D62 62fd78186dde VCVTTPS2DQS ymm3, ymm6, {sae} +0000000000000E16 62fd78186dde VCVTTPS2DQS ymm3, ymm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11211,11 +12309,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000D68 62fd78386dde VCVTTPS2DQS ymm3, ymm6, {sae} +0000000000000E1C 62fd78386dde VCVTTPS2DQS ymm3, ymm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11229,11 +12328,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000D6E 62fd78586dde VCVTTPS2DQS ymm3, ymm6, {sae} +0000000000000E22 62fd78586dde VCVTTPS2DQS ymm3, ymm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11247,11 +12347,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000D74 62fd78786dde VCVTTPS2DQS ymm3, ymm6, {sae} +0000000000000E28 62fd78786dde VCVTTPS2DQS ymm3, ymm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11265,11 +12366,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000D7A 62fd7d08681e VCVTTPS2IBS xmm3, xmmword ptr [r22] +0000000000000E2E 62fd7d08681e VCVTTPS2IBS xmm3, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11284,11 +12386,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000D80 62fd7d28681e VCVTTPS2IBS ymm3, ymmword ptr [r22] +0000000000000E34 62fd7d28681e VCVTTPS2IBS ymm3, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11303,11 +12406,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000000D86 62fd7d48681e VCVTTPS2IBS zmm3, zmmword ptr [r22] +0000000000000E3A 62fd7d48681e VCVTTPS2IBS zmm3, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11322,11 +12426,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000000D8C 62fd7d0868de VCVTTPS2IBS xmm3, xmm6 +0000000000000E40 62fd7d0868de VCVTTPS2IBS xmm3, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11340,11 +12445,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000000D92 62fd7d2868de VCVTTPS2IBS ymm3, ymm6 +0000000000000E46 62fd7d2868de VCVTTPS2IBS ymm3, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11358,11 +12464,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000D98 62fd7d4868de VCVTTPS2IBS zmm3, zmm6 +0000000000000E4C 62fd7d4868de VCVTTPS2IBS zmm3, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11376,11 +12483,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000D9E 62fd7d18681e VCVTTPS2IBS xmm3, dword ptr [r22]{1to4} +0000000000000E52 62fd7d18681e VCVTTPS2IBS xmm3, dword ptr [r22]{1to4} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11396,11 +12504,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 4 bytes element 4 times -0000000000000DA4 62fd7d38681e VCVTTPS2IBS ymm3, dword ptr [r22]{1to8} +0000000000000E58 62fd7d38681e VCVTTPS2IBS ymm3, dword ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11416,11 +12525,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 4 bytes element 8 times -0000000000000DAA 62fd7d58681e VCVTTPS2IBS zmm3, dword ptr [r22]{1to16} +0000000000000E5E 62fd7d58681e VCVTTPS2IBS zmm3, dword ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11436,11 +12546,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 4 bytes element 16 times -0000000000000DB0 62fd7d0f681e VCVTTPS2IBS xmm3{k7}, xmmword ptr [r22] +0000000000000E64 62fd7d0f681e VCVTTPS2IBS xmm3{k7}, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11456,11 +12567,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000DB6 62fd7d2f681e VCVTTPS2IBS ymm3{k7}, ymmword ptr [r22] +0000000000000E6A 62fd7d2f681e VCVTTPS2IBS ymm3{k7}, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11476,11 +12588,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000000DBC 62fd7d4f681e VCVTTPS2IBS zmm3{k7}, zmmword ptr [r22] +0000000000000E70 62fd7d4f681e VCVTTPS2IBS zmm3{k7}, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11496,11 +12609,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000000DC2 62fd7d8f681e VCVTTPS2IBS xmm3{k7}{z}, xmmword ptr [r22] +0000000000000E76 62fd7d8f681e VCVTTPS2IBS xmm3{k7}{z}, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11517,11 +12631,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000DC8 62fd7daf681e VCVTTPS2IBS ymm3{k7}{z}, ymmword ptr [r22] +0000000000000E7C 62fd7daf681e VCVTTPS2IBS ymm3{k7}{z}, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11538,11 +12653,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000000DCE 62fd7dcf681e VCVTTPS2IBS zmm3{k7}{z}, zmmword ptr [r22] +0000000000000E82 62fd7dcf681e VCVTTPS2IBS zmm3{k7}{z}, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11559,11 +12675,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000000DD4 62fd7d1868de VCVTTPS2IBS zmm3, zmm6, {sae} +0000000000000E88 62fd7d1868de VCVTTPS2IBS zmm3, zmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11577,11 +12694,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000DDA 62fd7d3868de VCVTTPS2IBS zmm3, zmm6, {sae} +0000000000000E8E 62fd7d3868de VCVTTPS2IBS zmm3, zmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11595,11 +12713,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000DE0 62fd7d5868de VCVTTPS2IBS zmm3, zmm6, {sae} +0000000000000E94 62fd7d5868de VCVTTPS2IBS zmm3, zmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11613,11 +12732,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000DE6 62fd7d7868de VCVTTPS2IBS zmm3, zmm6, {sae} +0000000000000E9A 62fd7d7868de VCVTTPS2IBS zmm3, zmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11631,11 +12751,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000DEC 62fd791868de VCVTTPS2IBS ymm3, ymm6, {sae} +0000000000000EA0 62fd791868de VCVTTPS2IBS ymm3, ymm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11649,11 +12770,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000DF2 62fd793868de VCVTTPS2IBS ymm3, ymm6, {sae} +0000000000000EA6 62fd793868de VCVTTPS2IBS ymm3, ymm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11667,11 +12789,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000DF8 62fd795868de VCVTTPS2IBS ymm3, ymm6, {sae} +0000000000000EAC 62fd795868de VCVTTPS2IBS ymm3, ymm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11685,11 +12808,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000DFE 62fd797868de VCVTTPS2IBS ymm3, ymm6, {sae} +0000000000000EB2 62fd797868de VCVTTPS2IBS ymm3, ymm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11703,11 +12827,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000E04 62fd7d086a1e VCVTTPS2IUBS xmm3, xmmword ptr [r22] +0000000000000EB8 62fd7d086a1e VCVTTPS2IUBS xmm3, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11722,11 +12847,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000E0A 62fd7d286a1e VCVTTPS2IUBS ymm3, ymmword ptr [r22] +0000000000000EBE 62fd7d286a1e VCVTTPS2IUBS ymm3, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11741,11 +12867,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000000E10 62fd7d486a1e VCVTTPS2IUBS zmm3, zmmword ptr [r22] +0000000000000EC4 62fd7d486a1e VCVTTPS2IUBS zmm3, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11760,11 +12887,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000000E16 62fd7d086ade VCVTTPS2IUBS xmm3, xmm6 +0000000000000ECA 62fd7d086ade VCVTTPS2IUBS xmm3, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11778,11 +12906,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000000E1C 62fd7d286ade VCVTTPS2IUBS ymm3, ymm6 +0000000000000ED0 62fd7d286ade VCVTTPS2IUBS ymm3, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11796,11 +12925,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000E22 62fd7d486ade VCVTTPS2IUBS zmm3, zmm6 +0000000000000ED6 62fd7d486ade VCVTTPS2IUBS zmm3, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11814,11 +12944,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000E28 62fd7d186a1e VCVTTPS2IUBS xmm3, dword ptr [r22]{1to4} +0000000000000EDC 62fd7d186a1e VCVTTPS2IUBS xmm3, dword ptr [r22]{1to4} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11834,11 +12965,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 4 bytes element 4 times -0000000000000E2E 62fd7d386a1e VCVTTPS2IUBS ymm3, dword ptr [r22]{1to8} +0000000000000EE2 62fd7d386a1e VCVTTPS2IUBS ymm3, dword ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11854,11 +12986,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 4 bytes element 8 times -0000000000000E34 62fd7d586a1e VCVTTPS2IUBS zmm3, dword ptr [r22]{1to16} +0000000000000EE8 62fd7d586a1e VCVTTPS2IUBS zmm3, dword ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11874,11 +13007,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 4 bytes element 16 times -0000000000000E3A 62fd7d0f6a1e VCVTTPS2IUBS xmm3{k7}, xmmword ptr [r22] +0000000000000EEE 62fd7d0f6a1e VCVTTPS2IUBS xmm3{k7}, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11894,11 +13028,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000E40 62fd7d2f6a1e VCVTTPS2IUBS ymm3{k7}, ymmword ptr [r22] +0000000000000EF4 62fd7d2f6a1e VCVTTPS2IUBS ymm3{k7}, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11914,11 +13049,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000000E46 62fd7d4f6a1e VCVTTPS2IUBS zmm3{k7}, zmmword ptr [r22] +0000000000000EFA 62fd7d4f6a1e VCVTTPS2IUBS zmm3{k7}, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11934,11 +13070,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000000E4C 62fd7d8f6a1e VCVTTPS2IUBS xmm3{k7}{z}, xmmword ptr [r22] +0000000000000F00 62fd7d8f6a1e VCVTTPS2IUBS xmm3{k7}{z}, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11955,11 +13092,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000E52 62fd7daf6a1e VCVTTPS2IUBS ymm3{k7}{z}, ymmword ptr [r22] +0000000000000F06 62fd7daf6a1e VCVTTPS2IUBS ymm3{k7}{z}, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11976,11 +13114,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000000E58 62fd7dcf6a1e VCVTTPS2IUBS zmm3{k7}{z}, zmmword ptr [r22] +0000000000000F0C 62fd7dcf6a1e VCVTTPS2IUBS zmm3{k7}{z}, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11997,11 +13136,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000000E5E 62fd7d186ade VCVTTPS2IUBS zmm3, zmm6, {sae} +0000000000000F12 62fd7d186ade VCVTTPS2IUBS zmm3, zmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12015,11 +13155,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000E64 62fd7d386ade VCVTTPS2IUBS zmm3, zmm6, {sae} +0000000000000F18 62fd7d386ade VCVTTPS2IUBS zmm3, zmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12033,11 +13174,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000E6A 62fd7d586ade VCVTTPS2IUBS zmm3, zmm6, {sae} +0000000000000F1E 62fd7d586ade VCVTTPS2IUBS zmm3, zmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12051,11 +13193,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000E70 62fd7d786ade VCVTTPS2IUBS zmm3, zmm6, {sae} +0000000000000F24 62fd7d786ade VCVTTPS2IUBS zmm3, zmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12069,11 +13212,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000E76 62fd79186ade VCVTTPS2IUBS ymm3, ymm6, {sae} +0000000000000F2A 62fd79186ade VCVTTPS2IUBS ymm3, ymm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12087,11 +13231,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000E7C 62fd79386ade VCVTTPS2IUBS ymm3, ymm6, {sae} +0000000000000F30 62fd79386ade VCVTTPS2IUBS ymm3, ymm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12105,11 +13250,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000E82 62fd79586ade VCVTTPS2IUBS ymm3, ymm6, {sae} +0000000000000F36 62fd79586ade VCVTTPS2IUBS ymm3, ymm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12123,11 +13269,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000E88 62fd79786ade VCVTTPS2IUBS ymm3, ymm6, {sae} +0000000000000F3C 62fd79786ade VCVTTPS2IUBS ymm3, ymm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12141,11 +13288,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000E8E 62fd7d086d1e VCVTTPS2QQS xmm3, qword ptr [r22] +0000000000000F42 62fd7d086d1e VCVTTPS2QQS xmm3, qword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12160,11 +13308,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -0000000000000E94 62fd7d286d1e VCVTTPS2QQS ymm3, xmmword ptr [r22] +0000000000000F48 62fd7d286d1e VCVTTPS2QQS ymm3, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12179,11 +13328,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000E9A 62fd7d486d1e VCVTTPS2QQS zmm3, ymmword ptr [r22] +0000000000000F4E 62fd7d486d1e VCVTTPS2QQS zmm3, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12198,11 +13348,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000000EA0 62fd7d086dde VCVTTPS2QQS xmm3, xmm6 +0000000000000F54 62fd7d086dde VCVTTPS2QQS xmm3, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12216,11 +13367,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000000EA6 62fd7d286dde VCVTTPS2QQS ymm3, xmm6 +0000000000000F5A 62fd7d286dde VCVTTPS2QQS ymm3, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12234,11 +13386,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000000EAC 62fd7d486dde VCVTTPS2QQS zmm3, ymm6 +0000000000000F60 62fd7d486dde VCVTTPS2QQS zmm3, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12252,11 +13405,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000EB2 62fd7d186d1e VCVTTPS2QQS xmm3, dword ptr [r22]{1to2} +0000000000000F66 62fd7d186d1e VCVTTPS2QQS xmm3, dword ptr [r22]{1to2} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12272,11 +13426,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 4 bytes element 2 times -0000000000000EB8 62fd7d386d1e VCVTTPS2QQS ymm3, dword ptr [r22]{1to4} +0000000000000F6C 62fd7d386d1e VCVTTPS2QQS ymm3, dword ptr [r22]{1to4} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12292,11 +13447,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 4 bytes element 4 times -0000000000000EBE 62fd7d586d1e VCVTTPS2QQS zmm3, dword ptr [r22]{1to8} +0000000000000F72 62fd7d586d1e VCVTTPS2QQS zmm3, dword ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12312,11 +13468,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 4 bytes element 8 times -0000000000000EC4 62fd7d0f6d1e VCVTTPS2QQS xmm3{k7}, qword ptr [r22] +0000000000000F78 62fd7d0f6d1e VCVTTPS2QQS xmm3{k7}, qword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12332,11 +13489,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -0000000000000ECA 62fd7d2f6d1e VCVTTPS2QQS ymm3{k7}, xmmword ptr [r22] +0000000000000F7E 62fd7d2f6d1e VCVTTPS2QQS ymm3{k7}, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12352,11 +13510,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000ED0 62fd7d4f6d1e VCVTTPS2QQS zmm3{k7}, ymmword ptr [r22] +0000000000000F84 62fd7d4f6d1e VCVTTPS2QQS zmm3{k7}, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12372,11 +13531,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000000ED6 62fd7d8f6d1e VCVTTPS2QQS xmm3{k7}{z}, qword ptr [r22] +0000000000000F8A 62fd7d8f6d1e VCVTTPS2QQS xmm3{k7}{z}, qword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12393,11 +13553,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -0000000000000EDC 62fd7daf6d1e VCVTTPS2QQS ymm3{k7}{z}, xmmword ptr [r22] +0000000000000F90 62fd7daf6d1e VCVTTPS2QQS ymm3{k7}{z}, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12414,11 +13575,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000EE2 62fd7dcf6d1e VCVTTPS2QQS zmm3{k7}{z}, ymmword ptr [r22] +0000000000000F96 62fd7dcf6d1e VCVTTPS2QQS zmm3{k7}{z}, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12435,11 +13597,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000000EE8 62fd7d186dde VCVTTPS2QQS zmm3, ymm6, {sae} +0000000000000F9C 62fd7d186dde VCVTTPS2QQS zmm3, ymm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12453,11 +13616,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000EEE 62fd7d386dde VCVTTPS2QQS zmm3, ymm6, {sae} +0000000000000FA2 62fd7d386dde VCVTTPS2QQS zmm3, ymm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12471,11 +13635,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000EF4 62fd7d586dde VCVTTPS2QQS zmm3, ymm6, {sae} +0000000000000FA8 62fd7d586dde VCVTTPS2QQS zmm3, ymm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12489,11 +13654,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000EFA 62fd7d786dde VCVTTPS2QQS zmm3, ymm6, {sae} +0000000000000FAE 62fd7d786dde VCVTTPS2QQS zmm3, ymm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12507,11 +13673,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000F00 62fd79186dde VCVTTPS2QQS ymm3, xmm6, {sae} +0000000000000FB4 62fd79186dde VCVTTPS2QQS ymm3, xmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12525,11 +13692,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000000F06 62fd79386dde VCVTTPS2QQS ymm3, xmm6, {sae} +0000000000000FBA 62fd79386dde VCVTTPS2QQS ymm3, xmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12543,11 +13711,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000000F0C 62fd79586dde VCVTTPS2QQS ymm3, xmm6, {sae} +0000000000000FC0 62fd79586dde VCVTTPS2QQS ymm3, xmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12561,11 +13730,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000000F12 62fd79786dde VCVTTPS2QQS ymm3, xmm6, {sae} +0000000000000FC6 62fd79786dde VCVTTPS2QQS ymm3, xmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12579,11 +13749,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000000F18 62fd7c086c1e VCVTTPS2UDQS xmm3, xmmword ptr [r22] +0000000000000FCC 62fd7c086c1e VCVTTPS2UDQS xmm3, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12598,11 +13769,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000F1E 62fd7c286c1e VCVTTPS2UDQS ymm3, ymmword ptr [r22] +0000000000000FD2 62fd7c286c1e VCVTTPS2UDQS ymm3, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12617,11 +13789,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000000F24 62fd7c486c1e VCVTTPS2UDQS zmm3, zmmword ptr [r22] +0000000000000FD8 62fd7c486c1e VCVTTPS2UDQS zmm3, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12636,11 +13809,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000000F2A 62fd7c086cde VCVTTPS2UDQS xmm3, xmm6 +0000000000000FDE 62fd7c086cde VCVTTPS2UDQS xmm3, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12654,11 +13828,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000000F30 62fd7c286cde VCVTTPS2UDQS ymm3, ymm6 +0000000000000FE4 62fd7c286cde VCVTTPS2UDQS ymm3, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12672,11 +13847,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000F36 62fd7c486cde VCVTTPS2UDQS zmm3, zmm6 +0000000000000FEA 62fd7c486cde VCVTTPS2UDQS zmm3, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12690,11 +13866,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000F3C 62fd7c186c1e VCVTTPS2UDQS xmm3, dword ptr [r22]{1to4} +0000000000000FF0 62fd7c186c1e VCVTTPS2UDQS xmm3, dword ptr [r22]{1to4} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12710,11 +13887,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 4 bytes element 4 times -0000000000000F42 62fd7c386c1e VCVTTPS2UDQS ymm3, dword ptr [r22]{1to8} +0000000000000FF6 62fd7c386c1e VCVTTPS2UDQS ymm3, dword ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12730,11 +13908,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 4 bytes element 8 times -0000000000000F48 62fd7c586c1e VCVTTPS2UDQS zmm3, dword ptr [r22]{1to16} +0000000000000FFC 62fd7c586c1e VCVTTPS2UDQS zmm3, dword ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12750,11 +13929,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 4 bytes element 16 times -0000000000000F4E 62fd7c0f6c1e VCVTTPS2UDQS xmm3{k7}, xmmword ptr [r22] +0000000000001002 62fd7c0f6c1e VCVTTPS2UDQS xmm3{k7}, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12770,11 +13950,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000F54 62fd7c2f6c1e VCVTTPS2UDQS ymm3{k7}, ymmword ptr [r22] +0000000000001008 62fd7c2f6c1e VCVTTPS2UDQS ymm3{k7}, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12790,11 +13971,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000000F5A 62fd7c4f6c1e VCVTTPS2UDQS zmm3{k7}, zmmword ptr [r22] +000000000000100E 62fd7c4f6c1e VCVTTPS2UDQS zmm3{k7}, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12810,11 +13992,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000000F60 62fd7c8f6c1e VCVTTPS2UDQS xmm3{k7}{z}, xmmword ptr [r22] +0000000000001014 62fd7c8f6c1e VCVTTPS2UDQS xmm3{k7}{z}, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12831,11 +14014,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000F66 62fd7caf6c1e VCVTTPS2UDQS ymm3{k7}{z}, ymmword ptr [r22] +000000000000101A 62fd7caf6c1e VCVTTPS2UDQS ymm3{k7}{z}, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12852,11 +14036,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000000F6C 62fd7ccf6c1e VCVTTPS2UDQS zmm3{k7}{z}, zmmword ptr [r22] +0000000000001020 62fd7ccf6c1e VCVTTPS2UDQS zmm3{k7}{z}, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12873,11 +14058,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000000F72 62fd7c186cde VCVTTPS2UDQS zmm3, zmm6, {sae} +0000000000001026 62fd7c186cde VCVTTPS2UDQS zmm3, zmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12891,11 +14077,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000F78 62fd7c386cde VCVTTPS2UDQS zmm3, zmm6, {sae} +000000000000102C 62fd7c386cde VCVTTPS2UDQS zmm3, zmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12909,11 +14096,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000F7E 62fd7c586cde VCVTTPS2UDQS zmm3, zmm6, {sae} +0000000000001032 62fd7c586cde VCVTTPS2UDQS zmm3, zmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12927,11 +14115,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000F84 62fd7c786cde VCVTTPS2UDQS zmm3, zmm6, {sae} +0000000000001038 62fd7c786cde VCVTTPS2UDQS zmm3, zmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12945,11 +14134,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000000F8A 62fd78186cde VCVTTPS2UDQS ymm3, ymm6, {sae} +000000000000103E 62fd78186cde VCVTTPS2UDQS ymm3, ymm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12963,11 +14153,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000F90 62fd78386cde VCVTTPS2UDQS ymm3, ymm6, {sae} +0000000000001044 62fd78386cde VCVTTPS2UDQS ymm3, ymm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12981,11 +14172,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000F96 62fd78586cde VCVTTPS2UDQS ymm3, ymm6, {sae} +000000000000104A 62fd78586cde VCVTTPS2UDQS ymm3, ymm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12999,11 +14191,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000F9C 62fd78786cde VCVTTPS2UDQS ymm3, ymm6, {sae} +0000000000001050 62fd78786cde VCVTTPS2UDQS ymm3, ymm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13017,11 +14210,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000FA2 62fd7d086c1e VCVTTPS2UQQS xmm3, qword ptr [r22] +0000000000001056 62fd7d086c1e VCVTTPS2UQQS xmm3, qword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13036,11 +14230,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -0000000000000FA8 62fd7d286c1e VCVTTPS2UQQS ymm3, xmmword ptr [r22] +000000000000105C 62fd7d286c1e VCVTTPS2UQQS ymm3, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13055,11 +14250,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000FAE 62fd7d486c1e VCVTTPS2UQQS zmm3, ymmword ptr [r22] +0000000000001062 62fd7d486c1e VCVTTPS2UQQS zmm3, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13074,11 +14270,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000000FB4 62fd7d086cde VCVTTPS2UQQS xmm3, xmm6 +0000000000001068 62fd7d086cde VCVTTPS2UQQS xmm3, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13092,11 +14289,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000000FBA 62fd7d286cde VCVTTPS2UQQS ymm3, xmm6 +000000000000106E 62fd7d286cde VCVTTPS2UQQS ymm3, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13110,11 +14308,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000000FC0 62fd7d486cde VCVTTPS2UQQS zmm3, ymm6 +0000000000001074 62fd7d486cde VCVTTPS2UQQS zmm3, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13128,11 +14327,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000000FC6 62fd7d186c1e VCVTTPS2UQQS xmm3, dword ptr [r22]{1to2} +000000000000107A 62fd7d186c1e VCVTTPS2UQQS xmm3, dword ptr [r22]{1to2} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13148,11 +14348,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 4 bytes element 2 times -0000000000000FCC 62fd7d386c1e VCVTTPS2UQQS ymm3, dword ptr [r22]{1to4} +0000000000001080 62fd7d386c1e VCVTTPS2UQQS ymm3, dword ptr [r22]{1to4} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13168,11 +14369,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 4 bytes element 4 times -0000000000000FD2 62fd7d586c1e VCVTTPS2UQQS zmm3, dword ptr [r22]{1to8} +0000000000001086 62fd7d586c1e VCVTTPS2UQQS zmm3, dword ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13188,11 +14390,12 @@ Segment: 3, Base: 22, Decorator: Broadcast 4 bytes element 8 times -0000000000000FD8 62fd7d0f6c1e VCVTTPS2UQQS xmm3{k7}, qword ptr [r22] +000000000000108C 62fd7d0f6c1e VCVTTPS2UQQS xmm3{k7}, qword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13208,11 +14411,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -0000000000000FDE 62fd7d2f6c1e VCVTTPS2UQQS ymm3{k7}, xmmword ptr [r22] +0000000000001092 62fd7d2f6c1e VCVTTPS2UQQS ymm3{k7}, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13228,11 +14432,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000FE4 62fd7d4f6c1e VCVTTPS2UQQS zmm3{k7}, ymmword ptr [r22] +0000000000001098 62fd7d4f6c1e VCVTTPS2UQQS zmm3{k7}, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13248,11 +14453,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000000FEA 62fd7d8f6c1e VCVTTPS2UQQS xmm3{k7}{z}, qword ptr [r22] +000000000000109E 62fd7d8f6c1e VCVTTPS2UQQS xmm3{k7}{z}, qword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13269,11 +14475,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -0000000000000FF0 62fd7daf6c1e VCVTTPS2UQQS ymm3{k7}{z}, xmmword ptr [r22] +00000000000010A4 62fd7daf6c1e VCVTTPS2UQQS ymm3{k7}{z}, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13290,11 +14497,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000000FF6 62fd7dcf6c1e VCVTTPS2UQQS zmm3{k7}{z}, ymmword ptr [r22] +00000000000010AA 62fd7dcf6c1e VCVTTPS2UQQS zmm3{k7}{z}, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13311,11 +14519,12 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000000FFC 62fd7d186cde VCVTTPS2UQQS zmm3, ymm6, {sae} +00000000000010B0 62fd7d186cde VCVTTPS2UQQS zmm3, ymm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13329,11 +14538,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000001002 62fd7d386cde VCVTTPS2UQQS zmm3, ymm6, {sae} +00000000000010B6 62fd7d386cde VCVTTPS2UQQS zmm3, ymm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13347,11 +14557,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000001008 62fd7d586cde VCVTTPS2UQQS zmm3, ymm6, {sae} +00000000000010BC 62fd7d586cde VCVTTPS2UQQS zmm3, ymm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13365,11 +14576,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -000000000000100E 62fd7d786cde VCVTTPS2UQQS zmm3, ymm6, {sae} +00000000000010C2 62fd7d786cde VCVTTPS2UQQS zmm3, ymm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13383,11 +14595,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000001014 62fd79186cde VCVTTPS2UQQS ymm3, xmm6, {sae} +00000000000010C8 62fd79186cde VCVTTPS2UQQS ymm3, xmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13401,11 +14614,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -000000000000101A 62fd79386cde VCVTTPS2UQQS ymm3, xmm6, {sae} +00000000000010CE 62fd79386cde VCVTTPS2UQQS ymm3, xmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13419,11 +14633,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000001020 62fd79586cde VCVTTPS2UQQS ymm3, xmm6, {sae} +00000000000010D4 62fd79586cde VCVTTPS2UQQS ymm3, xmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13437,11 +14652,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000001026 62fd79786cde VCVTTPS2UQQS ymm3, xmm6, {sae} +00000000000010DA 62fd79786cde VCVTTPS2UQQS ymm3, xmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13455,11 +14671,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -000000000000102C 62fd7e086d1e VCVTTSS2SIS ebx, dword ptr [r22] +00000000000010E0 62fd7f086d1e VCVTTSD2SIS ebx, qword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13470,14 +14687,15 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, + Operand: 1, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -0000000000001032 62fd7e286d1e VCVTTSS2SIS ebx, dword ptr [r22] +00000000000010E6 62fd7f286d1e VCVTTSD2SIS ebx, qword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13488,14 +14706,15 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, + Operand: 1, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -0000000000001038 62fd7e486d1e VCVTTSS2SIS ebx, dword ptr [r22] +00000000000010EC 62fd7f486d1e VCVTTSD2SIS ebx, qword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13506,14 +14725,15 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, + Operand: 1, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -000000000000103E 62fdfe086d1e VCVTTSS2SIS rbx, dword ptr [r22] +00000000000010F2 62fdff086d1e VCVTTSD2SIS rbx, qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13524,14 +14744,15 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, + Operand: 1, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -0000000000001044 62fdfe286d1e VCVTTSS2SIS rbx, dword ptr [r22] +00000000000010F8 62fdff286d1e VCVTTSD2SIS rbx, qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13542,14 +14763,15 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, + Operand: 1, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -000000000000104A 62fdfe486d1e VCVTTSS2SIS rbx, dword ptr [r22] +00000000000010FE 62fdff486d1e VCVTTSD2SIS rbx, qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13560,14 +14782,15 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, + Operand: 1, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -0000000000001050 62fd7e086dde VCVTTSS2SIS ebx, xmm6 +0000000000001104 62fd7f086dde VCVTTSD2SIS ebx, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13578,13 +14801,14 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000001056 62fd7e286dde VCVTTSS2SIS ebx, xmm6 +000000000000110A 62fd7f286dde VCVTTSD2SIS ebx, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13595,13 +14819,14 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -000000000000105C 62fd7e486dde VCVTTSS2SIS ebx, xmm6 +0000000000001110 62fd7f486dde VCVTTSD2SIS ebx, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13612,13 +14837,14 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000001062 62fdfe086dde VCVTTSS2SIS rbx, xmm6 +0000000000001116 62fdff086dde VCVTTSD2SIS rbx, xmm6 DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13629,13 +14855,14 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000001068 62fdfe286dde VCVTTSS2SIS rbx, xmm6 +000000000000111C 62fdff286dde VCVTTSD2SIS rbx, xmm6 DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13646,13 +14873,14 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -000000000000106E 62fdfe486dde VCVTTSS2SIS rbx, xmm6 +0000000000001122 62fdff486dde VCVTTSD2SIS rbx, xmm6 DSIZE: 64, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13663,13 +14891,14 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000001074 62fd7e186dde VCVTTSS2SIS ebx, xmm6, {sae} +0000000000001128 62fd7f186dde VCVTTSD2SIS ebx, xmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13680,13 +14909,14 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -000000000000107A 62fd7e386dde VCVTTSS2SIS ebx, xmm6, {sae} +000000000000112E 62fd7f386dde VCVTTSD2SIS ebx, xmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13697,13 +14927,14 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000001080 62fd7e586dde VCVTTSS2SIS ebx, xmm6, {sae} +0000000000001134 62fd7f586dde VCVTTSD2SIS ebx, xmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13714,13 +14945,14 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000001086 62fd7e786dde VCVTTSS2SIS ebx, xmm6, {sae} +000000000000113A 62fd7f786dde VCVTTSD2SIS ebx, xmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13731,13 +14963,14 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -000000000000108C 62fdfe186dde VCVTTSS2SIS rbx, xmm6, {sae} +0000000000001140 62fdff186dde VCVTTSD2SIS rbx, xmm6, {sae} DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13748,13 +14981,14 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000001092 62fdfe386dde VCVTTSS2SIS rbx, xmm6, {sae} +0000000000001146 62fdff386dde VCVTTSD2SIS rbx, xmm6, {sae} DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13765,13 +14999,14 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000001098 62fdfe586dde VCVTTSS2SIS rbx, xmm6, {sae} +000000000000114C 62fdff586dde VCVTTSD2SIS rbx, xmm6, {sae} DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13782,13 +15017,14 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -000000000000109E 62fdfe786dde VCVTTSS2SIS rbx, xmm6, {sae} +0000000000001152 62fdff786dde VCVTTSD2SIS rbx, xmm6, {sae} DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13799,13 +15035,14 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -00000000000010A4 62fd7a186dde VCVTTSS2SIS ebx, xmm6, {sae} +0000000000001158 62fd7b186dde VCVTTSD2SIS ebx, xmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13816,13 +15053,14 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -00000000000010AA 62fd7a386dde VCVTTSS2SIS ebx, xmm6, {sae} +000000000000115E 62fd7b386dde VCVTTSD2SIS ebx, xmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13833,13 +15071,14 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -00000000000010B0 62fd7a586dde VCVTTSS2SIS ebx, xmm6, {sae} +0000000000001164 62fd7b586dde VCVTTSD2SIS ebx, xmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13850,13 +15089,14 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -00000000000010B6 62fd7a786dde VCVTTSS2SIS ebx, xmm6, {sae} +000000000000116A 62fd7b786dde VCVTTSD2SIS ebx, xmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13867,13 +15107,14 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -00000000000010BC 62fdfa186dde VCVTTSS2SIS rbx, xmm6, {sae} +0000000000001170 62fdfb186dde VCVTTSD2SIS rbx, xmm6, {sae} DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13884,13 +15125,14 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -00000000000010C2 62fdfa386dde VCVTTSS2SIS rbx, xmm6, {sae} +0000000000001176 62fdfb386dde VCVTTSD2SIS rbx, xmm6, {sae} DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13901,13 +15143,14 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -00000000000010C8 62fdfa586dde VCVTTSS2SIS rbx, xmm6, {sae} +000000000000117C 62fdfb586dde VCVTTSD2SIS rbx, xmm6, {sae} DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13918,13 +15161,14 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -00000000000010CE 62fdfa786dde VCVTTSS2SIS rbx, xmm6, {sae} +0000000000001182 62fdfb786dde VCVTTSD2SIS rbx, xmm6, {sae} DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13935,13 +15179,14 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -00000000000010D4 62fd7f086d1e VCVTTSD2SIS ebx, qword ptr [r22] +0000000000001188 62fd7f086c1e VCVTTSD2USIS ebx, qword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13955,11 +15200,12 @@ Operand: 1, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -00000000000010DA 62fd7f286d1e VCVTTSD2SIS ebx, qword ptr [r22] +000000000000118E 62fd7f286c1e VCVTTSD2USIS ebx, qword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13973,11 +15219,12 @@ Operand: 1, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -00000000000010E0 62fd7f486d1e VCVTTSD2SIS ebx, qword ptr [r22] +0000000000001194 62fd7f486c1e VCVTTSD2USIS ebx, qword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13991,11 +15238,12 @@ Operand: 1, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -00000000000010E6 62fdff086d1e VCVTTSD2SIS rbx, qword ptr [r22] +000000000000119A 62fdff086c1e VCVTTSD2USIS rbx, qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14009,11 +15257,12 @@ Operand: 1, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -00000000000010EC 62fdff286d1e VCVTTSD2SIS rbx, qword ptr [r22] +00000000000011A0 62fdff286c1e VCVTTSD2USIS rbx, qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14027,11 +15276,12 @@ Operand: 1, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -00000000000010F2 62fdff486d1e VCVTTSD2SIS rbx, qword ptr [r22] +00000000000011A6 62fdff486c1e VCVTTSD2USIS rbx, qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14045,11 +15295,12 @@ Operand: 1, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -00000000000010F8 62fd7f086dde VCVTTSD2SIS ebx, xmm6 +00000000000011AC 62fd7f086cde VCVTTSD2USIS ebx, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14062,11 +15313,12 @@ Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -00000000000010FE 62fd7f286dde VCVTTSD2SIS ebx, xmm6 +00000000000011B2 62fd7f286cde VCVTTSD2USIS ebx, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14079,11 +15331,12 @@ Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000001104 62fd7f486dde VCVTTSD2SIS ebx, xmm6 +00000000000011B8 62fd7f486cde VCVTTSD2USIS ebx, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14096,11 +15349,12 @@ Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -000000000000110A 62fdff086dde VCVTTSD2SIS rbx, xmm6 +00000000000011BE 62fdff086cde VCVTTSD2USIS rbx, xmm6 DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14113,11 +15367,12 @@ Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000001110 62fdff286dde VCVTTSD2SIS rbx, xmm6 +00000000000011C4 62fdff286cde VCVTTSD2USIS rbx, xmm6 DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14130,11 +15385,12 @@ Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000001116 62fdff486dde VCVTTSD2SIS rbx, xmm6 +00000000000011CA 62fdff486cde VCVTTSD2USIS rbx, xmm6 DSIZE: 64, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14147,11 +15403,12 @@ Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -000000000000111C 62fd7f186dde VCVTTSD2SIS ebx, xmm6, {sae} +00000000000011D0 62fd7f186cde VCVTTSD2USIS ebx, xmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14164,11 +15421,12 @@ Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000001122 62fd7f386dde VCVTTSD2SIS ebx, xmm6, {sae} +00000000000011D6 62fd7f386cde VCVTTSD2USIS ebx, xmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14181,11 +15439,12 @@ Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000001128 62fd7f586dde VCVTTSD2SIS ebx, xmm6, {sae} +00000000000011DC 62fd7f586cde VCVTTSD2USIS ebx, xmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14198,11 +15457,12 @@ Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -000000000000112E 62fd7f786dde VCVTTSD2SIS ebx, xmm6, {sae} +00000000000011E2 62fd7f786cde VCVTTSD2USIS ebx, xmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14215,11 +15475,12 @@ Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000001134 62fdff186dde VCVTTSD2SIS rbx, xmm6, {sae} +00000000000011E8 62fdff186cde VCVTTSD2USIS rbx, xmm6, {sae} DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14232,11 +15493,12 @@ Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -000000000000113A 62fdff386dde VCVTTSD2SIS rbx, xmm6, {sae} +00000000000011EE 62fdff386cde VCVTTSD2USIS rbx, xmm6, {sae} DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14249,11 +15511,12 @@ Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000001140 62fdff586dde VCVTTSD2SIS rbx, xmm6, {sae} +00000000000011F4 62fdff586cde VCVTTSD2USIS rbx, xmm6, {sae} DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14266,11 +15529,12 @@ Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000001146 62fdff786dde VCVTTSD2SIS rbx, xmm6, {sae} +00000000000011FA 62fdff786cde VCVTTSD2USIS rbx, xmm6, {sae} DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14283,11 +15547,12 @@ Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -000000000000114C 62fd7b186dde VCVTTSD2SIS ebx, xmm6, {sae} +0000000000001200 62fd7b186cde VCVTTSD2USIS ebx, xmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14300,11 +15565,12 @@ Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000001152 62fd7b386dde VCVTTSD2SIS ebx, xmm6, {sae} +0000000000001206 62fd7b386cde VCVTTSD2USIS ebx, xmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14317,11 +15583,12 @@ Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000001158 62fd7b586dde VCVTTSD2SIS ebx, xmm6, {sae} +000000000000120C 62fd7b586cde VCVTTSD2USIS ebx, xmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14334,11 +15601,12 @@ Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -000000000000115E 62fd7b786dde VCVTTSD2SIS ebx, xmm6, {sae} +0000000000001212 62fd7b786cde VCVTTSD2USIS ebx, xmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14351,11 +15619,12 @@ Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000001164 62fdfb186dde VCVTTSD2SIS rbx, xmm6, {sae} +0000000000001218 62fdfb186cde VCVTTSD2USIS rbx, xmm6, {sae} DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14368,11 +15637,12 @@ Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -000000000000116A 62fdfb386dde VCVTTSD2SIS rbx, xmm6, {sae} +000000000000121E 62fdfb386cde VCVTTSD2USIS rbx, xmm6, {sae} DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14385,11 +15655,12 @@ Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000001170 62fdfb586dde VCVTTSD2SIS rbx, xmm6, {sae} +0000000000001224 62fdfb586cde VCVTTSD2USIS rbx, xmm6, {sae} DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14402,11 +15673,12 @@ Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000001176 62fdfb786dde VCVTTSD2SIS rbx, xmm6, {sae} +000000000000122A 62fdfb786cde VCVTTSD2USIS rbx, xmm6, {sae} DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14419,11 +15691,12 @@ Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -000000000000117C 62fd7f086c1e VCVTTSD2USIS ebx, qword ptr [r22] +0000000000001230 62fd7e086d1e VCVTTSS2SIS ebx, dword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14434,14 +15707,15 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, + Operand: 1, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Segment: 3, Base: 22, -0000000000001182 62fd7f286c1e VCVTTSD2USIS ebx, qword ptr [r22] +0000000000001236 62fd7e286d1e VCVTTSS2SIS ebx, dword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14452,14 +15726,15 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, + Operand: 1, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Segment: 3, Base: 22, -0000000000001188 62fd7f486c1e VCVTTSD2USIS ebx, qword ptr [r22] +000000000000123C 62fd7e486d1e VCVTTSS2SIS ebx, dword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14470,14 +15745,15 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, + Operand: 1, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Segment: 3, Base: 22, -000000000000118E 62fdff086c1e VCVTTSD2USIS rbx, qword ptr [r22] +0000000000001242 62fdfe086d1e VCVTTSS2SIS rbx, dword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14488,14 +15764,15 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, + Operand: 1, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Segment: 3, Base: 22, -0000000000001194 62fdff286c1e VCVTTSD2USIS rbx, qword ptr [r22] +0000000000001248 62fdfe286d1e VCVTTSS2SIS rbx, dword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14506,14 +15783,15 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, + Operand: 1, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Segment: 3, Base: 22, -000000000000119A 62fdff486c1e VCVTTSD2USIS rbx, qword ptr [r22] +000000000000124E 62fdfe486d1e VCVTTSS2SIS rbx, dword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14524,14 +15802,15 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, + Operand: 1, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Segment: 3, Base: 22, -00000000000011A0 62fd7f086cde VCVTTSD2USIS ebx, xmm6 +0000000000001254 62fd7e086dde VCVTTSS2SIS ebx, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14542,13 +15821,14 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -00000000000011A6 62fd7f286cde VCVTTSD2USIS ebx, xmm6 +000000000000125A 62fd7e286dde VCVTTSS2SIS ebx, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14559,13 +15839,14 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -00000000000011AC 62fd7f486cde VCVTTSD2USIS ebx, xmm6 +0000000000001260 62fd7e486dde VCVTTSS2SIS ebx, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14576,13 +15857,14 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -00000000000011B2 62fdff086cde VCVTTSD2USIS rbx, xmm6 +0000000000001266 62fdfe086dde VCVTTSS2SIS rbx, xmm6 DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14593,13 +15875,14 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -00000000000011B8 62fdff286cde VCVTTSD2USIS rbx, xmm6 +000000000000126C 62fdfe286dde VCVTTSS2SIS rbx, xmm6 DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14610,13 +15893,158 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -00000000000011BE 62fdff486cde VCVTTSD2USIS rbx, xmm6 +0000000000001272 62fdfe486dde VCVTTSS2SIS rbx, xmm6 DSIZE: 64, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + +0000000000001278 62fd7e186dde VCVTTSS2SIS ebx, xmm6, {sae} + DSIZE: 32, ASIZE: 64, VLEN: 128 + ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + +000000000000127E 62fd7e386dde VCVTTSS2SIS ebx, xmm6, {sae} + DSIZE: 32, ASIZE: 64, VLEN: 128 + ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + +0000000000001284 62fd7e586dde VCVTTSS2SIS ebx, xmm6, {sae} + DSIZE: 32, ASIZE: 64, VLEN: 128 + ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + +000000000000128A 62fd7e786dde VCVTTSS2SIS ebx, xmm6, {sae} + DSIZE: 32, ASIZE: 64, VLEN: 128 + ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + +0000000000001290 62fdfe186dde VCVTTSS2SIS rbx, xmm6, {sae} + DSIZE: 64, ASIZE: 64, VLEN: 128 + ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + +0000000000001296 62fdfe386dde VCVTTSS2SIS rbx, xmm6, {sae} + DSIZE: 64, ASIZE: 64, VLEN: 128 + ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + +000000000000129C 62fdfe586dde VCVTTSS2SIS rbx, xmm6, {sae} + DSIZE: 64, ASIZE: 64, VLEN: 128 + ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + +00000000000012A2 62fdfe786dde VCVTTSS2SIS rbx, xmm6, {sae} + DSIZE: 64, ASIZE: 64, VLEN: 128 + ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14627,13 +16055,14 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -00000000000011C4 62fd7f186cde VCVTTSD2USIS ebx, xmm6, {sae} +00000000000012A8 62fd7a186dde VCVTTSS2SIS ebx, xmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14644,13 +16073,14 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -00000000000011CA 62fd7f386cde VCVTTSD2USIS ebx, xmm6, {sae} +00000000000012AE 62fd7a386dde VCVTTSS2SIS ebx, xmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14661,13 +16091,14 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -00000000000011D0 62fd7f586cde VCVTTSD2USIS ebx, xmm6, {sae} +00000000000012B4 62fd7a586dde VCVTTSS2SIS ebx, xmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14678,13 +16109,14 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -00000000000011D6 62fd7f786cde VCVTTSD2USIS ebx, xmm6, {sae} +00000000000012BA 62fd7a786dde VCVTTSS2SIS ebx, xmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14695,13 +16127,14 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -00000000000011DC 62fdff186cde VCVTTSD2USIS rbx, xmm6, {sae} +00000000000012C0 62fdfa186dde VCVTTSS2SIS rbx, xmm6, {sae} DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14712,13 +16145,14 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -00000000000011E2 62fdff386cde VCVTTSD2USIS rbx, xmm6, {sae} +00000000000012C6 62fdfa386dde VCVTTSS2SIS rbx, xmm6, {sae} DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14729,13 +16163,14 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -00000000000011E8 62fdff586cde VCVTTSD2USIS rbx, xmm6, {sae} +00000000000012CC 62fdfa586dde VCVTTSS2SIS rbx, xmm6, {sae} DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14746,13 +16181,14 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -00000000000011EE 62fdff786cde VCVTTSD2USIS rbx, xmm6, {sae} +00000000000012D2 62fdfa786dde VCVTTSS2SIS rbx, xmm6, {sae} DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14763,13 +16199,14 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -00000000000011F4 62fd7b186cde VCVTTSD2USIS ebx, xmm6, {sae} +00000000000012D8 62fd7e086c1e VCVTTSS2USIS ebx, dword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14780,13 +16217,15 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 1, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, + Segment: 3, Base: 22, -00000000000011FA 62fd7b386cde VCVTTSD2USIS ebx, xmm6, {sae} - DSIZE: 32, ASIZE: 64, VLEN: 128 +00000000000012DE 62fd7e286c1e VCVTTSS2USIS ebx, dword ptr [r22] + DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14797,13 +16236,15 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 1, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, + Segment: 3, Base: 22, -0000000000001200 62fd7b586cde VCVTTSD2USIS ebx, xmm6, {sae} - DSIZE: 32, ASIZE: 64, VLEN: 128 +00000000000012E4 62fd7e486c1e VCVTTSS2USIS ebx, dword ptr [r22] + DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14814,13 +16255,15 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 1, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, + Segment: 3, Base: 22, -0000000000001206 62fd7b786cde VCVTTSD2USIS ebx, xmm6, {sae} - DSIZE: 32, ASIZE: 64, VLEN: 128 +00000000000012EA 62fdfe086c1e VCVTTSS2USIS rbx, dword ptr [r22] + DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14830,14 +16273,16 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, + Segment: 3, Base: 22, -000000000000120C 62fdfb186cde VCVTTSD2USIS rbx, xmm6, {sae} - DSIZE: 64, ASIZE: 64, VLEN: 128 +00000000000012F0 62fdfe286c1e VCVTTSS2USIS rbx, dword ptr [r22] + DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14848,13 +16293,15 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 1, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, + Segment: 3, Base: 22, -0000000000001212 62fdfb386cde VCVTTSD2USIS rbx, xmm6, {sae} - DSIZE: 64, ASIZE: 64, VLEN: 128 +00000000000012F6 62fdfe486c1e VCVTTSS2USIS rbx, dword ptr [r22] + DSIZE: 64, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14865,13 +16312,15 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 1, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, + Segment: 3, Base: 22, -0000000000001218 62fdfb586cde VCVTTSD2USIS rbx, xmm6, {sae} - DSIZE: 64, ASIZE: 64, VLEN: 128 +00000000000012FC 62fd7e086cde VCVTTSS2USIS ebx, xmm6 + DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14881,14 +16330,15 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -000000000000121E 62fdfb786cde VCVTTSD2USIS rbx, xmm6, {sae} - DSIZE: 64, ASIZE: 64, VLEN: 128 +0000000000001302 62fd7e286cde VCVTTSS2USIS ebx, xmm6 + DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14898,14 +16348,15 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000001224 62fd7e086c1e VCVTTSS2USIS ebx, dword ptr [r22] - DSIZE: 32, ASIZE: 64, VLEN: 128 +0000000000001308 62fd7e486cde VCVTTSS2USIS ebx, xmm6 + DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14916,14 +16367,14 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, - Segment: 3, Base: 22, + Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -000000000000122A 62fd7e286c1e VCVTTSS2USIS ebx, dword ptr [r22] - DSIZE: 32, ASIZE: 64, VLEN: 256 +000000000000130E 62fdfe086cde VCVTTSS2USIS rbx, xmm6 + DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14933,15 +16384,15 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, - Segment: 3, Base: 22, + Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000001230 62fd7e486c1e VCVTTSS2USIS ebx, dword ptr [r22] - DSIZE: 32, ASIZE: 64, VLEN: 512 +0000000000001314 62fdfe286cde VCVTTSS2USIS rbx, xmm6 + DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14951,15 +16402,15 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, - Segment: 3, Base: 22, + Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000001236 62fdfe086c1e VCVTTSS2USIS rbx, dword ptr [r22] - DSIZE: 64, ASIZE: 64, VLEN: 128 +000000000000131A 62fdfe486cde VCVTTSS2USIS rbx, xmm6 + DSIZE: 64, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14970,14 +16421,14 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, - Segment: 3, Base: 22, + Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -000000000000123C 62fdfe286c1e VCVTTSS2USIS rbx, dword ptr [r22] - DSIZE: 64, ASIZE: 64, VLEN: 256 +0000000000001320 62fd7e186cde VCVTTSS2USIS ebx, xmm6, {sae} + DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14987,15 +16438,15 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, - Segment: 3, Base: 22, + Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000001242 62fdfe486c1e VCVTTSS2USIS rbx, dword ptr [r22] - DSIZE: 64, ASIZE: 64, VLEN: 512 +0000000000001326 62fd7e386cde VCVTTSS2USIS ebx, xmm6, {sae} + DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15005,15 +16456,15 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, - Segment: 3, Base: 22, + Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000001248 62fd7e086cde VCVTTSS2USIS ebx, xmm6 +000000000000132C 62fd7e586cde VCVTTSS2USIS ebx, xmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15026,11 +16477,12 @@ Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -000000000000124E 62fd7e286cde VCVTTSS2USIS ebx, xmm6 - DSIZE: 32, ASIZE: 64, VLEN: 256 +0000000000001332 62fd7e786cde VCVTTSS2USIS ebx, xmm6, {sae} + DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15043,11 +16495,12 @@ Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000001254 62fd7e486cde VCVTTSS2USIS ebx, xmm6 - DSIZE: 32, ASIZE: 64, VLEN: 512 +0000000000001338 62fdfe186cde VCVTTSS2USIS rbx, xmm6, {sae} + DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15057,14 +16510,15 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -000000000000125A 62fdfe086cde VCVTTSS2USIS rbx, xmm6 +000000000000133E 62fdfe386cde VCVTTSS2USIS rbx, xmm6, {sae} DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15077,11 +16531,12 @@ Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000001260 62fdfe286cde VCVTTSS2USIS rbx, xmm6 - DSIZE: 64, ASIZE: 64, VLEN: 256 +0000000000001344 62fdfe586cde VCVTTSS2USIS rbx, xmm6, {sae} + DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15094,11 +16549,12 @@ Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000001266 62fdfe486cde VCVTTSS2USIS rbx, xmm6 - DSIZE: 64, ASIZE: 64, VLEN: 512 +000000000000134A 62fdfe786cde VCVTTSS2USIS rbx, xmm6, {sae} + DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15111,11 +16567,12 @@ Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -000000000000126C 62fd7e186cde VCVTTSS2USIS ebx, xmm6, {sae} +0000000000001350 62fd7a186cde VCVTTSS2USIS ebx, xmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15128,11 +16585,12 @@ Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000001272 62fd7e386cde VCVTTSS2USIS ebx, xmm6, {sae} +0000000000001356 62fd7a386cde VCVTTSS2USIS ebx, xmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15145,11 +16603,12 @@ Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000001278 62fd7e586cde VCVTTSS2USIS ebx, xmm6, {sae} +000000000000135C 62fd7a586cde VCVTTSS2USIS ebx, xmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15162,11 +16621,12 @@ Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -000000000000127E 62fd7e786cde VCVTTSS2USIS ebx, xmm6, {sae} +0000000000001362 62fd7a786cde VCVTTSS2USIS ebx, xmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15179,11 +16639,12 @@ Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000001284 62fdfe186cde VCVTTSS2USIS rbx, xmm6, {sae} +0000000000001368 62fdfa186cde VCVTTSS2USIS rbx, xmm6, {sae} DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15196,11 +16657,12 @@ Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -000000000000128A 62fdfe386cde VCVTTSS2USIS rbx, xmm6, {sae} +000000000000136E 62fdfa386cde VCVTTSS2USIS rbx, xmm6, {sae} DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15213,11 +16675,12 @@ Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000001290 62fdfe586cde VCVTTSS2USIS rbx, xmm6, {sae} +0000000000001374 62fdfa586cde VCVTTSS2USIS rbx, xmm6, {sae} DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15230,11 +16693,12 @@ Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000001296 62fdfe786cde VCVTTSS2USIS rbx, xmm6, {sae} +000000000000137A 62fdfa786cde VCVTTSS2USIS rbx, xmm6, {sae} DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15247,11 +16711,11 @@ Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -000000000000129C 62fd7a186cde VCVTTSS2USIS ebx, xmm6, {sae} +0000000000001380 62fd7d085e1e VDIVNEPBF16 xmm3, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no - EVEX Tuple Type: Tuple 1 Scalar - Exception class: EVEX, exception type: E3NF + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E4 Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15261,14 +16725,156 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, + Segment: 3, Base: 22, + +0000000000001386 62fd7d285e1e VDIVNEPBF16 ymm3, ymm0, ymmword ptr [r22] + DSIZE: 32, ASIZE: 64, VLEN: 256 + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E4 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, + Segment: 3, Base: 22, + +000000000000138C 62fd7d485e1e VDIVNEPBF16 zmm3, zmm0, zmmword ptr [r22] + DSIZE: 32, ASIZE: 64, VLEN: 512 + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E4 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, + Segment: 3, Base: 22, -00000000000012A2 62fd7a386cde VCVTTSS2USIS ebx, xmm6, {sae} +0000000000001392 62fd7d085ede VDIVNEPBF16 xmm3, xmm0, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no - EVEX Tuple Type: Tuple 1 Scalar - Exception class: EVEX, exception type: E3NF + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E4 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + +0000000000001398 62fd7d285ede VDIVNEPBF16 ymm3, ymm0, ymm6 + DSIZE: 32, ASIZE: 64, VLEN: 256 + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E4 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 + +000000000000139E 62fd7d485ede VDIVNEPBF16 zmm3, zmm0, zmm6 + DSIZE: 32, ASIZE: 64, VLEN: 512 + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E4 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 + +00000000000013A4 62fd7d185e1e VDIVNEPBF16 xmm3, xmm0, word ptr [r22]{1to8} + DSIZE: 32, ASIZE: 64, VLEN: 128 + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E4 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, + Segment: 3, Base: 22, + Decorator: Broadcast 2 bytes element 8 times + +00000000000013AA 62fd7d385e1e VDIVNEPBF16 ymm3, ymm0, word ptr [r22]{1to16} + DSIZE: 32, ASIZE: 64, VLEN: 256 + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E4 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, + Segment: 3, Base: 22, + Decorator: Broadcast 2 bytes element 16 times + +00000000000013B0 62fd7d585e1e VDIVNEPBF16 zmm3, zmm0, word ptr [r22]{1to32} + DSIZE: 32, ASIZE: 64, VLEN: 512 + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E4 Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15278,14 +16884,18 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, + Segment: 3, Base: 22, + Decorator: Broadcast 2 bytes element 32 times -00000000000012A8 62fd7a586cde VCVTTSS2USIS ebx, xmm6, {sae} +00000000000013B6 62fd7d0f5e1e VDIVNEPBF16 xmm3{k7}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no - EVEX Tuple Type: Tuple 1 Scalar - Exception class: EVEX, exception type: E3NF + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E4 Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15295,14 +16905,18 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Decorator: Mask k7 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, + Segment: 3, Base: 22, -00000000000012AE 62fd7a786cde VCVTTSS2USIS ebx, xmm6, {sae} - DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no - EVEX Tuple Type: Tuple 1 Scalar - Exception class: EVEX, exception type: E3NF +00000000000013BC 62fd7d2f5e1e VDIVNEPBF16 ymm3{k7}, ymm0, ymmword ptr [r22] + DSIZE: 32, ASIZE: 64, VLEN: 256 + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E4 Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15312,14 +16926,18 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Decorator: Mask k7 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, + Segment: 3, Base: 22, -00000000000012B4 62fdfa186cde VCVTTSS2USIS rbx, xmm6, {sae} - DSIZE: 64, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no - EVEX Tuple Type: Tuple 1 Scalar - Exception class: EVEX, exception type: E3NF +00000000000013C2 62fd7d4f5e1e VDIVNEPBF16 zmm3{k7}, zmm0, zmmword ptr [r22] + DSIZE: 32, ASIZE: 64, VLEN: 512 + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E4 Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15329,14 +16947,18 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Decorator: Mask k7 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, + Segment: 3, Base: 22, -00000000000012BA 62fdfa386cde VCVTTSS2USIS rbx, xmm6, {sae} - DSIZE: 64, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no - EVEX Tuple Type: Tuple 1 Scalar - Exception class: EVEX, exception type: E3NF +00000000000013C8 62fd7d8f5e1e VDIVNEPBF16 xmm3{k7}{z}, xmm0, xmmword ptr [r22] + DSIZE: 32, ASIZE: 64, VLEN: 128 + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E4 Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15346,14 +16968,19 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Decorator: Mask k7 + Decorator: Zero (no merging) + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, + Segment: 3, Base: 22, -00000000000012C0 62fdfa586cde VCVTTSS2USIS rbx, xmm6, {sae} - DSIZE: 64, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no - EVEX Tuple Type: Tuple 1 Scalar - Exception class: EVEX, exception type: E3NF +00000000000013CE 62fd7daf5e1e VDIVNEPBF16 ymm3{k7}{z}, ymm0, ymmword ptr [r22] + DSIZE: 32, ASIZE: 64, VLEN: 256 + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E4 Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15363,14 +16990,19 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Decorator: Mask k7 + Decorator: Zero (no merging) + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, + Segment: 3, Base: 22, -00000000000012C6 62fdfa786cde VCVTTSS2USIS rbx, xmm6, {sae} - DSIZE: 64, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10SCONVERT, CET tracked: no - EVEX Tuple Type: Tuple 1 Scalar - Exception class: EVEX, exception type: E3NF +00000000000013D4 62fd7dcf5e1e VDIVNEPBF16 zmm3{k7}{z}, zmm0, zmmword ptr [r22] + DSIZE: 32, ASIZE: 64, VLEN: 512 + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E4 Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15380,12 +17012,17 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Decorator: Mask k7 + Decorator: Zero (no merging) + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, + Segment: 3, Base: 22, -00000000000012CC 62fd7d085e1e VDIVNEPBF16 xmm3, xmm0, xmmword ptr [r22] +00000000000013DA 62fa7c08521e VDPPHPS xmm3, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -15397,15 +17034,15 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 0, Acc: RW, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -00000000000012D2 62fd7d285e1e VDIVNEPBF16 ymm3, ymm0, ymmword ptr [r22] +00000000000013E0 62fa7c28521e VDPPHPS ymm3, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -15417,15 +17054,15 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 0, Acc: RW, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -00000000000012D8 62fd7d485e1e VDIVNEPBF16 zmm3, zmm0, zmmword ptr [r22] +00000000000013E6 62fa7c48521e VDPPHPS zmm3, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -15437,15 +17074,15 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 0, Acc: RW, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -00000000000012DE 62fd7d085ede VDIVNEPBF16 xmm3, xmm0, xmm6 +00000000000013EC 62fa7c0852de VDPPHPS xmm3, xmm0, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -15457,14 +17094,14 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 0, Acc: RW, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -00000000000012E4 62fd7d285ede VDIVNEPBF16 ymm3, ymm0, ymm6 +00000000000013F2 62fa7c2852de VDPPHPS ymm3, ymm0, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -15476,14 +17113,14 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 0, Acc: RW, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -00000000000012EA 62fd7d485ede VDIVNEPBF16 zmm3, zmm0, zmm6 +00000000000013F8 62fa7c4852de VDPPHPS zmm3, zmm0, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -15495,14 +17132,14 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 0, Acc: RW, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -00000000000012F0 62fd7d185e1e VDIVNEPBF16 xmm3, xmm0, word ptr [r22]{1to8} +00000000000013FE 62fa7c18521e VDPPHPS xmm3, xmm0, dword ptr [r22]{1to4} DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -15514,16 +17151,16 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 0, Acc: RW, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, + Operand: 3, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Broadcast: yes, Segment: 3, Base: 22, - Decorator: Broadcast 2 bytes element 8 times + Decorator: Broadcast 4 bytes element 4 times -00000000000012F6 62fd7d385e1e VDIVNEPBF16 ymm3, ymm0, word ptr [r22]{1to16} +0000000000001404 62fa7c38521e VDPPHPS ymm3, ymm0, dword ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 256 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -15535,16 +17172,16 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 0, Acc: RW, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, + Operand: 3, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Broadcast: yes, Segment: 3, Base: 22, - Decorator: Broadcast 2 bytes element 16 times + Decorator: Broadcast 4 bytes element 8 times -00000000000012FC 62fd7d585e1e VDIVNEPBF16 zmm3, zmm0, word ptr [r22]{1to32} +000000000000140A 62fa7c58521e VDPPHPS zmm3, zmm0, dword ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 512 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -15556,16 +17193,16 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 0, Acc: RW, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, + Operand: 3, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Broadcast: yes, Segment: 3, Base: 22, - Decorator: Broadcast 2 bytes element 32 times + Decorator: Broadcast 4 bytes element 16 times -0000000000001302 62fd7d0f5e1e VDIVNEPBF16 xmm3{k7}, xmm0, xmmword ptr [r22] +0000000000001410 62fa7c0f521e VDPPHPS xmm3{k7}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -15577,16 +17214,16 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 0, Acc: RW, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Decorator: Mask k7 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000001308 62fd7d2f5e1e VDIVNEPBF16 ymm3{k7}, ymm0, ymmword ptr [r22] +0000000000001416 62fa7c2f521e VDPPHPS ymm3{k7}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -15598,16 +17235,16 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 0, Acc: RW, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 Decorator: Mask k7 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -000000000000130E 62fd7d4f5e1e VDIVNEPBF16 zmm3{k7}, zmm0, zmmword ptr [r22] +000000000000141C 62fa7c4f521e VDPPHPS zmm3{k7}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -15619,16 +17256,16 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 0, Acc: RW, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 Decorator: Mask k7 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000001314 62fd7d8f5e1e VDIVNEPBF16 xmm3{k7}{z}, xmm0, xmmword ptr [r22] +0000000000001422 62fa7c8f521e VDPPHPS xmm3{k7}{z}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -15640,7 +17277,7 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 0, Acc: RW, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Decorator: Mask k7 Decorator: Zero (no merging) Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 @@ -15648,9 +17285,9 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -000000000000131A 62fd7daf5e1e VDIVNEPBF16 ymm3{k7}{z}, ymm0, ymmword ptr [r22] +0000000000001428 62fa7caf521e VDPPHPS ymm3{k7}{z}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -15662,7 +17299,7 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 0, Acc: RW, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 Decorator: Mask k7 Decorator: Zero (no merging) Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 @@ -15670,9 +17307,9 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000001320 62fd7dcf5e1e VDIVNEPBF16 zmm3{k7}{z}, zmm0, zmmword ptr [r22] +000000000000142E 62fa7ccf521e VDPPHPS zmm3{k7}{z}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -15684,7 +17321,7 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 0, Acc: RW, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 Decorator: Mask k7 Decorator: Zero (no merging) Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 @@ -15692,9 +17329,9 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000001326 62fa7c08521e VDPPHPS xmm3, xmm0, xmmword ptr [r22] +0000000000001434 62fe7c08981e VFMADD132NEPBF16 xmm3, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -15712,9 +17349,9 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -000000000000132C 62fa7c28521e VDPPHPS ymm3, ymm0, ymmword ptr [r22] +000000000000143A 62fe7c28981e VFMADD132NEPBF16 ymm3, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 - ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -15732,9 +17369,9 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000001332 62fa7c48521e VDPPHPS zmm3, zmm0, zmmword ptr [r22] +0000000000001440 62fe7c48981e VFMADD132NEPBF16 zmm3, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 - ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -15752,9 +17389,9 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000001338 62fa7c0852de VDPPHPS xmm3, xmm0, xmm6 +0000000000001446 62fe7c0898de VFMADD132NEPBF16 xmm3, xmm0, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -15771,9 +17408,9 @@ Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -000000000000133E 62fa7c2852de VDPPHPS ymm3, ymm0, ymm6 +000000000000144C 62fe7c2898de VFMADD132NEPBF16 ymm3, ymm0, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 - ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -15790,9 +17427,9 @@ Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000001344 62fa7c4852de VDPPHPS zmm3, zmm0, zmm6 +0000000000001452 62fe7c4898de VFMADD132NEPBF16 zmm3, zmm0, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 - ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -15809,9 +17446,9 @@ Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -000000000000134A 62fa7c18521e VDPPHPS xmm3, xmm0, dword ptr [r22]{1to4} +0000000000001458 62fe7c18981e VFMADD132NEPBF16 xmm3, xmm0, word ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -15826,13 +17463,13 @@ Operand: 0, Acc: RW, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Broadcast: yes, + Operand: 3, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, Segment: 3, Base: 22, - Decorator: Broadcast 4 bytes element 4 times + Decorator: Broadcast 2 bytes element 8 times -0000000000001350 62fa7c38521e VDPPHPS ymm3, ymm0, dword ptr [r22]{1to8} +000000000000145E 62fe7c38981e VFMADD132NEPBF16 ymm3, ymm0, word ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 256 - ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -15847,13 +17484,13 @@ Operand: 0, Acc: RW, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Broadcast: yes, + Operand: 3, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, Segment: 3, Base: 22, - Decorator: Broadcast 4 bytes element 8 times + Decorator: Broadcast 2 bytes element 16 times -0000000000001356 62fa7c58521e VDPPHPS zmm3, zmm0, dword ptr [r22]{1to16} +0000000000001464 62fe7c58981e VFMADD132NEPBF16 zmm3, zmm0, word ptr [r22]{1to32} DSIZE: 32, ASIZE: 64, VLEN: 512 - ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -15868,13 +17505,13 @@ Operand: 0, Acc: RW, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Broadcast: yes, + Operand: 3, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, Segment: 3, Base: 22, - Decorator: Broadcast 4 bytes element 16 times + Decorator: Broadcast 2 bytes element 32 times -000000000000135C 62fa7c0f521e VDPPHPS xmm3{k7}, xmm0, xmmword ptr [r22] +000000000000146A 62fe7c0f981e VFMADD132NEPBF16 xmm3{k7}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -15893,9 +17530,9 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000001362 62fa7c2f521e VDPPHPS ymm3{k7}, ymm0, ymmword ptr [r22] +0000000000001470 62fe7c2f981e VFMADD132NEPBF16 ymm3{k7}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 - ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -15914,9 +17551,9 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000001368 62fa7c4f521e VDPPHPS zmm3{k7}, zmm0, zmmword ptr [r22] +0000000000001476 62fe7c4f981e VFMADD132NEPBF16 zmm3{k7}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 - ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -15935,9 +17572,9 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -000000000000136E 62fa7c8f521e VDPPHPS xmm3{k7}{z}, xmm0, xmmword ptr [r22] +000000000000147C 62fe7c8f981e VFMADD132NEPBF16 xmm3{k7}{z}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -15957,9 +17594,9 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000001374 62fa7caf521e VDPPHPS ymm3{k7}{z}, ymm0, ymmword ptr [r22] +0000000000001482 62fe7caf981e VFMADD132NEPBF16 ymm3{k7}{z}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 - ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -15979,9 +17616,9 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -000000000000137A 62fa7ccf521e VDPPHPS zmm3{k7}{z}, zmm0, zmmword ptr [r22] +0000000000001488 62fe7ccf981e VFMADD132NEPBF16 zmm3{k7}{z}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 - ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -16001,7 +17638,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000001380 62fe7c08981e VFMADD132NEPBF16 xmm3, xmm0, xmmword ptr [r22] +000000000000148E 62fe7c08a81e VFMADD213NEPBF16 xmm3, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -16021,7 +17658,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000001386 62fe7c28981e VFMADD132NEPBF16 ymm3, ymm0, ymmword ptr [r22] +0000000000001494 62fe7c28a81e VFMADD213NEPBF16 ymm3, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -16041,7 +17678,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -000000000000138C 62fe7c48981e VFMADD132NEPBF16 zmm3, zmm0, zmmword ptr [r22] +000000000000149A 62fe7c48a81e VFMADD213NEPBF16 zmm3, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -16061,7 +17698,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000001392 62fe7c0898de VFMADD132NEPBF16 xmm3, xmm0, xmm6 +00000000000014A0 62fe7c08a8de VFMADD213NEPBF16 xmm3, xmm0, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -16080,7 +17717,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000001398 62fe7c2898de VFMADD132NEPBF16 ymm3, ymm0, ymm6 +00000000000014A6 62fe7c28a8de VFMADD213NEPBF16 ymm3, ymm0, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -16099,7 +17736,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -000000000000139E 62fe7c4898de VFMADD132NEPBF16 zmm3, zmm0, zmm6 +00000000000014AC 62fe7c48a8de VFMADD213NEPBF16 zmm3, zmm0, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -16118,7 +17755,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -00000000000013A4 62fe7c18981e VFMADD132NEPBF16 xmm3, xmm0, word ptr [r22]{1to8} +00000000000014B2 62fe7c18a81e VFMADD213NEPBF16 xmm3, xmm0, word ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -16139,7 +17776,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 8 times -00000000000013AA 62fe7c38981e VFMADD132NEPBF16 ymm3, ymm0, word ptr [r22]{1to16} +00000000000014B8 62fe7c38a81e VFMADD213NEPBF16 ymm3, ymm0, word ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -16160,7 +17797,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 16 times -00000000000013B0 62fe7c58981e VFMADD132NEPBF16 zmm3, zmm0, word ptr [r22]{1to32} +00000000000014BE 62fe7c58a81e VFMADD213NEPBF16 zmm3, zmm0, word ptr [r22]{1to32} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -16181,7 +17818,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 32 times -00000000000013B6 62fe7c0f981e VFMADD132NEPBF16 xmm3{k7}, xmm0, xmmword ptr [r22] +00000000000014C4 62fe7c0fa81e VFMADD213NEPBF16 xmm3{k7}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -16202,7 +17839,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -00000000000013BC 62fe7c2f981e VFMADD132NEPBF16 ymm3{k7}, ymm0, ymmword ptr [r22] +00000000000014CA 62fe7c2fa81e VFMADD213NEPBF16 ymm3{k7}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -16223,7 +17860,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -00000000000013C2 62fe7c4f981e VFMADD132NEPBF16 zmm3{k7}, zmm0, zmmword ptr [r22] +00000000000014D0 62fe7c4fa81e VFMADD213NEPBF16 zmm3{k7}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -16244,7 +17881,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -00000000000013C8 62fe7c8f981e VFMADD132NEPBF16 xmm3{k7}{z}, xmm0, xmmword ptr [r22] +00000000000014D6 62fe7c8fa81e VFMADD213NEPBF16 xmm3{k7}{z}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -16266,7 +17903,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -00000000000013CE 62fe7caf981e VFMADD132NEPBF16 ymm3{k7}{z}, ymm0, ymmword ptr [r22] +00000000000014DC 62fe7cafa81e VFMADD213NEPBF16 ymm3{k7}{z}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -16288,7 +17925,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -00000000000013D4 62fe7ccf981e VFMADD132NEPBF16 zmm3{k7}{z}, zmm0, zmmword ptr [r22] +00000000000014E2 62fe7ccfa81e VFMADD213NEPBF16 zmm3{k7}{z}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -16310,7 +17947,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -00000000000013DA 62fe7c08a81e VFMADD213NEPBF16 xmm3, xmm0, xmmword ptr [r22] +00000000000014E8 62fe7c08b81e VFMADD231NEPBF16 xmm3, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -16330,7 +17967,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -00000000000013E0 62fe7c28a81e VFMADD213NEPBF16 ymm3, ymm0, ymmword ptr [r22] +00000000000014EE 62fe7c28b81e VFMADD231NEPBF16 ymm3, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -16350,7 +17987,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -00000000000013E6 62fe7c48a81e VFMADD213NEPBF16 zmm3, zmm0, zmmword ptr [r22] +00000000000014F4 62fe7c48b81e VFMADD231NEPBF16 zmm3, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -16370,7 +18007,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -00000000000013EC 62fe7c08a8de VFMADD213NEPBF16 xmm3, xmm0, xmm6 +00000000000014FA 62fe7c08b8de VFMADD231NEPBF16 xmm3, xmm0, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -16389,7 +18026,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -00000000000013F2 62fe7c28a8de VFMADD213NEPBF16 ymm3, ymm0, ymm6 +0000000000001500 62fe7c28b8de VFMADD231NEPBF16 ymm3, ymm0, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -16408,7 +18045,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -00000000000013F8 62fe7c48a8de VFMADD213NEPBF16 zmm3, zmm0, zmm6 +0000000000001506 62fe7c48b8de VFMADD231NEPBF16 zmm3, zmm0, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -16427,7 +18064,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -00000000000013FE 62fe7c18a81e VFMADD213NEPBF16 xmm3, xmm0, word ptr [r22]{1to8} +000000000000150C 62fe7c18b81e VFMADD231NEPBF16 xmm3, xmm0, word ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -16448,7 +18085,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 8 times -0000000000001404 62fe7c38a81e VFMADD213NEPBF16 ymm3, ymm0, word ptr [r22]{1to16} +0000000000001512 62fe7c38b81e VFMADD231NEPBF16 ymm3, ymm0, word ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -16469,7 +18106,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 16 times -000000000000140A 62fe7c58a81e VFMADD213NEPBF16 zmm3, zmm0, word ptr [r22]{1to32} +0000000000001518 62fe7c58b81e VFMADD231NEPBF16 zmm3, zmm0, word ptr [r22]{1to32} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -16490,7 +18127,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 32 times -0000000000001410 62fe7c0fa81e VFMADD213NEPBF16 xmm3{k7}, xmm0, xmmword ptr [r22] +000000000000151E 62fe7c0fb81e VFMADD231NEPBF16 xmm3{k7}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -16511,7 +18148,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000001416 62fe7c2fa81e VFMADD213NEPBF16 ymm3{k7}, ymm0, ymmword ptr [r22] +0000000000001524 62fe7c2fb81e VFMADD231NEPBF16 ymm3{k7}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -16532,7 +18169,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -000000000000141C 62fe7c4fa81e VFMADD213NEPBF16 zmm3{k7}, zmm0, zmmword ptr [r22] +000000000000152A 62fe7c4fb81e VFMADD231NEPBF16 zmm3{k7}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -16553,7 +18190,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000001422 62fe7c8fa81e VFMADD213NEPBF16 xmm3{k7}{z}, xmm0, xmmword ptr [r22] +0000000000001530 62fe7c8fb81e VFMADD231NEPBF16 xmm3{k7}{z}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -16575,7 +18212,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000001428 62fe7cafa81e VFMADD213NEPBF16 ymm3{k7}{z}, ymm0, ymmword ptr [r22] +0000000000001536 62fe7cafb81e VFMADD231NEPBF16 ymm3{k7}{z}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -16597,7 +18234,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -000000000000142E 62fe7ccfa81e VFMADD213NEPBF16 zmm3{k7}{z}, zmm0, zmmword ptr [r22] +000000000000153C 62fe7ccfb81e VFMADD231NEPBF16 zmm3{k7}{z}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -16619,7 +18256,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000001434 62fe7c08b81e VFMADD231NEPBF16 xmm3, xmm0, xmmword ptr [r22] +0000000000001542 62fe7c089a1e VFMSUB132NEPBF16 xmm3, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -16639,7 +18276,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -000000000000143A 62fe7c28b81e VFMADD231NEPBF16 ymm3, ymm0, ymmword ptr [r22] +0000000000001548 62fe7c289a1e VFMSUB132NEPBF16 ymm3, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -16659,7 +18296,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000001440 62fe7c48b81e VFMADD231NEPBF16 zmm3, zmm0, zmmword ptr [r22] +000000000000154E 62fe7c489a1e VFMSUB132NEPBF16 zmm3, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -16679,7 +18316,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000001446 62fe7c08b8de VFMADD231NEPBF16 xmm3, xmm0, xmm6 +0000000000001554 62fe7c089ade VFMSUB132NEPBF16 xmm3, xmm0, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -16698,7 +18335,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -000000000000144C 62fe7c28b8de VFMADD231NEPBF16 ymm3, ymm0, ymm6 +000000000000155A 62fe7c289ade VFMSUB132NEPBF16 ymm3, ymm0, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -16717,7 +18354,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000001452 62fe7c48b8de VFMADD231NEPBF16 zmm3, zmm0, zmm6 +0000000000001560 62fe7c489ade VFMSUB132NEPBF16 zmm3, zmm0, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -16736,7 +18373,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000001458 62fe7c18b81e VFMADD231NEPBF16 xmm3, xmm0, word ptr [r22]{1to8} +0000000000001566 62fe7c189a1e VFMSUB132NEPBF16 xmm3, xmm0, word ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -16757,7 +18394,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 8 times -000000000000145E 62fe7c38b81e VFMADD231NEPBF16 ymm3, ymm0, word ptr [r22]{1to16} +000000000000156C 62fe7c389a1e VFMSUB132NEPBF16 ymm3, ymm0, word ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -16778,7 +18415,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 16 times -0000000000001464 62fe7c58b81e VFMADD231NEPBF16 zmm3, zmm0, word ptr [r22]{1to32} +0000000000001572 62fe7c589a1e VFMSUB132NEPBF16 zmm3, zmm0, word ptr [r22]{1to32} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -16799,7 +18436,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 32 times -000000000000146A 62fe7c0fb81e VFMADD231NEPBF16 xmm3{k7}, xmm0, xmmword ptr [r22] +0000000000001578 62fe7c0f9a1e VFMSUB132NEPBF16 xmm3{k7}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -16820,7 +18457,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000001470 62fe7c2fb81e VFMADD231NEPBF16 ymm3{k7}, ymm0, ymmword ptr [r22] +000000000000157E 62fe7c2f9a1e VFMSUB132NEPBF16 ymm3{k7}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -16841,7 +18478,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000001476 62fe7c4fb81e VFMADD231NEPBF16 zmm3{k7}, zmm0, zmmword ptr [r22] +0000000000001584 62fe7c4f9a1e VFMSUB132NEPBF16 zmm3{k7}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -16862,7 +18499,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -000000000000147C 62fe7c8fb81e VFMADD231NEPBF16 xmm3{k7}{z}, xmm0, xmmword ptr [r22] +000000000000158A 62fe7c8f9a1e VFMSUB132NEPBF16 xmm3{k7}{z}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -16884,7 +18521,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000001482 62fe7cafb81e VFMADD231NEPBF16 ymm3{k7}{z}, ymm0, ymmword ptr [r22] +0000000000001590 62fe7caf9a1e VFMSUB132NEPBF16 ymm3{k7}{z}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -16906,7 +18543,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000001488 62fe7ccfb81e VFMADD231NEPBF16 zmm3{k7}{z}, zmm0, zmmword ptr [r22] +0000000000001596 62fe7ccf9a1e VFMSUB132NEPBF16 zmm3{k7}{z}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -16928,7 +18565,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -000000000000148E 62fe7c089a1e VFMSUB132NEPBF16 xmm3, xmm0, xmmword ptr [r22] +000000000000159C 62fe7c08aa1e VFMSUB213NEPBF16 xmm3, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -16948,7 +18585,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000001494 62fe7c289a1e VFMSUB132NEPBF16 ymm3, ymm0, ymmword ptr [r22] +00000000000015A2 62fe7c28aa1e VFMSUB213NEPBF16 ymm3, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -16968,7 +18605,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -000000000000149A 62fe7c489a1e VFMSUB132NEPBF16 zmm3, zmm0, zmmword ptr [r22] +00000000000015A8 62fe7c48aa1e VFMSUB213NEPBF16 zmm3, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -16988,7 +18625,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -00000000000014A0 62fe7c089ade VFMSUB132NEPBF16 xmm3, xmm0, xmm6 +00000000000015AE 62fe7c08aade VFMSUB213NEPBF16 xmm3, xmm0, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -17007,7 +18644,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -00000000000014A6 62fe7c289ade VFMSUB132NEPBF16 ymm3, ymm0, ymm6 +00000000000015B4 62fe7c28aade VFMSUB213NEPBF16 ymm3, ymm0, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -17026,7 +18663,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -00000000000014AC 62fe7c489ade VFMSUB132NEPBF16 zmm3, zmm0, zmm6 +00000000000015BA 62fe7c48aade VFMSUB213NEPBF16 zmm3, zmm0, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -17045,7 +18682,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -00000000000014B2 62fe7c189a1e VFMSUB132NEPBF16 xmm3, xmm0, word ptr [r22]{1to8} +00000000000015C0 62fe7c18aa1e VFMSUB213NEPBF16 xmm3, xmm0, word ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -17066,7 +18703,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 8 times -00000000000014B8 62fe7c389a1e VFMSUB132NEPBF16 ymm3, ymm0, word ptr [r22]{1to16} +00000000000015C6 62fe7c38aa1e VFMSUB213NEPBF16 ymm3, ymm0, word ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -17087,7 +18724,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 16 times -00000000000014BE 62fe7c589a1e VFMSUB132NEPBF16 zmm3, zmm0, word ptr [r22]{1to32} +00000000000015CC 62fe7c58aa1e VFMSUB213NEPBF16 zmm3, zmm0, word ptr [r22]{1to32} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -17108,7 +18745,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 32 times -00000000000014C4 62fe7c0f9a1e VFMSUB132NEPBF16 xmm3{k7}, xmm0, xmmword ptr [r22] +00000000000015D2 62fe7c0faa1e VFMSUB213NEPBF16 xmm3{k7}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -17129,7 +18766,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -00000000000014CA 62fe7c2f9a1e VFMSUB132NEPBF16 ymm3{k7}, ymm0, ymmword ptr [r22] +00000000000015D8 62fe7c2faa1e VFMSUB213NEPBF16 ymm3{k7}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -17150,7 +18787,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -00000000000014D0 62fe7c4f9a1e VFMSUB132NEPBF16 zmm3{k7}, zmm0, zmmword ptr [r22] +00000000000015DE 62fe7c4faa1e VFMSUB213NEPBF16 zmm3{k7}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -17171,7 +18808,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -00000000000014D6 62fe7c8f9a1e VFMSUB132NEPBF16 xmm3{k7}{z}, xmm0, xmmword ptr [r22] +00000000000015E4 62fe7c8faa1e VFMSUB213NEPBF16 xmm3{k7}{z}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -17193,7 +18830,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -00000000000014DC 62fe7caf9a1e VFMSUB132NEPBF16 ymm3{k7}{z}, ymm0, ymmword ptr [r22] +00000000000015EA 62fe7cafaa1e VFMSUB213NEPBF16 ymm3{k7}{z}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -17215,7 +18852,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -00000000000014E2 62fe7ccf9a1e VFMSUB132NEPBF16 zmm3{k7}{z}, zmm0, zmmword ptr [r22] +00000000000015F0 62fe7ccfaa1e VFMSUB213NEPBF16 zmm3{k7}{z}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -17237,7 +18874,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -00000000000014E8 62fe7c08aa1e VFMSUB213NEPBF16 xmm3, xmm0, xmmword ptr [r22] +00000000000015F6 62fe7c08ba1e VFMSUB231NEPBF16 xmm3, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -17257,7 +18894,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -00000000000014EE 62fe7c28aa1e VFMSUB213NEPBF16 ymm3, ymm0, ymmword ptr [r22] +00000000000015FC 62fe7c28ba1e VFMSUB231NEPBF16 ymm3, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -17277,7 +18914,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -00000000000014F4 62fe7c48aa1e VFMSUB213NEPBF16 zmm3, zmm0, zmmword ptr [r22] +0000000000001602 62fe7c48ba1e VFMSUB231NEPBF16 zmm3, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -17297,7 +18934,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -00000000000014FA 62fe7c08aade VFMSUB213NEPBF16 xmm3, xmm0, xmm6 +0000000000001608 62fe7c08bade VFMSUB231NEPBF16 xmm3, xmm0, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -17316,7 +18953,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000001500 62fe7c28aade VFMSUB213NEPBF16 ymm3, ymm0, ymm6 +000000000000160E 62fe7c28bade VFMSUB231NEPBF16 ymm3, ymm0, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -17335,7 +18972,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000001506 62fe7c48aade VFMSUB213NEPBF16 zmm3, zmm0, zmm6 +0000000000001614 62fe7c48bade VFMSUB231NEPBF16 zmm3, zmm0, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -17354,7 +18991,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -000000000000150C 62fe7c18aa1e VFMSUB213NEPBF16 xmm3, xmm0, word ptr [r22]{1to8} +000000000000161A 62fe7c18ba1e VFMSUB231NEPBF16 xmm3, xmm0, word ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -17375,7 +19012,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 8 times -0000000000001512 62fe7c38aa1e VFMSUB213NEPBF16 ymm3, ymm0, word ptr [r22]{1to16} +0000000000001620 62fe7c38ba1e VFMSUB231NEPBF16 ymm3, ymm0, word ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -17396,7 +19033,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 16 times -0000000000001518 62fe7c58aa1e VFMSUB213NEPBF16 zmm3, zmm0, word ptr [r22]{1to32} +0000000000001626 62fe7c58ba1e VFMSUB231NEPBF16 zmm3, zmm0, word ptr [r22]{1to32} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -17417,7 +19054,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 32 times -000000000000151E 62fe7c0faa1e VFMSUB213NEPBF16 xmm3{k7}, xmm0, xmmword ptr [r22] +000000000000162C 62fe7c0fba1e VFMSUB231NEPBF16 xmm3{k7}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -17438,7 +19075,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000001524 62fe7c2faa1e VFMSUB213NEPBF16 ymm3{k7}, ymm0, ymmword ptr [r22] +0000000000001632 62fe7c2fba1e VFMSUB231NEPBF16 ymm3{k7}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -17459,7 +19096,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -000000000000152A 62fe7c4faa1e VFMSUB213NEPBF16 zmm3{k7}, zmm0, zmmword ptr [r22] +0000000000001638 62fe7c4fba1e VFMSUB231NEPBF16 zmm3{k7}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -17480,7 +19117,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000001530 62fe7c8faa1e VFMSUB213NEPBF16 xmm3{k7}{z}, xmm0, xmmword ptr [r22] +000000000000163E 62fe7c8fba1e VFMSUB231NEPBF16 xmm3{k7}{z}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -17502,7 +19139,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000001536 62fe7cafaa1e VFMSUB213NEPBF16 ymm3{k7}{z}, ymm0, ymmword ptr [r22] +0000000000001644 62fe7cafba1e VFMSUB231NEPBF16 ymm3{k7}{z}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -17524,7 +19161,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -000000000000153C 62fe7ccfaa1e VFMSUB213NEPBF16 zmm3{k7}{z}, zmm0, zmmword ptr [r22] +000000000000164A 62fe7ccfba1e VFMSUB231NEPBF16 zmm3{k7}{z}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -17546,7 +19183,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000001542 62fe7c08ba1e VFMSUB231NEPBF16 xmm3, xmm0, xmmword ptr [r22] +0000000000001650 62fe7c089c1e VFNMADD132NEPBF16 xmm3, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -17566,7 +19203,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000001548 62fe7c28ba1e VFMSUB231NEPBF16 ymm3, ymm0, ymmword ptr [r22] +0000000000001656 62fe7c289c1e VFNMADD132NEPBF16 ymm3, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -17586,7 +19223,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -000000000000154E 62fe7c48ba1e VFMSUB231NEPBF16 zmm3, zmm0, zmmword ptr [r22] +000000000000165C 62fe7c489c1e VFNMADD132NEPBF16 zmm3, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -17606,7 +19243,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000001554 62fe7c08bade VFMSUB231NEPBF16 xmm3, xmm0, xmm6 +0000000000001662 62fe7c089cde VFNMADD132NEPBF16 xmm3, xmm0, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -17625,7 +19262,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -000000000000155A 62fe7c28bade VFMSUB231NEPBF16 ymm3, ymm0, ymm6 +0000000000001668 62fe7c289cde VFNMADD132NEPBF16 ymm3, ymm0, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -17644,7 +19281,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000001560 62fe7c48bade VFMSUB231NEPBF16 zmm3, zmm0, zmm6 +000000000000166E 62fe7c489cde VFNMADD132NEPBF16 zmm3, zmm0, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -17663,7 +19300,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000001566 62fe7c18ba1e VFMSUB231NEPBF16 xmm3, xmm0, word ptr [r22]{1to8} +0000000000001674 62fe7c189c1e VFNMADD132NEPBF16 xmm3, xmm0, word ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -17684,7 +19321,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 8 times -000000000000156C 62fe7c38ba1e VFMSUB231NEPBF16 ymm3, ymm0, word ptr [r22]{1to16} +000000000000167A 62fe7c389c1e VFNMADD132NEPBF16 ymm3, ymm0, word ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -17705,7 +19342,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 16 times -0000000000001572 62fe7c58ba1e VFMSUB231NEPBF16 zmm3, zmm0, word ptr [r22]{1to32} +0000000000001680 62fe7c589c1e VFNMADD132NEPBF16 zmm3, zmm0, word ptr [r22]{1to32} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -17726,7 +19363,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 32 times -0000000000001578 62fe7c0fba1e VFMSUB231NEPBF16 xmm3{k7}, xmm0, xmmword ptr [r22] +0000000000001686 62fe7c0f9c1e VFNMADD132NEPBF16 xmm3{k7}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -17747,7 +19384,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -000000000000157E 62fe7c2fba1e VFMSUB231NEPBF16 ymm3{k7}, ymm0, ymmword ptr [r22] +000000000000168C 62fe7c2f9c1e VFNMADD132NEPBF16 ymm3{k7}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -17768,7 +19405,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000001584 62fe7c4fba1e VFMSUB231NEPBF16 zmm3{k7}, zmm0, zmmword ptr [r22] +0000000000001692 62fe7c4f9c1e VFNMADD132NEPBF16 zmm3{k7}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -17789,7 +19426,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -000000000000158A 62fe7c8fba1e VFMSUB231NEPBF16 xmm3{k7}{z}, xmm0, xmmword ptr [r22] +0000000000001698 62fe7c8f9c1e VFNMADD132NEPBF16 xmm3{k7}{z}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -17811,7 +19448,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000001590 62fe7cafba1e VFMSUB231NEPBF16 ymm3{k7}{z}, ymm0, ymmword ptr [r22] +000000000000169E 62fe7caf9c1e VFNMADD132NEPBF16 ymm3{k7}{z}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -17833,7 +19470,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000001596 62fe7ccfba1e VFMSUB231NEPBF16 zmm3{k7}{z}, zmm0, zmmword ptr [r22] +00000000000016A4 62fe7ccf9c1e VFNMADD132NEPBF16 zmm3{k7}{z}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -17855,7 +19492,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -000000000000159C 62fe7c089c1e VFNMADD132NEPBF16 xmm3, xmm0, xmmword ptr [r22] +00000000000016AA 62fe7c08ac1e VFNMADD213NEPBF16 xmm3, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -17875,7 +19512,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -00000000000015A2 62fe7c289c1e VFNMADD132NEPBF16 ymm3, ymm0, ymmword ptr [r22] +00000000000016B0 62fe7c28ac1e VFNMADD213NEPBF16 ymm3, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -17895,7 +19532,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -00000000000015A8 62fe7c489c1e VFNMADD132NEPBF16 zmm3, zmm0, zmmword ptr [r22] +00000000000016B6 62fe7c48ac1e VFNMADD213NEPBF16 zmm3, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -17915,7 +19552,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -00000000000015AE 62fe7c089cde VFNMADD132NEPBF16 xmm3, xmm0, xmm6 +00000000000016BC 62fe7c08acde VFNMADD213NEPBF16 xmm3, xmm0, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -17934,7 +19571,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -00000000000015B4 62fe7c289cde VFNMADD132NEPBF16 ymm3, ymm0, ymm6 +00000000000016C2 62fe7c28acde VFNMADD213NEPBF16 ymm3, ymm0, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -17953,7 +19590,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -00000000000015BA 62fe7c489cde VFNMADD132NEPBF16 zmm3, zmm0, zmm6 +00000000000016C8 62fe7c48acde VFNMADD213NEPBF16 zmm3, zmm0, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -17972,7 +19609,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -00000000000015C0 62fe7c189c1e VFNMADD132NEPBF16 xmm3, xmm0, word ptr [r22]{1to8} +00000000000016CE 62fe7c18ac1e VFNMADD213NEPBF16 xmm3, xmm0, word ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -17993,7 +19630,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 8 times -00000000000015C6 62fe7c389c1e VFNMADD132NEPBF16 ymm3, ymm0, word ptr [r22]{1to16} +00000000000016D4 62fe7c38ac1e VFNMADD213NEPBF16 ymm3, ymm0, word ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -18014,7 +19651,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 16 times -00000000000015CC 62fe7c589c1e VFNMADD132NEPBF16 zmm3, zmm0, word ptr [r22]{1to32} +00000000000016DA 62fe7c58ac1e VFNMADD213NEPBF16 zmm3, zmm0, word ptr [r22]{1to32} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -18035,7 +19672,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 32 times -00000000000015D2 62fe7c0f9c1e VFNMADD132NEPBF16 xmm3{k7}, xmm0, xmmword ptr [r22] +00000000000016E0 62fe7c0fac1e VFNMADD213NEPBF16 xmm3{k7}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -18056,7 +19693,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -00000000000015D8 62fe7c2f9c1e VFNMADD132NEPBF16 ymm3{k7}, ymm0, ymmword ptr [r22] +00000000000016E6 62fe7c2fac1e VFNMADD213NEPBF16 ymm3{k7}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -18077,7 +19714,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -00000000000015DE 62fe7c4f9c1e VFNMADD132NEPBF16 zmm3{k7}, zmm0, zmmword ptr [r22] +00000000000016EC 62fe7c4fac1e VFNMADD213NEPBF16 zmm3{k7}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -18098,7 +19735,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -00000000000015E4 62fe7c8f9c1e VFNMADD132NEPBF16 xmm3{k7}{z}, xmm0, xmmword ptr [r22] +00000000000016F2 62fe7c8fac1e VFNMADD213NEPBF16 xmm3{k7}{z}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -18120,7 +19757,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -00000000000015EA 62fe7caf9c1e VFNMADD132NEPBF16 ymm3{k7}{z}, ymm0, ymmword ptr [r22] +00000000000016F8 62fe7cafac1e VFNMADD213NEPBF16 ymm3{k7}{z}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -18142,7 +19779,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -00000000000015F0 62fe7ccf9c1e VFNMADD132NEPBF16 zmm3{k7}{z}, zmm0, zmmword ptr [r22] +00000000000016FE 62fe7ccfac1e VFNMADD213NEPBF16 zmm3{k7}{z}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -18164,7 +19801,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -00000000000015F6 62fe7c08ac1e VFNMADD213NEPBF16 xmm3, xmm0, xmmword ptr [r22] +0000000000001704 62fe7c08bc1e VFNMADD231NEPBF16 xmm3, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -18184,7 +19821,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -00000000000015FC 62fe7c28ac1e VFNMADD213NEPBF16 ymm3, ymm0, ymmword ptr [r22] +000000000000170A 62fe7c28bc1e VFNMADD231NEPBF16 ymm3, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -18204,7 +19841,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000001602 62fe7c48ac1e VFNMADD213NEPBF16 zmm3, zmm0, zmmword ptr [r22] +0000000000001710 62fe7c48bc1e VFNMADD231NEPBF16 zmm3, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -18224,7 +19861,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000001608 62fe7c08acde VFNMADD213NEPBF16 xmm3, xmm0, xmm6 +0000000000001716 62fe7c08bcde VFNMADD231NEPBF16 xmm3, xmm0, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -18243,7 +19880,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -000000000000160E 62fe7c28acde VFNMADD213NEPBF16 ymm3, ymm0, ymm6 +000000000000171C 62fe7c28bcde VFNMADD231NEPBF16 ymm3, ymm0, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -18262,7 +19899,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000001614 62fe7c48acde VFNMADD213NEPBF16 zmm3, zmm0, zmm6 +0000000000001722 62fe7c48bcde VFNMADD231NEPBF16 zmm3, zmm0, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -18281,7 +19918,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -000000000000161A 62fe7c18ac1e VFNMADD213NEPBF16 xmm3, xmm0, word ptr [r22]{1to8} +0000000000001728 62fe7c18bc1e VFNMADD231NEPBF16 xmm3, xmm0, word ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -18302,7 +19939,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 8 times -0000000000001620 62fe7c38ac1e VFNMADD213NEPBF16 ymm3, ymm0, word ptr [r22]{1to16} +000000000000172E 62fe7c38bc1e VFNMADD231NEPBF16 ymm3, ymm0, word ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -18323,7 +19960,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 16 times -0000000000001626 62fe7c58ac1e VFNMADD213NEPBF16 zmm3, zmm0, word ptr [r22]{1to32} +0000000000001734 62fe7c58bc1e VFNMADD231NEPBF16 zmm3, zmm0, word ptr [r22]{1to32} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -18344,7 +19981,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 32 times -000000000000162C 62fe7c0fac1e VFNMADD213NEPBF16 xmm3{k7}, xmm0, xmmword ptr [r22] +000000000000173A 62fe7c0fbc1e VFNMADD231NEPBF16 xmm3{k7}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -18365,7 +20002,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000001632 62fe7c2fac1e VFNMADD213NEPBF16 ymm3{k7}, ymm0, ymmword ptr [r22] +0000000000001740 62fe7c2fbc1e VFNMADD231NEPBF16 ymm3{k7}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -18386,7 +20023,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000001638 62fe7c4fac1e VFNMADD213NEPBF16 zmm3{k7}, zmm0, zmmword ptr [r22] +0000000000001746 62fe7c4fbc1e VFNMADD231NEPBF16 zmm3{k7}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -18407,7 +20044,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -000000000000163E 62fe7c8fac1e VFNMADD213NEPBF16 xmm3{k7}{z}, xmm0, xmmword ptr [r22] +000000000000174C 62fe7c8fbc1e VFNMADD231NEPBF16 xmm3{k7}{z}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -18429,7 +20066,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000001644 62fe7cafac1e VFNMADD213NEPBF16 ymm3{k7}{z}, ymm0, ymmword ptr [r22] +0000000000001752 62fe7cafbc1e VFNMADD231NEPBF16 ymm3{k7}{z}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -18451,7 +20088,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -000000000000164A 62fe7ccfac1e VFNMADD213NEPBF16 zmm3{k7}{z}, zmm0, zmmword ptr [r22] +0000000000001758 62fe7ccfbc1e VFNMADD231NEPBF16 zmm3{k7}{z}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -18473,7 +20110,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000001650 62fe7c08bc1e VFNMADD231NEPBF16 xmm3, xmm0, xmmword ptr [r22] +000000000000175E 62fe7c089e1e VFNMSUB132NEPBF16 xmm3, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -18493,7 +20130,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000001656 62fe7c28bc1e VFNMADD231NEPBF16 ymm3, ymm0, ymmword ptr [r22] +0000000000001764 62fe7c289e1e VFNMSUB132NEPBF16 ymm3, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -18513,7 +20150,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -000000000000165C 62fe7c48bc1e VFNMADD231NEPBF16 zmm3, zmm0, zmmword ptr [r22] +000000000000176A 62fe7c489e1e VFNMSUB132NEPBF16 zmm3, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -18533,7 +20170,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000001662 62fe7c08bcde VFNMADD231NEPBF16 xmm3, xmm0, xmm6 +0000000000001770 62fe7c089ede VFNMSUB132NEPBF16 xmm3, xmm0, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -18552,7 +20189,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000001668 62fe7c28bcde VFNMADD231NEPBF16 ymm3, ymm0, ymm6 +0000000000001776 62fe7c289ede VFNMSUB132NEPBF16 ymm3, ymm0, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -18571,7 +20208,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -000000000000166E 62fe7c48bcde VFNMADD231NEPBF16 zmm3, zmm0, zmm6 +000000000000177C 62fe7c489ede VFNMSUB132NEPBF16 zmm3, zmm0, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -18590,7 +20227,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000001674 62fe7c18bc1e VFNMADD231NEPBF16 xmm3, xmm0, word ptr [r22]{1to8} +0000000000001782 62fe7c189e1e VFNMSUB132NEPBF16 xmm3, xmm0, word ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -18611,7 +20248,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 8 times -000000000000167A 62fe7c38bc1e VFNMADD231NEPBF16 ymm3, ymm0, word ptr [r22]{1to16} +0000000000001788 62fe7c389e1e VFNMSUB132NEPBF16 ymm3, ymm0, word ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -18632,7 +20269,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 16 times -0000000000001680 62fe7c58bc1e VFNMADD231NEPBF16 zmm3, zmm0, word ptr [r22]{1to32} +000000000000178E 62fe7c589e1e VFNMSUB132NEPBF16 zmm3, zmm0, word ptr [r22]{1to32} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -18653,7 +20290,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 32 times -0000000000001686 62fe7c0fbc1e VFNMADD231NEPBF16 xmm3{k7}, xmm0, xmmword ptr [r22] +0000000000001794 62fe7c0f9e1e VFNMSUB132NEPBF16 xmm3{k7}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -18674,7 +20311,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -000000000000168C 62fe7c2fbc1e VFNMADD231NEPBF16 ymm3{k7}, ymm0, ymmword ptr [r22] +000000000000179A 62fe7c2f9e1e VFNMSUB132NEPBF16 ymm3{k7}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -18695,7 +20332,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000001692 62fe7c4fbc1e VFNMADD231NEPBF16 zmm3{k7}, zmm0, zmmword ptr [r22] +00000000000017A0 62fe7c4f9e1e VFNMSUB132NEPBF16 zmm3{k7}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -18716,7 +20353,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000001698 62fe7c8fbc1e VFNMADD231NEPBF16 xmm3{k7}{z}, xmm0, xmmword ptr [r22] +00000000000017A6 62fe7c8f9e1e VFNMSUB132NEPBF16 xmm3{k7}{z}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -18738,7 +20375,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -000000000000169E 62fe7cafbc1e VFNMADD231NEPBF16 ymm3{k7}{z}, ymm0, ymmword ptr [r22] +00000000000017AC 62fe7caf9e1e VFNMSUB132NEPBF16 ymm3{k7}{z}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -18760,7 +20397,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -00000000000016A4 62fe7ccfbc1e VFNMADD231NEPBF16 zmm3{k7}{z}, zmm0, zmmword ptr [r22] +00000000000017B2 62fe7ccf9e1e VFNMSUB132NEPBF16 zmm3{k7}{z}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -18782,7 +20419,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -00000000000016AA 62fe7c089e1e VFNMSUB132NEPBF16 xmm3, xmm0, xmmword ptr [r22] +00000000000017B8 62fe7c08ae1e VFNMSUB213NEPBF16 xmm3, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -18802,7 +20439,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -00000000000016B0 62fe7c289e1e VFNMSUB132NEPBF16 ymm3, ymm0, ymmword ptr [r22] +00000000000017BE 62fe7c28ae1e VFNMSUB213NEPBF16 ymm3, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -18822,7 +20459,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -00000000000016B6 62fe7c489e1e VFNMSUB132NEPBF16 zmm3, zmm0, zmmword ptr [r22] +00000000000017C4 62fe7c48ae1e VFNMSUB213NEPBF16 zmm3, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -18842,7 +20479,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -00000000000016BC 62fe7c089ede VFNMSUB132NEPBF16 xmm3, xmm0, xmm6 +00000000000017CA 62fe7c08aede VFNMSUB213NEPBF16 xmm3, xmm0, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -18861,7 +20498,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -00000000000016C2 62fe7c289ede VFNMSUB132NEPBF16 ymm3, ymm0, ymm6 +00000000000017D0 62fe7c28aede VFNMSUB213NEPBF16 ymm3, ymm0, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -18880,7 +20517,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -00000000000016C8 62fe7c489ede VFNMSUB132NEPBF16 zmm3, zmm0, zmm6 +00000000000017D6 62fe7c48aede VFNMSUB213NEPBF16 zmm3, zmm0, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -18899,7 +20536,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -00000000000016CE 62fe7c189e1e VFNMSUB132NEPBF16 xmm3, xmm0, word ptr [r22]{1to8} +00000000000017DC 62fe7c18ae1e VFNMSUB213NEPBF16 xmm3, xmm0, word ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -18920,7 +20557,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 8 times -00000000000016D4 62fe7c389e1e VFNMSUB132NEPBF16 ymm3, ymm0, word ptr [r22]{1to16} +00000000000017E2 62fe7c38ae1e VFNMSUB213NEPBF16 ymm3, ymm0, word ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -18941,7 +20578,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 16 times -00000000000016DA 62fe7c589e1e VFNMSUB132NEPBF16 zmm3, zmm0, word ptr [r22]{1to32} +00000000000017E8 62fe7c58ae1e VFNMSUB213NEPBF16 zmm3, zmm0, word ptr [r22]{1to32} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -18962,7 +20599,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 32 times -00000000000016E0 62fe7c0f9e1e VFNMSUB132NEPBF16 xmm3{k7}, xmm0, xmmword ptr [r22] +00000000000017EE 62fe7c0fae1e VFNMSUB213NEPBF16 xmm3{k7}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -18983,7 +20620,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -00000000000016E6 62fe7c2f9e1e VFNMSUB132NEPBF16 ymm3{k7}, ymm0, ymmword ptr [r22] +00000000000017F4 62fe7c2fae1e VFNMSUB213NEPBF16 ymm3{k7}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -19004,7 +20641,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -00000000000016EC 62fe7c4f9e1e VFNMSUB132NEPBF16 zmm3{k7}, zmm0, zmmword ptr [r22] +00000000000017FA 62fe7c4fae1e VFNMSUB213NEPBF16 zmm3{k7}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -19025,7 +20662,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -00000000000016F2 62fe7c8f9e1e VFNMSUB132NEPBF16 xmm3{k7}{z}, xmm0, xmmword ptr [r22] +0000000000001800 62fe7c8fae1e VFNMSUB213NEPBF16 xmm3{k7}{z}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -19047,7 +20684,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -00000000000016F8 62fe7caf9e1e VFNMSUB132NEPBF16 ymm3{k7}{z}, ymm0, ymmword ptr [r22] +0000000000001806 62fe7cafae1e VFNMSUB213NEPBF16 ymm3{k7}{z}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -19069,7 +20706,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -00000000000016FE 62fe7ccf9e1e VFNMSUB132NEPBF16 zmm3{k7}{z}, zmm0, zmmword ptr [r22] +000000000000180C 62fe7ccfae1e VFNMSUB213NEPBF16 zmm3{k7}{z}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -19091,7 +20728,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000001704 62fe7c08ae1e VFNMSUB213NEPBF16 xmm3, xmm0, xmmword ptr [r22] +0000000000001812 62fe7c08be1e VFNMSUB231NEPBF16 xmm3, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -19111,7 +20748,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -000000000000170A 62fe7c28ae1e VFNMSUB213NEPBF16 ymm3, ymm0, ymmword ptr [r22] +0000000000001818 62fe7c28be1e VFNMSUB231NEPBF16 ymm3, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -19131,7 +20768,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000001710 62fe7c48ae1e VFNMSUB213NEPBF16 zmm3, zmm0, zmmword ptr [r22] +000000000000181E 62fe7c48be1e VFNMSUB231NEPBF16 zmm3, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -19151,7 +20788,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000001716 62fe7c08aede VFNMSUB213NEPBF16 xmm3, xmm0, xmm6 +0000000000001824 62fe7c08bede VFNMSUB231NEPBF16 xmm3, xmm0, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -19170,7 +20807,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -000000000000171C 62fe7c28aede VFNMSUB213NEPBF16 ymm3, ymm0, ymm6 +000000000000182A 62fe7c28bede VFNMSUB231NEPBF16 ymm3, ymm0, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -19189,7 +20826,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000001722 62fe7c48aede VFNMSUB213NEPBF16 zmm3, zmm0, zmm6 +0000000000001830 62fe7c48bede VFNMSUB231NEPBF16 zmm3, zmm0, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -19208,7 +20845,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000001728 62fe7c18ae1e VFNMSUB213NEPBF16 xmm3, xmm0, word ptr [r22]{1to8} +0000000000001836 62fe7c18be1e VFNMSUB231NEPBF16 xmm3, xmm0, word ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -19229,7 +20866,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 8 times -000000000000172E 62fe7c38ae1e VFNMSUB213NEPBF16 ymm3, ymm0, word ptr [r22]{1to16} +000000000000183C 62fe7c38be1e VFNMSUB231NEPBF16 ymm3, ymm0, word ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -19250,7 +20887,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 16 times -0000000000001734 62fe7c58ae1e VFNMSUB213NEPBF16 zmm3, zmm0, word ptr [r22]{1to32} +0000000000001842 62fe7c58be1e VFNMSUB231NEPBF16 zmm3, zmm0, word ptr [r22]{1to32} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -19271,7 +20908,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 32 times -000000000000173A 62fe7c0fae1e VFNMSUB213NEPBF16 xmm3{k7}, xmm0, xmmword ptr [r22] +0000000000001848 62fe7c0fbe1e VFNMSUB231NEPBF16 xmm3{k7}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -19292,7 +20929,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000001740 62fe7c2fae1e VFNMSUB213NEPBF16 ymm3{k7}, ymm0, ymmword ptr [r22] +000000000000184E 62fe7c2fbe1e VFNMSUB231NEPBF16 ymm3{k7}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -19313,7 +20950,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000001746 62fe7c4fae1e VFNMSUB213NEPBF16 zmm3{k7}, zmm0, zmmword ptr [r22] +0000000000001854 62fe7c4fbe1e VFNMSUB231NEPBF16 zmm3{k7}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -19334,7 +20971,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -000000000000174C 62fe7c8fae1e VFNMSUB213NEPBF16 xmm3{k7}{z}, xmm0, xmmword ptr [r22] +000000000000185A 62fe7c8fbe1e VFNMSUB231NEPBF16 xmm3{k7}{z}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -19356,7 +20993,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000001752 62fe7cafae1e VFNMSUB213NEPBF16 ymm3{k7}{z}, ymm0, ymmword ptr [r22] +0000000000001860 62fe7cafbe1e VFNMSUB231NEPBF16 ymm3{k7}{z}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -19378,7 +21015,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000001758 62fe7ccfae1e VFNMSUB213NEPBF16 zmm3{k7}{z}, zmm0, zmmword ptr [r22] +0000000000001866 62fe7ccfbe1e VFNMSUB231NEPBF16 zmm3{k7}{z}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -19400,7 +21037,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -000000000000175E 62fe7c08be1e VFNMSUB231NEPBF16 xmm3, xmm0, xmmword ptr [r22] +000000000000186C 62fb7f08661ebd VFPCLASSPBF16 k3, xmmword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -19414,13 +21051,13 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: RW, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: Mask, RegSize: 8, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, + Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, + Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001764 62fe7c28be1e VFNMSUB231NEPBF16 ymm3, ymm0, ymmword ptr [r22] +0000000000001873 62fb7f28661ebd VFPCLASSPBF16 k3, ymmword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -19434,13 +21071,13 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: RW, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: Mask, RegSize: 8, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, + Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, + Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000176A 62fe7c48be1e VFNMSUB231NEPBF16 zmm3, zmm0, zmmword ptr [r22] +000000000000187A 62fb7f48661ebd VFPCLASSPBF16 k3, zmmword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -19454,13 +21091,13 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: RW, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: Mask, RegSize: 8, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, + Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, + Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001770 62fe7c08bede VFNMSUB231NEPBF16 xmm3, xmm0, xmm6 +0000000000001881 62fb7f0866debd VFPCLASSPBF16 k3, xmm6, 0xbd DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -19474,12 +21111,12 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: RW, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: Mask, RegSize: 8, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001776 62fe7c28bede VFNMSUB231NEPBF16 ymm3, ymm0, ymm6 +0000000000001888 62fb7f2866debd VFPCLASSPBF16 k3, ymm6, 0xbd DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -19493,12 +21130,12 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: RW, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: Mask, RegSize: 8, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 + Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000177C 62fe7c48bede VFNMSUB231NEPBF16 zmm3, zmm0, zmm6 +000000000000188F 62fb7f4866debd VFPCLASSPBF16 k3, zmm6, 0xbd DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -19512,12 +21149,12 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: RW, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: Mask, RegSize: 8, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 + Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001782 62fe7c18be1e VFNMSUB231NEPBF16 xmm3, xmm0, word ptr [r22]{1to8} +0000000000001896 62fb7f18661ebd VFPCLASSPBF16 k3, word ptr [r22]{1to8}, 0xbd DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -19531,14 +21168,14 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: RW, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: Mask, RegSize: 8, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, + Operand: 2, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 8 times + Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001788 62fe7c38be1e VFNMSUB231NEPBF16 ymm3, ymm0, word ptr [r22]{1to16} +000000000000189D 62fb7f38661ebd VFPCLASSPBF16 k3, word ptr [r22]{1to16}, 0xbd DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -19552,14 +21189,14 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: RW, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: Mask, RegSize: 8, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, + Operand: 2, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 16 times + Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000178E 62fe7c58be1e VFNMSUB231NEPBF16 zmm3, zmm0, word ptr [r22]{1to32} +00000000000018A4 62fb7f58661ebd VFPCLASSPBF16 k3, word ptr [r22]{1to32}, 0xbd DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -19573,14 +21210,14 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: RW, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: Mask, RegSize: 8, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, + Operand: 2, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 32 times + Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001794 62fe7c0fbe1e VFNMSUB231NEPBF16 xmm3{k7}, xmm0, xmmword ptr [r22] +00000000000018AB 62fb7f0f661ebd VFPCLASSPBF16 k3{k7}, xmmword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -19594,14 +21231,14 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: RW, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: Mask, RegSize: 8, RegId: 3, RegCount: 1 Decorator: Mask k7 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, + Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, + Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000179A 62fe7c2fbe1e VFNMSUB231NEPBF16 ymm3{k7}, ymm0, ymmword ptr [r22] +00000000000018B2 62fb7f2f661ebd VFPCLASSPBF16 k3{k7}, ymmword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -19615,14 +21252,14 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: RW, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: Mask, RegSize: 8, RegId: 3, RegCount: 1 Decorator: Mask k7 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, + Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, + Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000017A0 62fe7c4fbe1e VFNMSUB231NEPBF16 zmm3{k7}, zmm0, zmmword ptr [r22] +00000000000018B9 62fb7f4f661ebd VFPCLASSPBF16 k3{k7}, zmmword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -19636,14 +21273,14 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: RW, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: Mask, RegSize: 8, RegId: 3, RegCount: 1 Decorator: Mask k7 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, + Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, + Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000017A6 62fe7c8fbe1e VFNMSUB231NEPBF16 xmm3{k7}{z}, xmm0, xmmword ptr [r22] +00000000000018C0 62fe7c08421e VGETEXPPBF16 xmm3, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -19657,15 +21294,12 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: RW, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Decorator: Mask k7 - Decorator: Zero (no merging) - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -00000000000017AC 62fe7cafbe1e VFNMSUB231NEPBF16 ymm3{k7}{z}, ymm0, ymmword ptr [r22] +00000000000018C6 62fe7c28421e VGETEXPPBF16 ymm3, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -19679,15 +21313,12 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: RW, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 - Decorator: Mask k7 - Decorator: Zero (no merging) - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, + Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -00000000000017B2 62fe7ccfbe1e VFNMSUB231NEPBF16 zmm3{k7}{z}, zmm0, zmmword ptr [r22] +00000000000018CC 62fe7c48421e VGETEXPPBF16 zmm3, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -19701,15 +21332,12 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: RW, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 - Decorator: Mask k7 - Decorator: Zero (no merging) - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -00000000000017B8 62fb7f08661ebd VFPCLASSPBF16 k3, xmmword ptr [r22], 0xbd +00000000000018D2 62fe7c0842de VGETEXPPBF16 xmm3, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -19723,13 +21351,11 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: Mask, RegSize: 8, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, - Segment: 3, Base: 22, - Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -00000000000017BF 62fb7f28661ebd VFPCLASSPBF16 k3, ymmword ptr [r22], 0xbd +00000000000018D8 62fe7c2842de VGETEXPPBF16 ymm3, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -19743,13 +21369,11 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: Mask, RegSize: 8, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, - Segment: 3, Base: 22, - Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -00000000000017C6 62fb7f48661ebd VFPCLASSPBF16 k3, zmmword ptr [r22], 0xbd +00000000000018DE 62fe7c4842de VGETEXPPBF16 zmm3, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -19763,13 +21387,11 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: Mask, RegSize: 8, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, - Segment: 3, Base: 22, - Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -00000000000017CD 62fb7f0866debd VFPCLASSPBF16 k3, xmm6, 0xbd +00000000000018E4 62fe7c18421e VGETEXPPBF16 xmm3, word ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -19783,12 +21405,13 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: Mask, RegSize: 8, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 - Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + Operand: 2, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, + Segment: 3, Base: 22, + Decorator: Broadcast 2 bytes element 8 times -00000000000017D4 62fb7f2866debd VFPCLASSPBF16 k3, ymm6, 0xbd +00000000000018EA 62fe7c38421e VGETEXPPBF16 ymm3, word ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -19802,12 +21425,13 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: Mask, RegSize: 8, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 - Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + Operand: 2, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, + Segment: 3, Base: 22, + Decorator: Broadcast 2 bytes element 16 times -00000000000017DB 62fb7f4866debd VFPCLASSPBF16 k3, zmm6, 0xbd +00000000000018F0 62fe7c58421e VGETEXPPBF16 zmm3, word ptr [r22]{1to32} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -19821,12 +21445,13 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: Mask, RegSize: 8, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 - Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + Operand: 2, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, + Segment: 3, Base: 22, + Decorator: Broadcast 2 bytes element 32 times -00000000000017E2 62fb7f18661ebd VFPCLASSPBF16 k3, word ptr [r22]{1to8}, 0xbd +00000000000018F6 62fe7c0f421e VGETEXPPBF16 xmm3{k7}, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -19840,14 +21465,13 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: Mask, RegSize: 8, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Decorator: Mask k7 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, - Decorator: Broadcast 2 bytes element 8 times - Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000017E9 62fb7f38661ebd VFPCLASSPBF16 k3, word ptr [r22]{1to16}, 0xbd +00000000000018FC 62fe7c2f421e VGETEXPPBF16 ymm3{k7}, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -19861,14 +21485,13 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: Mask, RegSize: 8, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, + Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Decorator: Mask k7 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, - Decorator: Broadcast 2 bytes element 16 times - Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000017F0 62fb7f58661ebd VFPCLASSPBF16 k3, word ptr [r22]{1to32}, 0xbd +0000000000001902 62fe7c4f421e VGETEXPPBF16 zmm3{k7}, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -19882,14 +21505,13 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: Mask, RegSize: 8, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Decorator: Mask k7 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, - Decorator: Broadcast 2 bytes element 32 times - Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000017F7 62fb7f0f661ebd VFPCLASSPBF16 k3{k7}, xmmword ptr [r22], 0xbd +0000000000001908 62fe7c8f421e VGETEXPPBF16 xmm3{k7}{z}, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -19903,14 +21525,14 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: Mask, RegSize: 8, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Decorator: Mask k7 + Decorator: Zero (no merging) Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, - Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000017FE 62fb7f2f661ebd VFPCLASSPBF16 k3{k7}, ymmword ptr [r22], 0xbd +000000000000190E 62fe7caf421e VGETEXPPBF16 ymm3{k7}{z}, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -19924,14 +21546,14 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: Mask, RegSize: 8, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 Decorator: Mask k7 + Decorator: Zero (no merging) Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, - Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001805 62fb7f4f661ebd VFPCLASSPBF16 k3{k7}, zmmword ptr [r22], 0xbd +0000000000001914 62fe7ccf421e VGETEXPPBF16 zmm3{k7}{z}, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -19945,14 +21567,14 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: Mask, RegSize: 8, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 Decorator: Mask k7 + Decorator: Zero (no merging) Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, - Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000180C 62fd7d08421e VGETEXPPBF16 xmm3, xmmword ptr [r22] +000000000000191A 62fb7f08261ebd VGETMANTPBF16 xmm3, xmmword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -19970,8 +21592,9 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, + Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001812 62fd7d28421e VGETEXPPBF16 ymm3, ymmword ptr [r22] +0000000000001921 62fb7f28261ebd VGETMANTPBF16 ymm3, ymmword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -19989,8 +21612,9 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, + Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001818 62fd7d48421e VGETEXPPBF16 zmm3, zmmword ptr [r22] +0000000000001928 62fb7f48261ebd VGETMANTPBF16 zmm3, zmmword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -20008,8 +21632,9 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, + Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000181E 62fd7d0842de VGETEXPPBF16 xmm3, xmm6 +000000000000192F 62fb7f0826debd VGETMANTPBF16 xmm3, xmm6, 0xbd DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -20026,8 +21651,9 @@ Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001824 62fd7d2842de VGETEXPPBF16 ymm3, ymm6 +0000000000001936 62fb7f2826debd VGETMANTPBF16 ymm3, ymm6, 0xbd DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -20044,8 +21670,9 @@ Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 + Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000182A 62fd7d4842de VGETEXPPBF16 zmm3, zmm6 +000000000000193D 62fb7f4826debd VGETMANTPBF16 zmm3, zmm6, 0xbd DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -20062,8 +21689,9 @@ Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 + Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001830 62fd7d18421e VGETEXPPBF16 xmm3, word ptr [r22]{1to8} +0000000000001944 62fb7f18261ebd VGETMANTPBF16 xmm3, word ptr [r22]{1to8}, 0xbd DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -20082,8 +21710,9 @@ Operand: 2, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 8 times + Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001836 62fd7d38421e VGETEXPPBF16 ymm3, word ptr [r22]{1to16} +000000000000194B 62fb7f38261ebd VGETMANTPBF16 ymm3, word ptr [r22]{1to16}, 0xbd DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -20102,8 +21731,9 @@ Operand: 2, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 16 times + Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000183C 62fd7d58421e VGETEXPPBF16 zmm3, word ptr [r22]{1to32} +0000000000001952 62fb7f58261ebd VGETMANTPBF16 zmm3, word ptr [r22]{1to32}, 0xbd DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -20122,8 +21752,9 @@ Operand: 2, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 32 times + Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001842 62fd7d0f421e VGETEXPPBF16 xmm3{k7}, xmmword ptr [r22] +0000000000001959 62fb7f0f261ebd VGETMANTPBF16 xmm3{k7}, xmmword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -20142,8 +21773,9 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, + Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001848 62fd7d2f421e VGETEXPPBF16 ymm3{k7}, ymmword ptr [r22] +0000000000001960 62fb7f2f261ebd VGETMANTPBF16 ymm3{k7}, ymmword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -20162,8 +21794,9 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, + Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000184E 62fd7d4f421e VGETEXPPBF16 zmm3{k7}, zmmword ptr [r22] +0000000000001967 62fb7f4f261ebd VGETMANTPBF16 zmm3{k7}, zmmword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -20182,8 +21815,9 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, + Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001854 62fd7d8f421e VGETEXPPBF16 xmm3{k7}{z}, xmmword ptr [r22] +000000000000196E 62fb7f8f261ebd VGETMANTPBF16 xmm3{k7}{z}, xmmword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -20203,8 +21837,9 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, + Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000185A 62fd7daf421e VGETEXPPBF16 ymm3{k7}{z}, ymmword ptr [r22] +0000000000001975 62fb7faf261ebd VGETMANTPBF16 ymm3{k7}{z}, ymmword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -20224,8 +21859,9 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, + Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001860 62fd7dcf421e VGETEXPPBF16 zmm3{k7}{z}, zmmword ptr [r22] +000000000000197C 62fb7fcf261ebd VGETMANTPBF16 zmm3{k7}{z}, zmmword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -20245,8 +21881,9 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, + Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001866 62fb7f08261ebd VGETMANTPBF16 xmm3, xmmword ptr [r22], 0xbd +0000000000001983 62fd7d085f1e VMAXPBF16 xmm3, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -20262,11 +21899,11 @@ BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, + Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, - Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000186D 62fb7f28261ebd VGETMANTPBF16 ymm3, ymmword ptr [r22], 0xbd +0000000000001989 62fd7d285f1e VMAXPBF16 ymm3, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -20282,11 +21919,11 @@ BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, + Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, - Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001874 62fb7f48261ebd VGETMANTPBF16 zmm3, zmmword ptr [r22], 0xbd +000000000000198F 62fd7d485f1e VMAXPBF16 zmm3, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -20302,11 +21939,11 @@ BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, + Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, - Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000187B 62fb7f0826debd VGETMANTPBF16 xmm3, xmm6, 0xbd +0000000000001995 62fd7d085fde VMAXPBF16 xmm3, xmm0, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -20322,10 +21959,10 @@ BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 - Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000001882 62fb7f2826debd VGETMANTPBF16 ymm3, ymm6, 0xbd +000000000000199B 62fd7d285fde VMAXPBF16 ymm3, ymm0, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -20341,10 +21978,10 @@ BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 - Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000001889 62fb7f4826debd VGETMANTPBF16 zmm3, zmm6, 0xbd +00000000000019A1 62fd7d485fde VMAXPBF16 zmm3, zmm0, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -20360,10 +21997,10 @@ BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 - Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000001890 62fb7f18261ebd VGETMANTPBF16 xmm3, word ptr [r22]{1to8}, 0xbd +00000000000019A7 62fd7d185f1e VMAXPBF16 xmm3, xmm0, word ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -20379,12 +22016,12 @@ BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, + Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 8 times - Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001897 62fb7f38261ebd VGETMANTPBF16 ymm3, word ptr [r22]{1to16}, 0xbd +00000000000019AD 62fd7d385f1e VMAXPBF16 ymm3, ymm0, word ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -20400,12 +22037,12 @@ BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, + Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 16 times - Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000189E 62fb7f58261ebd VGETMANTPBF16 zmm3, word ptr [r22]{1to32}, 0xbd +00000000000019B3 62fd7d585f1e VMAXPBF16 zmm3, zmm0, word ptr [r22]{1to32} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -20421,12 +22058,12 @@ BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, + Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 32 times - Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000018A5 62fb7f0f261ebd VGETMANTPBF16 xmm3{k7}, xmmword ptr [r22], 0xbd +00000000000019B9 62fd7d0f5f1e VMAXPBF16 xmm3{k7}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -20443,11 +22080,11 @@ Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Decorator: Mask k7 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 - Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, + Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, - Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000018AC 62fb7f2f261ebd VGETMANTPBF16 ymm3{k7}, ymmword ptr [r22], 0xbd +00000000000019BF 62fd7d2f5f1e VMAXPBF16 ymm3{k7}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -20464,11 +22101,11 @@ Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 Decorator: Mask k7 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 - Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, + Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, - Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000018B3 62fb7f4f261ebd VGETMANTPBF16 zmm3{k7}, zmmword ptr [r22], 0xbd +00000000000019C5 62fd7d4f5f1e VMAXPBF16 zmm3{k7}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -20485,11 +22122,11 @@ Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 Decorator: Mask k7 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 - Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, + Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, - Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000018BA 62fb7f8f261ebd VGETMANTPBF16 xmm3{k7}{z}, xmmword ptr [r22], 0xbd +00000000000019CB 62fd7d8f5f1e VMAXPBF16 xmm3{k7}{z}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -20507,11 +22144,11 @@ Decorator: Mask k7 Decorator: Zero (no merging) Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 - Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, + Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, - Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000018C1 62fb7faf261ebd VGETMANTPBF16 ymm3{k7}{z}, ymmword ptr [r22], 0xbd +00000000000019D1 62fd7daf5f1e VMAXPBF16 ymm3{k7}{z}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -20529,11 +22166,11 @@ Decorator: Mask k7 Decorator: Zero (no merging) Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 - Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, + Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, - Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000018C8 62fb7fcf261ebd VGETMANTPBF16 zmm3{k7}{z}, zmmword ptr [r22], 0xbd +00000000000019D7 62fd7dcf5f1e VMAXPBF16 zmm3{k7}{z}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -20551,13 +22188,13 @@ Decorator: Mask k7 Decorator: Zero (no merging) Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 - Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, + Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, - Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000018CF 62fd7d085f1e VMAXPBF16 xmm3, xmm0, xmmword ptr [r22] +00000000000019DD 62fb7f08521ebd VMINMAXNEPBF16 xmm3, xmm0, xmmword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -20574,10 +22211,11 @@ Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, + Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000018D5 62fd7d285f1e VMAXPBF16 ymm3, ymm0, ymmword ptr [r22] +00000000000019E4 62fb7f28521ebd VMINMAXNEPBF16 ymm3, ymm0, ymmword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 256 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -20594,10 +22232,11 @@ Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, + Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000018DB 62fd7d485f1e VMAXPBF16 zmm3, zmm0, zmmword ptr [r22] +00000000000019EB 62fb7f48521ebd VMINMAXNEPBF16 zmm3, zmm0, zmmword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 512 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -20614,10 +22253,11 @@ Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, + Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000018E1 62fd7d085fde VMAXPBF16 xmm3, xmm0, xmm6 +00000000000019F2 62fb7f0852debd VMINMAXNEPBF16 xmm3, xmm0, xmm6, 0xbd DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -20633,10 +22273,11 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000018E7 62fd7d285fde VMAXPBF16 ymm3, ymm0, ymm6 +00000000000019F9 62fb7f2852debd VMINMAXNEPBF16 ymm3, ymm0, ymm6, 0xbd DSIZE: 32, ASIZE: 64, VLEN: 256 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -20652,10 +22293,11 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 + Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000018ED 62fd7d485fde VMAXPBF16 zmm3, zmm0, zmm6 +0000000000001A00 62fb7f4852debd VMINMAXNEPBF16 zmm3, zmm0, zmm6, 0xbd DSIZE: 32, ASIZE: 64, VLEN: 512 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -20671,10 +22313,11 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 + Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000018F3 62fd7d185f1e VMAXPBF16 xmm3, xmm0, word ptr [r22]{1to8} +0000000000001A07 62fb7f18521ebd VMINMAXNEPBF16 xmm3, xmm0, word ptr [r22]{1to8}, 0xbd DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -20692,10 +22335,11 @@ Operand: 3, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 8 times + Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000018F9 62fd7d385f1e VMAXPBF16 ymm3, ymm0, word ptr [r22]{1to16} +0000000000001A0E 62fb7f38521ebd VMINMAXNEPBF16 ymm3, ymm0, word ptr [r22]{1to16}, 0xbd DSIZE: 32, ASIZE: 64, VLEN: 256 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -20713,10 +22357,11 @@ Operand: 3, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 16 times + Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000018FF 62fd7d585f1e VMAXPBF16 zmm3, zmm0, word ptr [r22]{1to32} +0000000000001A15 62fb7f58521ebd VMINMAXNEPBF16 zmm3, zmm0, word ptr [r22]{1to32}, 0xbd DSIZE: 32, ASIZE: 64, VLEN: 512 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -20734,10 +22379,11 @@ Operand: 3, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 32 times + Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001905 62fd7d0f5f1e VMAXPBF16 xmm3{k7}, xmm0, xmmword ptr [r22] +0000000000001A1C 62fb7f0f521ebd VMINMAXNEPBF16 xmm3{k7}, xmm0, xmmword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -20755,10 +22401,11 @@ Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, + Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000190B 62fd7d2f5f1e VMAXPBF16 ymm3{k7}, ymm0, ymmword ptr [r22] +0000000000001A23 62fb7f2f521ebd VMINMAXNEPBF16 ymm3{k7}, ymm0, ymmword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 256 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -20776,10 +22423,11 @@ Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, + Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001911 62fd7d4f5f1e VMAXPBF16 zmm3{k7}, zmm0, zmmword ptr [r22] +0000000000001A2A 62fb7f4f521ebd VMINMAXNEPBF16 zmm3{k7}, zmm0, zmmword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 512 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -20797,10 +22445,11 @@ Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, + Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001917 62fd7d8f5f1e VMAXPBF16 xmm3{k7}{z}, xmm0, xmmword ptr [r22] +0000000000001A31 62fb7f8f521ebd VMINMAXNEPBF16 xmm3{k7}{z}, xmm0, xmmword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -20819,10 +22468,11 @@ Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, + Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000191D 62fd7daf5f1e VMAXPBF16 ymm3{k7}{z}, ymm0, ymmword ptr [r22] +0000000000001A38 62fb7faf521ebd VMINMAXNEPBF16 ymm3{k7}{z}, ymm0, ymmword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 256 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -20841,10 +22491,11 @@ Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, + Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001923 62fd7dcf5f1e VMAXPBF16 zmm3{k7}{z}, zmm0, zmmword ptr [r22] +0000000000001A3F 62fb7fcf521ebd VMINMAXNEPBF16 zmm3{k7}{z}, zmm0, zmmword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 512 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -20863,12 +22514,14 @@ Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, + Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001929 62fb7f08521ebd VMINMAXNEPBF16 xmm3, xmm0, xmmword ptr [r22], 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 128 +0000000000001A46 62fbfd08521ebd VMINMAXPD xmm3, xmm0, xmmword ptr [r22], 0xbd + DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full - Exception class: EVEX, exception type: E4 + Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20885,11 +22538,12 @@ Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001930 62fb7f28521ebd VMINMAXNEPBF16 ymm3, ymm0, ymmword ptr [r22], 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 256 +0000000000001A4D 62fbfd28521ebd VMINMAXPD ymm3, ymm0, ymmword ptr [r22], 0xbd + DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full - Exception class: EVEX, exception type: E4 + Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20906,11 +22560,12 @@ Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001937 62fb7f48521ebd VMINMAXNEPBF16 zmm3, zmm0, zmmword ptr [r22], 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 512 +0000000000001A54 62fbfd48521ebd VMINMAXPD zmm3, zmm0, zmmword ptr [r22], 0xbd + DSIZE: 64, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full - Exception class: EVEX, exception type: E4 + Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20927,11 +22582,12 @@ Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000193E 62fb7f0852debd VMINMAXNEPBF16 xmm3, xmm0, xmm6, 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 128 +0000000000001A5B 62fbfd0852debd VMINMAXPD xmm3, xmm0, xmm6, 0xbd + DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full - Exception class: EVEX, exception type: E4 + Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20947,11 +22603,12 @@ Operand: 3, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001945 62fb7f2852debd VMINMAXNEPBF16 ymm3, ymm0, ymm6, 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 256 +0000000000001A62 62fbfd2852debd VMINMAXPD ymm3, ymm0, ymm6, 0xbd + DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full - Exception class: EVEX, exception type: E4 + Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20967,11 +22624,12 @@ Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000194C 62fb7f4852debd VMINMAXNEPBF16 zmm3, zmm0, zmm6, 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 512 +0000000000001A69 62fbfd4852debd VMINMAXPD zmm3, zmm0, zmm6, 0xbd + DSIZE: 64, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full - Exception class: EVEX, exception type: E4 + Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20987,11 +22645,12 @@ Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001953 62fb7f18521ebd VMINMAXNEPBF16 xmm3, xmm0, word ptr [r22]{1to8}, 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 128 +0000000000001A70 62fbfd18521ebd VMINMAXPD xmm3, xmm0, qword ptr [r22]{1to2}, 0xbd + DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full - Exception class: EVEX, exception type: E4 + Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21004,16 +22663,17 @@ Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, + Operand: 3, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Broadcast: yes, Segment: 3, Base: 22, - Decorator: Broadcast 2 bytes element 8 times + Decorator: Broadcast 8 bytes element 2 times Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000195A 62fb7f38521ebd VMINMAXNEPBF16 ymm3, ymm0, word ptr [r22]{1to16}, 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 256 +0000000000001A77 62fbfd38521ebd VMINMAXPD ymm3, ymm0, qword ptr [r22]{1to4}, 0xbd + DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full - Exception class: EVEX, exception type: E4 + Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21026,16 +22686,17 @@ Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, + Operand: 3, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Broadcast: yes, Segment: 3, Base: 22, - Decorator: Broadcast 2 bytes element 16 times + Decorator: Broadcast 8 bytes element 4 times Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001961 62fb7f58521ebd VMINMAXNEPBF16 zmm3, zmm0, word ptr [r22]{1to32}, 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 512 +0000000000001A7E 62fbfd58521ebd VMINMAXPD zmm3, zmm0, qword ptr [r22]{1to8}, 0xbd + DSIZE: 64, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full - Exception class: EVEX, exception type: E4 + Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21048,16 +22709,17 @@ Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, + Operand: 3, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Broadcast: yes, Segment: 3, Base: 22, - Decorator: Broadcast 2 bytes element 32 times + Decorator: Broadcast 8 bytes element 8 times Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001968 62fb7f0f521ebd VMINMAXNEPBF16 xmm3{k7}, xmm0, xmmword ptr [r22], 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 128 +0000000000001A85 62fbfd0f521ebd VMINMAXPD xmm3{k7}, xmm0, xmmword ptr [r22], 0xbd + DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full - Exception class: EVEX, exception type: E4 + Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21075,11 +22737,12 @@ Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000196F 62fb7f2f521ebd VMINMAXNEPBF16 ymm3{k7}, ymm0, ymmword ptr [r22], 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 256 +0000000000001A8C 62fbfd2f521ebd VMINMAXPD ymm3{k7}, ymm0, ymmword ptr [r22], 0xbd + DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full - Exception class: EVEX, exception type: E4 + Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21097,11 +22760,12 @@ Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001976 62fb7f4f521ebd VMINMAXNEPBF16 zmm3{k7}, zmm0, zmmword ptr [r22], 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 512 +0000000000001A93 62fbfd4f521ebd VMINMAXPD zmm3{k7}, zmm0, zmmword ptr [r22], 0xbd + DSIZE: 64, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full - Exception class: EVEX, exception type: E4 + Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21119,11 +22783,12 @@ Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000197D 62fb7f8f521ebd VMINMAXNEPBF16 xmm3{k7}{z}, xmm0, xmmword ptr [r22], 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 128 +0000000000001A9A 62fbfd8f521ebd VMINMAXPD xmm3{k7}{z}, xmm0, xmmword ptr [r22], 0xbd + DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full - Exception class: EVEX, exception type: E4 + Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21142,11 +22807,12 @@ Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001984 62fb7faf521ebd VMINMAXNEPBF16 ymm3{k7}{z}, ymm0, ymmword ptr [r22], 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 256 +0000000000001AA1 62fbfdaf521ebd VMINMAXPD ymm3{k7}{z}, ymm0, ymmword ptr [r22], 0xbd + DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full - Exception class: EVEX, exception type: E4 + Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21165,11 +22831,12 @@ Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000198B 62fb7fcf521ebd VMINMAXNEPBF16 zmm3{k7}{z}, zmm0, zmmword ptr [r22], 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 512 +0000000000001AA8 62fbfdcf521ebd VMINMAXPD zmm3{k7}{z}, zmm0, zmmword ptr [r22], 0xbd + DSIZE: 64, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full - Exception class: EVEX, exception type: E4 + Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21188,11 +22855,180 @@ Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001992 62fbfd08521ebd VMINMAXPD xmm3, xmm0, xmmword ptr [r22], 0xbd - DSIZE: 64, ASIZE: 64, VLEN: 128 +0000000000001AAF 62fbfd1852debd VMINMAXPD zmm3, zmm0, zmm6, {sae}, 0xbd + DSIZE: 64, ASIZE: 64, VLEN: 512 + ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 + Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + +0000000000001AB6 62fbfd3852debd VMINMAXPD zmm3, zmm0, zmm6, {sae}, 0xbd + DSIZE: 64, ASIZE: 64, VLEN: 512 + ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 + Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + +0000000000001ABD 62fbfd5852debd VMINMAXPD zmm3, zmm0, zmm6, {sae}, 0xbd + DSIZE: 64, ASIZE: 64, VLEN: 512 + ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 + Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + +0000000000001AC4 62fbfd7852debd VMINMAXPD zmm3, zmm0, zmm6, {sae}, 0xbd + DSIZE: 64, ASIZE: 64, VLEN: 512 + ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 + Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + +0000000000001ACB 62fbf91852debd VMINMAXPD ymm3, ymm0, ymm6, {sae}, 0xbd + DSIZE: 64, ASIZE: 64, VLEN: 256 + ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 + Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + +0000000000001AD2 62fbf93852debd VMINMAXPD ymm3, ymm0, ymm6, {sae}, 0xbd + DSIZE: 64, ASIZE: 64, VLEN: 256 + ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 + Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + +0000000000001AD9 62fbf95852debd VMINMAXPD ymm3, ymm0, ymm6, {sae}, 0xbd + DSIZE: 64, ASIZE: 64, VLEN: 256 + ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 + Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + +0000000000001AE0 62fbf97852debd VMINMAXPD ymm3, ymm0, ymm6, {sae}, 0xbd + DSIZE: 64, ASIZE: 64, VLEN: 256 + ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 + Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + +0000000000001AE7 62fb7c08521ebd VMINMAXPH xmm3, xmm0, xmmword ptr [r22], 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21209,11 +23045,12 @@ Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001999 62fbfd28521ebd VMINMAXPD ymm3, ymm0, ymmword ptr [r22], 0xbd - DSIZE: 64, ASIZE: 64, VLEN: 256 +0000000000001AEE 62fb7c28521ebd VMINMAXPH ymm3, ymm0, ymmword ptr [r22], 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21230,11 +23067,12 @@ Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000019A0 62fbfd48521ebd VMINMAXPD zmm3, zmm0, zmmword ptr [r22], 0xbd - DSIZE: 64, ASIZE: 64, VLEN: 512 +0000000000001AF5 62fb7c48521ebd VMINMAXPH zmm3, zmm0, zmmword ptr [r22], 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21251,11 +23089,12 @@ Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000019A7 62fbfd0852debd VMINMAXPD xmm3, xmm0, xmm6, 0xbd - DSIZE: 64, ASIZE: 64, VLEN: 128 +0000000000001AFC 62fb7c0852debd VMINMAXPH xmm3, xmm0, xmm6, 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21271,11 +23110,12 @@ Operand: 3, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000019AE 62fbfd2852debd VMINMAXPD ymm3, ymm0, ymm6, 0xbd - DSIZE: 64, ASIZE: 64, VLEN: 256 +0000000000001B03 62fb7c2852debd VMINMAXPH ymm3, ymm0, ymm6, 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21291,11 +23131,12 @@ Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000019B5 62fbfd4852debd VMINMAXPD zmm3, zmm0, zmm6, 0xbd - DSIZE: 64, ASIZE: 64, VLEN: 512 +0000000000001B0A 62fb7c4852debd VMINMAXPH zmm3, zmm0, zmm6, 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21311,11 +23152,12 @@ Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000019BC 62fbfd18521ebd VMINMAXPD xmm3, xmm0, qword ptr [r22]{1to2}, 0xbd - DSIZE: 64, ASIZE: 64, VLEN: 128 +0000000000001B11 62fb7c18521ebd VMINMAXPH xmm3, xmm0, word ptr [r22]{1to8}, 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21328,16 +23170,17 @@ Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Broadcast: yes, + Operand: 3, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, Segment: 3, Base: 22, - Decorator: Broadcast 8 bytes element 2 times + Decorator: Broadcast 2 bytes element 8 times Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000019C3 62fbfd38521ebd VMINMAXPD ymm3, ymm0, qword ptr [r22]{1to4}, 0xbd - DSIZE: 64, ASIZE: 64, VLEN: 256 +0000000000001B18 62fb7c38521ebd VMINMAXPH ymm3, ymm0, word ptr [r22]{1to16}, 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21350,16 +23193,17 @@ Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Broadcast: yes, + Operand: 3, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, Segment: 3, Base: 22, - Decorator: Broadcast 8 bytes element 4 times + Decorator: Broadcast 2 bytes element 16 times Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000019CA 62fbfd58521ebd VMINMAXPD zmm3, zmm0, qword ptr [r22]{1to8}, 0xbd - DSIZE: 64, ASIZE: 64, VLEN: 512 +0000000000001B1F 62fb7c58521ebd VMINMAXPH zmm3, zmm0, word ptr [r22]{1to32}, 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21372,16 +23216,17 @@ Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Broadcast: yes, + Operand: 3, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, Segment: 3, Base: 22, - Decorator: Broadcast 8 bytes element 8 times + Decorator: Broadcast 2 bytes element 32 times Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000019D1 62fbfd0f521ebd VMINMAXPD xmm3{k7}, xmm0, xmmword ptr [r22], 0xbd - DSIZE: 64, ASIZE: 64, VLEN: 128 +0000000000001B26 62fb7c0f521ebd VMINMAXPH xmm3{k7}, xmm0, xmmword ptr [r22], 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21399,11 +23244,12 @@ Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000019D8 62fbfd2f521ebd VMINMAXPD ymm3{k7}, ymm0, ymmword ptr [r22], 0xbd - DSIZE: 64, ASIZE: 64, VLEN: 256 +0000000000001B2D 62fb7c2f521ebd VMINMAXPH ymm3{k7}, ymm0, ymmword ptr [r22], 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21421,11 +23267,12 @@ Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000019DF 62fbfd4f521ebd VMINMAXPD zmm3{k7}, zmm0, zmmword ptr [r22], 0xbd - DSIZE: 64, ASIZE: 64, VLEN: 512 +0000000000001B34 62fb7c4f521ebd VMINMAXPH zmm3{k7}, zmm0, zmmword ptr [r22], 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21443,11 +23290,12 @@ Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000019E6 62fbfd8f521ebd VMINMAXPD xmm3{k7}{z}, xmm0, xmmword ptr [r22], 0xbd - DSIZE: 64, ASIZE: 64, VLEN: 128 +0000000000001B3B 62fb7c8f521ebd VMINMAXPH xmm3{k7}{z}, xmm0, xmmword ptr [r22], 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21466,11 +23314,12 @@ Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000019ED 62fbfdaf521ebd VMINMAXPD ymm3{k7}{z}, ymm0, ymmword ptr [r22], 0xbd - DSIZE: 64, ASIZE: 64, VLEN: 256 +0000000000001B42 62fb7caf521ebd VMINMAXPH ymm3{k7}{z}, ymm0, ymmword ptr [r22], 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21489,11 +23338,12 @@ Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000019F4 62fbfdcf521ebd VMINMAXPD zmm3{k7}{z}, zmm0, zmmword ptr [r22], 0xbd - DSIZE: 64, ASIZE: 64, VLEN: 512 +0000000000001B49 62fb7ccf521ebd VMINMAXPH zmm3{k7}{z}, zmm0, zmmword ptr [r22], 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21512,11 +23362,12 @@ Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000019FB 62fbfd1852debd VMINMAXPD zmm3, zmm0, zmm6, {sae}, 0xbd - DSIZE: 64, ASIZE: 64, VLEN: 512 +0000000000001B50 62fb7c1852debd VMINMAXPH zmm3, zmm0, zmm6, {sae}, 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21532,11 +23383,12 @@ Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001A02 62fbfd3852debd VMINMAXPD zmm3, zmm0, zmm6, {sae}, 0xbd - DSIZE: 64, ASIZE: 64, VLEN: 512 +0000000000001B57 62fb7c3852debd VMINMAXPH zmm3, zmm0, zmm6, {sae}, 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21552,11 +23404,12 @@ Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001A09 62fbfd5852debd VMINMAXPD zmm3, zmm0, zmm6, {sae}, 0xbd - DSIZE: 64, ASIZE: 64, VLEN: 512 +0000000000001B5E 62fb7c5852debd VMINMAXPH zmm3, zmm0, zmm6, {sae}, 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21572,11 +23425,12 @@ Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001A10 62fbfd7852debd VMINMAXPD zmm3, zmm0, zmm6, {sae}, 0xbd - DSIZE: 64, ASIZE: 64, VLEN: 512 +0000000000001B65 62fb7c7852debd VMINMAXPH zmm3, zmm0, zmm6, {sae}, 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21592,11 +23446,12 @@ Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001A17 62fbf91852debd VMINMAXPD ymm3, ymm0, ymm6, {sae}, 0xbd - DSIZE: 64, ASIZE: 64, VLEN: 256 +0000000000001B6C 62fb781852debd VMINMAXPH ymm3, ymm0, ymm6, {sae}, 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21612,11 +23467,12 @@ Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001A1E 62fbf93852debd VMINMAXPD ymm3, ymm0, ymm6, {sae}, 0xbd - DSIZE: 64, ASIZE: 64, VLEN: 256 +0000000000001B73 62fb783852debd VMINMAXPH ymm3, ymm0, ymm6, {sae}, 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21632,11 +23488,12 @@ Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001A25 62fbf95852debd VMINMAXPD ymm3, ymm0, ymm6, {sae}, 0xbd - DSIZE: 64, ASIZE: 64, VLEN: 256 +0000000000001B7A 62fb785852debd VMINMAXPH ymm3, ymm0, ymm6, {sae}, 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21652,11 +23509,12 @@ Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001A2C 62fbf97852debd VMINMAXPD ymm3, ymm0, ymm6, {sae}, 0xbd - DSIZE: 64, ASIZE: 64, VLEN: 256 +0000000000001B81 62fb787852debd VMINMAXPH ymm3, ymm0, ymm6, {sae}, 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21672,11 +23530,12 @@ Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001A33 62fb7c08521ebd VMINMAXPH xmm3, xmm0, xmmword ptr [r22], 0xbd +0000000000001B88 62fb7d08521ebd VMINMAXPS xmm3, xmm0, xmmword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21693,11 +23552,12 @@ Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001A3A 62fb7c28521ebd VMINMAXPH ymm3, ymm0, ymmword ptr [r22], 0xbd +0000000000001B8F 62fb7d28521ebd VMINMAXPS ymm3, ymm0, ymmword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21714,11 +23574,12 @@ Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001A41 62fb7c48521ebd VMINMAXPH zmm3, zmm0, zmmword ptr [r22], 0xbd +0000000000001B96 62fb7d48521ebd VMINMAXPS zmm3, zmm0, zmmword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21735,11 +23596,12 @@ Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001A48 62fb7c0852debd VMINMAXPH xmm3, xmm0, xmm6, 0xbd +0000000000001B9D 62fb7d0852debd VMINMAXPS xmm3, xmm0, xmm6, 0xbd DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21755,11 +23617,12 @@ Operand: 3, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001A4F 62fb7c2852debd VMINMAXPH ymm3, ymm0, ymm6, 0xbd +0000000000001BA4 62fb7d2852debd VMINMAXPS ymm3, ymm0, ymm6, 0xbd DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21775,11 +23638,12 @@ Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001A56 62fb7c4852debd VMINMAXPH zmm3, zmm0, zmm6, 0xbd +0000000000001BAB 62fb7d4852debd VMINMAXPS zmm3, zmm0, zmm6, 0xbd DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21795,11 +23659,12 @@ Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001A5D 62fb7c18521ebd VMINMAXPH xmm3, xmm0, word ptr [r22]{1to8}, 0xbd +0000000000001BB2 62fb7d18521ebd VMINMAXPS xmm3, xmm0, dword ptr [r22]{1to4}, 0xbd DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21812,16 +23677,17 @@ Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, + Operand: 3, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Broadcast: yes, Segment: 3, Base: 22, - Decorator: Broadcast 2 bytes element 8 times + Decorator: Broadcast 4 bytes element 4 times Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001A64 62fb7c38521ebd VMINMAXPH ymm3, ymm0, word ptr [r22]{1to16}, 0xbd +0000000000001BB9 62fb7d38521ebd VMINMAXPS ymm3, ymm0, dword ptr [r22]{1to8}, 0xbd DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21834,16 +23700,17 @@ Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, + Operand: 3, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Broadcast: yes, Segment: 3, Base: 22, - Decorator: Broadcast 2 bytes element 16 times + Decorator: Broadcast 4 bytes element 8 times Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001A6B 62fb7c58521ebd VMINMAXPH zmm3, zmm0, word ptr [r22]{1to32}, 0xbd +0000000000001BC0 62fb7d58521ebd VMINMAXPS zmm3, zmm0, dword ptr [r22]{1to16}, 0xbd DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21856,16 +23723,17 @@ Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, + Operand: 3, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Broadcast: yes, Segment: 3, Base: 22, - Decorator: Broadcast 2 bytes element 32 times + Decorator: Broadcast 4 bytes element 16 times Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001A72 62fb7c0f521ebd VMINMAXPH xmm3{k7}, xmm0, xmmword ptr [r22], 0xbd +0000000000001BC7 62fb7d0f521ebd VMINMAXPS xmm3{k7}, xmm0, xmmword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21883,11 +23751,12 @@ Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001A79 62fb7c2f521ebd VMINMAXPH ymm3{k7}, ymm0, ymmword ptr [r22], 0xbd +0000000000001BCE 62fb7d2f521ebd VMINMAXPS ymm3{k7}, ymm0, ymmword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21905,11 +23774,12 @@ Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001A80 62fb7c4f521ebd VMINMAXPH zmm3{k7}, zmm0, zmmword ptr [r22], 0xbd +0000000000001BD5 62fb7d4f521ebd VMINMAXPS zmm3{k7}, zmm0, zmmword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21927,11 +23797,12 @@ Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001A87 62fb7c8f521ebd VMINMAXPH xmm3{k7}{z}, xmm0, xmmword ptr [r22], 0xbd +0000000000001BDC 62fb7d8f521ebd VMINMAXPS xmm3{k7}{z}, xmm0, xmmword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21950,11 +23821,12 @@ Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001A8E 62fb7caf521ebd VMINMAXPH ymm3{k7}{z}, ymm0, ymmword ptr [r22], 0xbd +0000000000001BE3 62fb7daf521ebd VMINMAXPS ymm3{k7}{z}, ymm0, ymmword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21973,11 +23845,12 @@ Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001A95 62fb7ccf521ebd VMINMAXPH zmm3{k7}{z}, zmm0, zmmword ptr [r22], 0xbd +0000000000001BEA 62fb7dcf521ebd VMINMAXPS zmm3{k7}{z}, zmm0, zmmword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21996,11 +23869,33 @@ Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001A9C 62fb7c1852debd VMINMAXPH zmm3, zmm0, zmm6, {sae}, 0xbd +0000000000001BF1 62fb7d1852debd VMINMAXPS zmm3, zmm0, zmm6, {sae}, 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 512 + ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 + Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + +0000000000001BF8 62fb7d3852debd VMINMAXPS zmm3, zmm0, zmm6, {sae}, 0xbd DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22016,11 +23911,12 @@ Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001AA3 62fb7c3852debd VMINMAXPH zmm3, zmm0, zmm6, {sae}, 0xbd +0000000000001BFF 62fb7d5852debd VMINMAXPS zmm3, zmm0, zmm6, {sae}, 0xbd DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22036,11 +23932,12 @@ Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001AAA 62fb7c5852debd VMINMAXPH zmm3, zmm0, zmm6, {sae}, 0xbd +0000000000001C06 62fb7d7852debd VMINMAXPS zmm3, zmm0, zmm6, {sae}, 0xbd DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22052,15 +23949,229 @@ BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 + Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + +0000000000001C0D 62fb791852debd VMINMAXPS ymm3, ymm0, ymm6, {sae}, 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 256 + ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 + Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + +0000000000001C14 62fb793852debd VMINMAXPS ymm3, ymm0, ymm6, {sae}, 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 256 + ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 + Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + +0000000000001C1B 62fb795852debd VMINMAXPS ymm3, ymm0, ymm6, {sae}, 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 256 + ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 + Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + +0000000000001C22 62fb797852debd VMINMAXPS ymm3, ymm0, ymm6, {sae}, 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 256 + ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 + Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + +0000000000001C29 62fbfd08531ebd VMINMAXSD xmm3, xmm0, qword ptr [r22], 0xbd + DSIZE: 64, ASIZE: 64, VLEN: 128 + ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, + Segment: 3, Base: 22, + Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + +0000000000001C30 62fbfd28531ebd VMINMAXSD xmm3, xmm0, qword ptr [r22], 0xbd + DSIZE: 64, ASIZE: 64, VLEN: 256 + ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, + Segment: 3, Base: 22, + Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + +0000000000001C37 62fbfd48531ebd VMINMAXSD xmm3, xmm0, qword ptr [r22], 0xbd + DSIZE: 64, ASIZE: 64, VLEN: 512 + ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, + Segment: 3, Base: 22, + Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + +0000000000001C3E 62fbfd0853debd VMINMAXSD xmm3, xmm0, xmm6, 0xbd + DSIZE: 64, ASIZE: 64, VLEN: 128 + ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + +0000000000001C45 62fbfd2853debd VMINMAXSD xmm3, xmm0, xmm6, 0xbd + DSIZE: 64, ASIZE: 64, VLEN: 256 + ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + +0000000000001C4C 62fbfd4853debd VMINMAXSD xmm3, xmm0, xmm6, 0xbd + DSIZE: 64, ASIZE: 64, VLEN: 512 + ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001AB1 62fb7c7852debd VMINMAXPH zmm3, zmm0, zmm6, {sae}, 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 512 +0000000000001C53 62fbfd0f531ebd VMINMAXSD xmm3{k7}, xmm0, qword ptr [r22], 0xbd + DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E2 + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22070,17 +24181,20 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Decorator: Mask k7 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, + Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001AB8 62fb781852debd VMINMAXPH ymm3, ymm0, ymm6, {sae}, 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 256 +0000000000001C5A 62fbfd2f531ebd VMINMAXSD xmm3{k7}, xmm0, qword ptr [r22], 0xbd + DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E2 + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22090,17 +24204,20 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Decorator: Mask k7 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, + Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001ABF 62fb783852debd VMINMAXPH ymm3, ymm0, ymm6, {sae}, 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 256 +0000000000001C61 62fbfd4f531ebd VMINMAXSD xmm3{k7}, xmm0, qword ptr [r22], 0xbd + DSIZE: 64, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E2 + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22110,17 +24227,20 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Decorator: Mask k7 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, + Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001AC6 62fb785852debd VMINMAXPH ymm3, ymm0, ymm6, {sae}, 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 256 +0000000000001C68 62fbfd8f531ebd VMINMAXSD xmm3{k7}{z}, xmm0, qword ptr [r22], 0xbd + DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E2 + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22130,17 +24250,21 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Decorator: Mask k7 + Decorator: Zero (no merging) + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, + Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001ACD 62fb787852debd VMINMAXPH ymm3, ymm0, ymm6, {sae}, 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 256 +0000000000001C6F 62fbfdaf531ebd VMINMAXSD xmm3{k7}{z}, xmm0, qword ptr [r22], 0xbd + DSIZE: 64, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E2 + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22150,17 +24274,21 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Decorator: Mask k7 + Decorator: Zero (no merging) + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, + Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001AD4 62fb7d08521ebd VMINMAXPS xmm3, xmm0, xmmword ptr [r22], 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 128 +0000000000001C76 62fbfdcf531ebd VMINMAXSD xmm3{k7}{z}, xmm0, qword ptr [r22], 0xbd + DSIZE: 64, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E2 + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22171,17 +24299,20 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Decorator: Mask k7 + Decorator: Zero (no merging) + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, + Operand: 3, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001ADB 62fb7d28521ebd VMINMAXPS ymm3, ymm0, ymmword ptr [r22], 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 256 +0000000000001C7D 62fbfd1853debd VMINMAXSD xmm3, xmm0, xmm6, {sae}, 0xbd + DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E2 + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22191,18 +24322,18 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, - Segment: 3, Base: 22, + Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001AE2 62fb7d48521ebd VMINMAXPS zmm3, zmm0, zmmword ptr [r22], 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 512 +0000000000001C84 62fbfd3853debd VMINMAXSD xmm3, xmm0, xmm6, {sae}, 0xbd + DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E2 + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22212,18 +24343,18 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, - Segment: 3, Base: 22, + Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001AE9 62fb7d0852debd VMINMAXPS xmm3, xmm0, xmm6, 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 128 +0000000000001C8B 62fbfd5853debd VMINMAXSD xmm3, xmm0, xmm6, {sae}, 0xbd + DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E2 + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22236,14 +24367,15 @@ Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 3, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001AF0 62fb7d2852debd VMINMAXPS ymm3, ymm0, ymm6, 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 256 +0000000000001C92 62fbfd7853debd VMINMAXSD xmm3, xmm0, xmm6, {sae}, 0xbd + DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E2 + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22253,17 +24385,18 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001AF7 62fb7d4852debd VMINMAXPS zmm3, zmm0, zmm6, 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 512 +0000000000001C99 62fbf91853debd VMINMAXSD xmm3, xmm0, xmm6, {sae}, 0xbd + DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E2 + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22273,17 +24406,18 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001AFE 62fb7d18521ebd VMINMAXPS xmm3, xmm0, dword ptr [r22]{1to4}, 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 128 +0000000000001CA0 62fbf93853debd VMINMAXSD xmm3, xmm0, xmm6, {sae}, 0xbd + DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E2 + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22296,16 +24430,15 @@ Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Broadcast: yes, - Segment: 3, Base: 22, - Decorator: Broadcast 4 bytes element 4 times + Operand: 3, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001B05 62fb7d38521ebd VMINMAXPS ymm3, ymm0, dword ptr [r22]{1to8}, 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 256 +0000000000001CA7 62fbf95853debd VMINMAXSD xmm3, xmm0, xmm6, {sae}, 0xbd + DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E2 + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22315,19 +24448,18 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Broadcast: yes, - Segment: 3, Base: 22, - Decorator: Broadcast 4 bytes element 8 times + Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001B0C 62fb7d58521ebd VMINMAXPS zmm3, zmm0, dword ptr [r22]{1to16}, 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 512 +0000000000001CAE 62fbf97853debd VMINMAXSD xmm3, xmm0, xmm6, {sae}, 0xbd + DSIZE: 64, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E2 + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22337,19 +24469,18 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Broadcast: yes, - Segment: 3, Base: 22, - Decorator: Broadcast 4 bytes element 16 times + Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001B13 62fb7d0f521ebd VMINMAXPS xmm3{k7}, xmm0, xmmword ptr [r22], 0xbd +0000000000001CB5 62fb7c08531ebd VMINMAXSH xmm3, xmm0, word ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E2 + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22360,18 +24491,18 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Decorator: Mask k7 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, + Operand: 3, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001B1A 62fb7d2f521ebd VMINMAXPS ymm3{k7}, ymm0, ymmword ptr [r22], 0xbd +0000000000001CBC 62fb7c28531ebd VMINMAXSH xmm3, xmm0, word ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E2 + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22381,19 +24512,19 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 - Decorator: Mask k7 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001B21 62fb7d4f521ebd VMINMAXPS zmm3{k7}, zmm0, zmmword ptr [r22], 0xbd +0000000000001CC3 62fb7c48531ebd VMINMAXSH xmm3, xmm0, word ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E2 + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22403,19 +24534,19 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 - Decorator: Mask k7 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001B28 62fb7d8f521ebd VMINMAXPS xmm3{k7}{z}, xmm0, xmmword ptr [r22], 0xbd +0000000000001CCA 62fb7c0853debd VMINMAXSH xmm3, xmm0, xmm6, 0xbd DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E2 + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22426,42 +24557,38 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Decorator: Mask k7 - Decorator: Zero (no merging) - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, - Segment: 3, Base: 22, + Operand: 3, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001B2F 62fb7daf521ebd VMINMAXPS ymm3{k7}{z}, ymm0, ymmword ptr [r22], 0xbd +0000000000001CD1 62fb7c2853debd VMINMAXSH xmm3, xmm0, xmm6, 0xbd DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E2 + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes - Valid prefixes - REP: no, REPcc: no, LOCK: no - HLE: no, XACQUIRE only: no, XRELEASE only: no - BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 - Decorator: Mask k7 - Decorator: Zero (no merging) - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, - Segment: 3, Base: 22, + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001B36 62fb7dcf521ebd VMINMAXPS zmm3{k7}{z}, zmm0, zmmword ptr [r22], 0xbd +0000000000001CD8 62fb7c4853debd VMINMAXSH xmm3, xmm0, xmm6, 0xbd DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E2 + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22471,20 +24598,18 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 - Decorator: Mask k7 - Decorator: Zero (no merging) - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, - Segment: 3, Base: 22, + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001B3D 62fb7d1852debd VMINMAXPS zmm3, zmm0, zmm6, {sae}, 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 512 +0000000000001CDF 62fb7c0f531ebd VMINMAXSH xmm3{k7}, xmm0, word ptr [r22], 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E2 + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22494,17 +24619,20 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Decorator: Mask k7 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, + Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001B44 62fb7d3852debd VMINMAXPS zmm3, zmm0, zmm6, {sae}, 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 512 +0000000000001CE6 62fb7c2f531ebd VMINMAXSH xmm3{k7}, xmm0, word ptr [r22], 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E2 + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22514,17 +24642,20 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Decorator: Mask k7 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, + Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001B4B 62fb7d5852debd VMINMAXPS zmm3, zmm0, zmm6, {sae}, 0xbd +0000000000001CED 62fb7c4f531ebd VMINMAXSH xmm3{k7}, xmm0, word ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E2 + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22534,17 +24665,20 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Decorator: Mask k7 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, + Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001B52 62fb7d7852debd VMINMAXPS zmm3, zmm0, zmm6, {sae}, 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 512 +0000000000001CF4 62fb7c8f531ebd VMINMAXSH xmm3{k7}{z}, xmm0, word ptr [r22], 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E2 + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22554,17 +24688,21 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Decorator: Mask k7 + Decorator: Zero (no merging) + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, + Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001B59 62fb791852debd VMINMAXPS ymm3, ymm0, ymm6, {sae}, 0xbd +0000000000001CFB 62fb7caf531ebd VMINMAXSH xmm3{k7}{z}, xmm0, word ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E2 + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22574,17 +24712,21 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Decorator: Mask k7 + Decorator: Zero (no merging) + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, + Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001B60 62fb793852debd VMINMAXPS ymm3, ymm0, ymm6, {sae}, 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 256 +0000000000001D02 62fb7ccf531ebd VMINMAXSH xmm3{k7}{z}, xmm0, word ptr [r22], 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E2 + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22594,17 +24736,21 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Decorator: Mask k7 + Decorator: Zero (no merging) + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, + Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001B67 62fb795852debd VMINMAXPS ymm3, ymm0, ymm6, {sae}, 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 256 +0000000000001D09 62fb7c1853debd VMINMAXSH xmm3, xmm0, xmm6, {sae}, 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E2 + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22614,17 +24760,18 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001B6E 62fb797852debd VMINMAXPS ymm3, ymm0, ymm6, {sae}, 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 256 +0000000000001D10 62fb7c3853debd VMINMAXSH xmm3, xmm0, xmm6, {sae}, 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E2 + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22634,17 +24781,18 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001B75 62fbfd08531ebd VMINMAXSD xmm3, xmm0, qword ptr [r22], 0xbd - DSIZE: 64, ASIZE: 64, VLEN: 128 +0000000000001D17 62fb7c5853debd VMINMAXSH xmm3, xmm0, xmm6, {sae}, 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22657,15 +24805,15 @@ Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, - Segment: 3, Base: 22, + Operand: 3, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001B7C 62fbfd28531ebd VMINMAXSD xmm3, xmm0, qword ptr [r22], 0xbd - DSIZE: 64, ASIZE: 64, VLEN: 256 +0000000000001D1E 62fb7c7853debd VMINMAXSH xmm3, xmm0, xmm6, {sae}, 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22678,15 +24826,15 @@ Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, - Segment: 3, Base: 22, + Operand: 3, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001B83 62fbfd48531ebd VMINMAXSD xmm3, xmm0, qword ptr [r22], 0xbd - DSIZE: 64, ASIZE: 64, VLEN: 512 +0000000000001D25 62fb781853debd VMINMAXSH xmm3, xmm0, xmm6, {sae}, 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22699,15 +24847,15 @@ Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, - Segment: 3, Base: 22, + Operand: 3, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001B8A 62fbfd0853debd VMINMAXSD xmm3, xmm0, xmm6, 0xbd - DSIZE: 64, ASIZE: 64, VLEN: 128 +0000000000001D2C 62fb783853debd VMINMAXSH xmm3, xmm0, xmm6, {sae}, 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22720,14 +24868,15 @@ Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 3, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001B91 62fbfd2853debd VMINMAXSD xmm3, xmm0, xmm6, 0xbd - DSIZE: 64, ASIZE: 64, VLEN: 256 +0000000000001D33 62fb785853debd VMINMAXSH xmm3, xmm0, xmm6, {sae}, 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22740,14 +24889,15 @@ Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 3, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001B98 62fbfd4853debd VMINMAXSD xmm3, xmm0, xmm6, 0xbd - DSIZE: 64, ASIZE: 64, VLEN: 512 +0000000000001D3A 62fb787853debd VMINMAXSH xmm3, xmm0, xmm6, {sae}, 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22760,14 +24910,15 @@ Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 3, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001B9F 62fbfd0f531ebd VMINMAXSD xmm3{k7}, xmm0, qword ptr [r22], 0xbd - DSIZE: 64, ASIZE: 64, VLEN: 128 +0000000000001D41 62fb7d08531ebd VMINMAXSS xmm3, xmm0, dword ptr [r22], 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22778,18 +24929,18 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Decorator: Mask k7 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, + Operand: 3, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001BA6 62fbfd2f531ebd VMINMAXSD xmm3{k7}, xmm0, qword ptr [r22], 0xbd - DSIZE: 64, ASIZE: 64, VLEN: 256 +0000000000001D48 62fb7d28531ebd VMINMAXSS xmm3, xmm0, dword ptr [r22], 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22800,18 +24951,18 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Decorator: Mask k7 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, + Operand: 3, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001BAD 62fbfd4f531ebd VMINMAXSD xmm3{k7}, xmm0, qword ptr [r22], 0xbd - DSIZE: 64, ASIZE: 64, VLEN: 512 +0000000000001D4F 62fb7d48531ebd VMINMAXSS xmm3, xmm0, dword ptr [r22], 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22822,18 +24973,18 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Decorator: Mask k7 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, + Operand: 3, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001BB4 62fbfd8f531ebd VMINMAXSD xmm3{k7}{z}, xmm0, qword ptr [r22], 0xbd - DSIZE: 64, ASIZE: 64, VLEN: 128 +0000000000001D56 62fb7d0853debd VMINMAXSS xmm3, xmm0, xmm6, 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22844,19 +24995,17 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Decorator: Mask k7 - Decorator: Zero (no merging) - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, - Segment: 3, Base: 22, + Operand: 3, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001BBB 62fbfdaf531ebd VMINMAXSD xmm3{k7}{z}, xmm0, qword ptr [r22], 0xbd - DSIZE: 64, ASIZE: 64, VLEN: 256 +0000000000001D5D 62fb7d2853debd VMINMAXSS xmm3, xmm0, xmm6, 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22867,19 +25016,17 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Decorator: Mask k7 - Decorator: Zero (no merging) - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, - Segment: 3, Base: 22, + Operand: 3, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001BC2 62fbfdcf531ebd VMINMAXSD xmm3{k7}{z}, xmm0, qword ptr [r22], 0xbd - DSIZE: 64, ASIZE: 64, VLEN: 512 +0000000000001D64 62fb7d4853debd VMINMAXSS xmm3, xmm0, xmm6, 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22890,19 +25037,17 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Decorator: Mask k7 - Decorator: Zero (no merging) - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, - Segment: 3, Base: 22, + Operand: 3, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001BC9 62fbfd1853debd VMINMAXSD xmm3, xmm0, xmm6, {sae}, 0xbd - DSIZE: 64, ASIZE: 64, VLEN: 128 +0000000000001D6B 62fb7d0f531ebd VMINMAXSS xmm3{k7}, xmm0, dword ptr [r22], 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22913,16 +25058,19 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Decorator: Mask k7 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, + Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001BD0 62fbfd3853debd VMINMAXSD xmm3, xmm0, xmm6, {sae}, 0xbd - DSIZE: 64, ASIZE: 64, VLEN: 128 +0000000000001D72 62fb7d2f531ebd VMINMAXSS xmm3{k7}, xmm0, dword ptr [r22], 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22933,16 +25081,19 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Decorator: Mask k7 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, + Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001BD7 62fbfd5853debd VMINMAXSD xmm3, xmm0, xmm6, {sae}, 0xbd - DSIZE: 64, ASIZE: 64, VLEN: 128 +0000000000001D79 62fb7d4f531ebd VMINMAXSS xmm3{k7}, xmm0, dword ptr [r22], 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22953,16 +25104,19 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Decorator: Mask k7 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, + Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001BDE 62fbfd7853debd VMINMAXSD xmm3, xmm0, xmm6, {sae}, 0xbd - DSIZE: 64, ASIZE: 64, VLEN: 128 +0000000000001D80 62fb7d8f531ebd VMINMAXSS xmm3{k7}{z}, xmm0, dword ptr [r22], 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22973,16 +25127,20 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Decorator: Mask k7 + Decorator: Zero (no merging) + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, + Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001BE5 62fbf91853debd VMINMAXSD xmm3, xmm0, xmm6, {sae}, 0xbd - DSIZE: 64, ASIZE: 64, VLEN: 128 +0000000000001D87 62fb7daf531ebd VMINMAXSS xmm3{k7}{z}, xmm0, dword ptr [r22], 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22993,16 +25151,20 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Decorator: Mask k7 + Decorator: Zero (no merging) + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, + Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001BEC 62fbf93853debd VMINMAXSD xmm3, xmm0, xmm6, {sae}, 0xbd - DSIZE: 64, ASIZE: 64, VLEN: 128 +0000000000001D8E 62fb7dcf531ebd VMINMAXSS xmm3{k7}{z}, xmm0, dword ptr [r22], 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23013,16 +25175,20 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Decorator: Mask k7 + Decorator: Zero (no merging) + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, + Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001BF3 62fbf95853debd VMINMAXSD xmm3, xmm0, xmm6, {sae}, 0xbd - DSIZE: 64, ASIZE: 64, VLEN: 128 +0000000000001D95 62fb7d1853debd VMINMAXSS xmm3, xmm0, xmm6, {sae}, 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23035,14 +25201,15 @@ Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 3, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001BFA 62fbf97853debd VMINMAXSD xmm3, xmm0, xmm6, {sae}, 0xbd - DSIZE: 64, ASIZE: 64, VLEN: 128 +0000000000001D9C 62fb7d3853debd VMINMAXSS xmm3, xmm0, xmm6, {sae}, 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23055,14 +25222,15 @@ Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 3, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001C01 62fb7c08531ebd VMINMAXSH xmm3, xmm0, word ptr [r22], 0xbd +0000000000001DA3 62fb7d5853debd VMINMAXSS xmm3, xmm0, xmm6, {sae}, 0xbd DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23075,15 +25243,15 @@ Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, - Segment: 3, Base: 22, + Operand: 3, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001C08 62fb7c28531ebd VMINMAXSH xmm3, xmm0, word ptr [r22], 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 256 +0000000000001DAA 62fb7d7853debd VMINMAXSS xmm3, xmm0, xmm6, {sae}, 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23096,15 +25264,15 @@ Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, - Segment: 3, Base: 22, + Operand: 3, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001C0F 62fb7c48531ebd VMINMAXSH xmm3, xmm0, word ptr [r22], 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 512 +0000000000001DB1 62fb791853debd VMINMAXSS xmm3, xmm0, xmm6, {sae}, 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23117,15 +25285,15 @@ Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, - Segment: 3, Base: 22, + Operand: 3, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001C16 62fb7c0853debd VMINMAXSH xmm3, xmm0, xmm6, 0xbd +0000000000001DB8 62fb793853debd VMINMAXSS xmm3, xmm0, xmm6, {sae}, 0xbd DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23138,14 +25306,15 @@ Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 3, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001C1D 62fb7c2853debd VMINMAXSH xmm3, xmm0, xmm6, 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 256 +0000000000001DBF 62fb795853debd VMINMAXSS xmm3, xmm0, xmm6, {sae}, 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23158,14 +25327,15 @@ Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 3, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001C24 62fb7c4853debd VMINMAXSH xmm3, xmm0, xmm6, 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 512 +0000000000001DC6 62fb797853debd VMINMAXSS xmm3, xmm0, xmm6, {sae}, 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23178,14 +25348,14 @@ Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 3, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001C2B 62fb7c0f531ebd VMINMAXSH xmm3{k7}, xmm0, word ptr [r22], 0xbd +0000000000001DCD 62fd7d085d1e VMINPBF16 xmm3, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Tuple 1 Scalar - Exception class: EVEX, exception type: E3 + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E4 Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23196,18 +25366,16 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Decorator: Mask k7 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, + Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, - Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001C32 62fb7c2f531ebd VMINMAXSH xmm3{k7}, xmm0, word ptr [r22], 0xbd +0000000000001DD3 62fd7d285d1e VMINPBF16 ymm3, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 - ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Tuple 1 Scalar - Exception class: EVEX, exception type: E3 + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E4 Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23217,19 +25385,17 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Decorator: Mask k7 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, + Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, - Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001C39 62fb7c4f531ebd VMINMAXSH xmm3{k7}, xmm0, word ptr [r22], 0xbd +0000000000001DD9 62fd7d485d1e VMINPBF16 zmm3, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 - ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Tuple 1 Scalar - Exception class: EVEX, exception type: E3 + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E4 Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23239,19 +25405,17 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Decorator: Mask k7 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, - Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001C40 62fb7c8f531ebd VMINMAXSH xmm3{k7}{z}, xmm0, word ptr [r22], 0xbd +0000000000001DDF 62fd7d085dde VMINPBF16 xmm3, xmm0, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Tuple 1 Scalar - Exception class: EVEX, exception type: E3 + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E4 Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23262,19 +25426,15 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Decorator: Mask k7 - Decorator: Zero (no merging) - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, - Segment: 3, Base: 22, - Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + Operand: 3, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000001C47 62fb7caf531ebd VMINMAXSH xmm3{k7}{z}, xmm0, word ptr [r22], 0xbd +0000000000001DE5 62fd7d285dde VMINPBF16 ymm3, ymm0, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 - ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Tuple 1 Scalar - Exception class: EVEX, exception type: E3 + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E4 Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23284,20 +25444,16 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Decorator: Mask k7 - Decorator: Zero (no merging) - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, - Segment: 3, Base: 22, - Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000001C4E 62fb7ccf531ebd VMINMAXSH xmm3{k7}{z}, xmm0, word ptr [r22], 0xbd +0000000000001DEB 62fd7d485dde VMINPBF16 zmm3, zmm0, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 - ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Tuple 1 Scalar - Exception class: EVEX, exception type: E3 + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E4 Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23307,20 +25463,16 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Decorator: Mask k7 - Decorator: Zero (no merging) - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, - Segment: 3, Base: 22, - Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000001C55 62fb7c1853debd VMINMAXSH xmm3, xmm0, xmm6, {sae}, 0xbd +0000000000001DF1 62fd7d185d1e VMINPBF16 xmm3, xmm0, word ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Tuple 1 Scalar - Exception class: EVEX, exception type: E3 + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E4 Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23333,14 +25485,15 @@ Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 - Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + Operand: 3, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, + Segment: 3, Base: 22, + Decorator: Broadcast 2 bytes element 8 times -0000000000001C5C 62fb7c3853debd VMINMAXSH xmm3, xmm0, xmm6, {sae}, 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Tuple 1 Scalar - Exception class: EVEX, exception type: E3 +0000000000001DF7 62fd7d385d1e VMINPBF16 ymm3, ymm0, word ptr [r22]{1to16} + DSIZE: 32, ASIZE: 64, VLEN: 256 + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E4 Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23350,17 +25503,18 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 - Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, + Segment: 3, Base: 22, + Decorator: Broadcast 2 bytes element 16 times -0000000000001C63 62fb7c5853debd VMINMAXSH xmm3, xmm0, xmm6, {sae}, 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Tuple 1 Scalar - Exception class: EVEX, exception type: E3 +0000000000001DFD 62fd7d585d1e VMINPBF16 zmm3, zmm0, word ptr [r22]{1to32} + DSIZE: 32, ASIZE: 64, VLEN: 512 + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E4 Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23370,17 +25524,18 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 - Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, + Segment: 3, Base: 22, + Decorator: Broadcast 2 bytes element 32 times -0000000000001C6A 62fb7c7853debd VMINMAXSH xmm3, xmm0, xmm6, {sae}, 0xbd +0000000000001E03 62fd7d0f5d1e VMINPBF16 xmm3{k7}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Tuple 1 Scalar - Exception class: EVEX, exception type: E3 + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E4 Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23391,16 +25546,17 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Decorator: Mask k7 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 - Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, + Segment: 3, Base: 22, -0000000000001C71 62fb781853debd VMINMAXSH xmm3, xmm0, xmm6, {sae}, 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Tuple 1 Scalar - Exception class: EVEX, exception type: E3 +0000000000001E09 62fd7d2f5d1e VMINPBF16 ymm3{k7}, ymm0, ymmword ptr [r22] + DSIZE: 32, ASIZE: 64, VLEN: 256 + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E4 Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23410,17 +25566,39 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 - Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Decorator: Mask k7 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, + Segment: 3, Base: 22, + +0000000000001E0F 62fd7d4f5d1e VMINPBF16 zmm3{k7}, zmm0, zmmword ptr [r22] + DSIZE: 32, ASIZE: 64, VLEN: 512 + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E4 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Decorator: Mask k7 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, + Segment: 3, Base: 22, -0000000000001C78 62fb783853debd VMINMAXSH xmm3, xmm0, xmm6, {sae}, 0xbd +0000000000001E15 62fd7d8f5d1e VMINPBF16 xmm3{k7}{z}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Tuple 1 Scalar - Exception class: EVEX, exception type: E3 + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E4 Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23431,16 +25609,18 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Decorator: Mask k7 + Decorator: Zero (no merging) + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 - Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, + Segment: 3, Base: 22, -0000000000001C7F 62fb785853debd VMINMAXSH xmm3, xmm0, xmm6, {sae}, 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Tuple 1 Scalar - Exception class: EVEX, exception type: E3 +0000000000001E1B 62fd7daf5d1e VMINPBF16 ymm3{k7}{z}, ymm0, ymmword ptr [r22] + DSIZE: 32, ASIZE: 64, VLEN: 256 + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E4 Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23450,17 +25630,19 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 - Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Decorator: Mask k7 + Decorator: Zero (no merging) + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, + Segment: 3, Base: 22, -0000000000001C86 62fb787853debd VMINMAXSH xmm3, xmm0, xmm6, {sae}, 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Tuple 1 Scalar - Exception class: EVEX, exception type: E3 +0000000000001E21 62fd7dcf5d1e VMINPBF16 zmm3{k7}{z}, zmm0, zmmword ptr [r22] + DSIZE: 32, ASIZE: 64, VLEN: 512 + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E4 Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23470,17 +25652,19 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 - Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Decorator: Mask k7 + Decorator: Zero (no merging) + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, + Segment: 3, Base: 22, -0000000000001C8D 62fb7d08531ebd VMINMAXSS xmm3, xmm0, dword ptr [r22], 0xbd +0000000000001E27 62f97e087e1e VMOVD xmm3, dword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10PARTCOPY, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar - Exception class: EVEX, exception type: E3 + Exception class: EVEX, exception type: E9NF Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23491,17 +25675,14 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, + Operand: 1, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Segment: 3, Base: 22, - Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001C94 62fb7d28531ebd VMINMAXSS xmm3, xmm0, dword ptr [r22], 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 256 - ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no +0000000000001E2D 62f97e087ede VMOVD xmm3, xmm6 + DSIZE: 32, ASIZE: 64, VLEN: 128 + ISA Set: AVX10_2, Ins cat: AVX10PARTCOPY, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar - Exception class: EVEX, exception type: E3 + Exception class: EVEX, exception type: E9NF Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23512,17 +25693,13 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, - Segment: 3, Base: 22, - Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000001C9B 62fb7d48531ebd VMINMAXSS xmm3, xmm0, dword ptr [r22], 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 512 - ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no +0000000000001E33 62f97d08d61e VMOVD dword ptr [r22], xmm3 + DSIZE: 32, ASIZE: 64, VLEN: 128 + ISA Set: AVX10_2, Ins cat: AVX10PARTCOPY, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar - Exception class: EVEX, exception type: E3 + Exception class: EVEX, exception type: E9NF Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23532,18 +25709,15 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, + Operand: 0, Acc: -W, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Segment: 3, Base: 22, - Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + Operand: 1, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 -0000000000001CA2 62fb7d0853debd VMINMAXSS xmm3, xmm0, xmm6, 0xbd +0000000000001E39 62f97d08d6de VMOVD xmm6, xmm3 DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10PARTCOPY, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar - Exception class: EVEX, exception type: E3 + Exception class: EVEX, exception type: E9NF Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23553,17 +25727,14 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 - Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 -0000000000001CA9 62fb7d2853debd VMINMAXSS xmm3, xmm0, xmm6, 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 256 - ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Tuple 1 Scalar - Exception class: EVEX, exception type: E3 +0000000000001E3F 62fd7e086e1e VMOVW xmm3, word ptr [r22] + DSIZE: 32, ASIZE: 64, VLEN: 128 + ISA Set: AVX10_2, Ins cat: AVX10PARTCOPY, CET tracked: no + EVEX Tuple Type: Tuple 1 scalar, 16 bit + Exception class: EVEX, exception type: E9NF Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23574,16 +25745,14 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 - Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + Operand: 1, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, + Segment: 3, Base: 22, -0000000000001CB0 62fb7d4853debd VMINMAXSS xmm3, xmm0, xmm6, 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 512 - ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Tuple 1 Scalar - Exception class: EVEX, exception type: E3 +0000000000001E45 62fd7e086ede VMOVW xmm3, xmm6 + DSIZE: 32, ASIZE: 64, VLEN: 128 + ISA Set: AVX10_2, Ins cat: AVX10PARTCOPY, CET tracked: no + EVEX Tuple Type: Tuple 1 scalar, 16 bit + Exception class: EVEX, exception type: E9NF Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23594,16 +25763,13 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 - Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000001CB7 62fb7d0f531ebd VMINMAXSS xmm3{k7}, xmm0, dword ptr [r22], 0xbd +0000000000001E4B 62fd7e087e1e VMOVW word ptr [r22], xmm3 DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Tuple 1 Scalar - Exception class: EVEX, exception type: E3 + ISA Set: AVX10_2, Ins cat: AVX10PARTCOPY, CET tracked: no + EVEX Tuple Type: Tuple 1 scalar, 16 bit + Exception class: EVEX, exception type: E9NF Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23613,19 +25779,15 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Decorator: Mask k7 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, + Operand: 0, Acc: -W, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Segment: 3, Base: 22, - Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + Operand: 1, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 -0000000000001CBE 62fb7d2f531ebd VMINMAXSS xmm3{k7}, xmm0, dword ptr [r22], 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 256 - ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Tuple 1 Scalar - Exception class: EVEX, exception type: E3 +0000000000001E51 62fd7e087ede VMOVW xmm6, xmm3 + DSIZE: 32, ASIZE: 64, VLEN: 128 + ISA Set: AVX10_2, Ins cat: AVX10PARTCOPY, CET tracked: no + EVEX Tuple Type: Tuple 1 scalar, 16 bit + Exception class: EVEX, exception type: E9NF Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23635,19 +25797,14 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Decorator: Mask k7 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, - Segment: 3, Base: 22, - Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + Operand: 0, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 -0000000000001CC5 62fb7d4f531ebd VMINMAXSS xmm3{k7}, xmm0, dword ptr [r22], 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 512 - ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Tuple 1 Scalar - Exception class: EVEX, exception type: E3 +0000000000001E57 62fb7e08421ebd VMPSADBW xmm3, xmm0, xmmword ptr [r22], 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 128 + ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E4NF Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23658,18 +25815,17 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Decorator: Mask k7 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, + Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001CCC 62fb7d8f531ebd VMINMAXSS xmm3{k7}{z}, xmm0, dword ptr [r22], 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Tuple 1 Scalar - Exception class: EVEX, exception type: E3 +0000000000001E5E 62fb7e28421ebd VMPSADBW ymm3, ymm0, ymmword ptr [r22], 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 256 + ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E4NF Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23679,20 +25835,18 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Decorator: Mask k7 - Decorator: Zero (no merging) - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, + Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001CD3 62fb7daf531ebd VMINMAXSS xmm3{k7}{z}, xmm0, dword ptr [r22], 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 256 - ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Tuple 1 Scalar - Exception class: EVEX, exception type: E3 +0000000000001E65 62fb7e48421ebd VMPSADBW zmm3, zmm0, zmmword ptr [r22], 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 512 + ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E4NF Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23702,20 +25856,18 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Decorator: Mask k7 - Decorator: Zero (no merging) - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001CDA 62fb7dcf531ebd VMINMAXSS xmm3{k7}{z}, xmm0, dword ptr [r22], 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 512 - ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Tuple 1 Scalar - Exception class: EVEX, exception type: E3 +0000000000001E6C 62fb7e0842debd VMPSADBW xmm3, xmm0, xmm6, 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 128 + ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E4NF Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23726,19 +25878,16 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Decorator: Mask k7 - Decorator: Zero (no merging) - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, - Segment: 3, Base: 22, + Operand: 3, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001CE1 62fb7d1853debd VMINMAXSS xmm3, xmm0, xmm6, {sae}, 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Tuple 1 Scalar - Exception class: EVEX, exception type: E3 +0000000000001E73 62fb7e2842debd VMPSADBW ymm3, ymm0, ymm6, 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 256 + ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E4NF Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23748,17 +25897,17 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001CE8 62fb7d3853debd VMINMAXSS xmm3, xmm0, xmm6, {sae}, 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Tuple 1 Scalar - Exception class: EVEX, exception type: E3 +0000000000001E7A 62fb7e4842debd VMPSADBW zmm3, zmm0, zmm6, 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 512 + ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E4NF Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23768,17 +25917,17 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001CEF 62fb7d5853debd VMINMAXSS xmm3, xmm0, xmm6, {sae}, 0xbd +0000000000001E81 62fb7e0f421ebd VMPSADBW xmm3{k7}, xmm0, xmmword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Tuple 1 Scalar - Exception class: EVEX, exception type: E3 + ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E4NF Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23789,16 +25938,18 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Decorator: Mask k7 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, + Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001CF6 62fb7d7853debd VMINMAXSS xmm3, xmm0, xmm6, {sae}, 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Tuple 1 Scalar - Exception class: EVEX, exception type: E3 +0000000000001E88 62fb7e2f421ebd VMPSADBW ymm3{k7}, ymm0, ymmword ptr [r22], 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 256 + ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E4NF Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23808,17 +25959,19 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Decorator: Mask k7 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, + Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001CFD 62fb791853debd VMINMAXSS xmm3, xmm0, xmm6, {sae}, 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Tuple 1 Scalar - Exception class: EVEX, exception type: E3 +0000000000001E8F 62fb7e4f421ebd VMPSADBW zmm3{k7}, zmm0, zmmword ptr [r22], 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 512 + ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E4NF Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23828,17 +25981,19 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Decorator: Mask k7 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, + Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001D04 62fb793853debd VMINMAXSS xmm3, xmm0, xmm6, {sae}, 0xbd +0000000000001E96 62fb7e8f421ebd VMPSADBW xmm3{k7}{z}, xmm0, xmmword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Tuple 1 Scalar - Exception class: EVEX, exception type: E3 + ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E4NF Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23849,16 +26004,19 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Decorator: Mask k7 + Decorator: Zero (no merging) + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, + Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001D0B 62fb795853debd VMINMAXSS xmm3, xmm0, xmm6, {sae}, 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Tuple 1 Scalar - Exception class: EVEX, exception type: E3 +0000000000001E9D 62fb7eaf421ebd VMPSADBW ymm3{k7}{z}, ymm0, ymmword ptr [r22], 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 256 + ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E4NF Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23868,17 +26026,20 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Decorator: Mask k7 + Decorator: Zero (no merging) + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, + Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001D12 62fb797853debd VMINMAXSS xmm3, xmm0, xmm6, {sae}, 0xbd - DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10MINMAX, CET tracked: no - EVEX Tuple Type: Tuple 1 Scalar - Exception class: EVEX, exception type: E3 +0000000000001EA4 62fb7ecf421ebd VMPSADBW zmm3{k7}{z}, zmm0, zmmword ptr [r22], 0xbd + DSIZE: 32, ASIZE: 64, VLEN: 512 + ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E4NF Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23888,13 +26049,16 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Decorator: Mask k7 + Decorator: Zero (no merging) + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, + Segment: 3, Base: 22, Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001D19 62fd7d085d1e VMINPBF16 xmm3, xmm0, xmmword ptr [r22] +0000000000001EAB 62fd7d08591e VMULNEPBF16 xmm3, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -23914,7 +26078,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000001D1F 62fd7d285d1e VMINPBF16 ymm3, ymm0, ymmword ptr [r22] +0000000000001EB1 62fd7d28591e VMULNEPBF16 ymm3, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -23934,7 +26098,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000001D25 62fd7d485d1e VMINPBF16 zmm3, zmm0, zmmword ptr [r22] +0000000000001EB7 62fd7d48591e VMULNEPBF16 zmm3, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -23954,7 +26118,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000001D2B 62fd7d085dde VMINPBF16 xmm3, xmm0, xmm6 +0000000000001EBD 62fd7d0859de VMULNEPBF16 xmm3, xmm0, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -23973,7 +26137,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000001D31 62fd7d285dde VMINPBF16 ymm3, ymm0, ymm6 +0000000000001EC3 62fd7d2859de VMULNEPBF16 ymm3, ymm0, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -23992,7 +26156,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000001D37 62fd7d485dde VMINPBF16 zmm3, zmm0, zmm6 +0000000000001EC9 62fd7d4859de VMULNEPBF16 zmm3, zmm0, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -24011,7 +26175,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000001D3D 62fd7d185d1e VMINPBF16 xmm3, xmm0, word ptr [r22]{1to8} +0000000000001ECF 62fd7d18591e VMULNEPBF16 xmm3, xmm0, word ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -24032,7 +26196,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 8 times -0000000000001D43 62fd7d385d1e VMINPBF16 ymm3, ymm0, word ptr [r22]{1to16} +0000000000001ED5 62fd7d38591e VMULNEPBF16 ymm3, ymm0, word ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -24053,7 +26217,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 16 times -0000000000001D49 62fd7d585d1e VMINPBF16 zmm3, zmm0, word ptr [r22]{1to32} +0000000000001EDB 62fd7d58591e VMULNEPBF16 zmm3, zmm0, word ptr [r22]{1to32} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -24074,7 +26238,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 32 times -0000000000001D4F 62fd7d0f5d1e VMINPBF16 xmm3{k7}, xmm0, xmmword ptr [r22] +0000000000001EE1 62fd7d0f591e VMULNEPBF16 xmm3{k7}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -24095,7 +26259,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000001D55 62fd7d2f5d1e VMINPBF16 ymm3{k7}, ymm0, ymmword ptr [r22] +0000000000001EE7 62fd7d2f591e VMULNEPBF16 ymm3{k7}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -24116,7 +26280,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000001D5B 62fd7d4f5d1e VMINPBF16 zmm3{k7}, zmm0, zmmword ptr [r22] +0000000000001EED 62fd7d4f591e VMULNEPBF16 zmm3{k7}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -24137,7 +26301,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000001D61 62fd7d8f5d1e VMINPBF16 xmm3{k7}{z}, xmm0, xmmword ptr [r22] +0000000000001EF3 62fd7d8f591e VMULNEPBF16 xmm3{k7}{z}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -24159,7 +26323,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000001D67 62fd7daf5d1e VMINPBF16 ymm3{k7}{z}, ymm0, ymmword ptr [r22] +0000000000001EF9 62fd7daf591e VMULNEPBF16 ymm3{k7}{z}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -24181,7 +26345,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000001D6D 62fd7dcf5d1e VMINPBF16 zmm3{k7}{z}, zmm0, zmmword ptr [r22] +0000000000001EFF 62fd7dcf591e VMULNEPBF16 zmm3{k7}{z}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -24203,46 +26367,11 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000001D73 62f97e087e1e VMOVD xmm3, dword ptr [r22] - DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10PARTCOPY, CET tracked: no - EVEX Tuple Type: Tuple 1 Scalar - Exception class: EVEX, exception type: E9NF - Valid modes - R0: yes, R1: yes, R2: yes, R3: yes - Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes - SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes - VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes - Valid prefixes - REP: no, REPcc: no, LOCK: no - HLE: no, XACQUIRE only: no, XRELEASE only: no - BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, - Segment: 3, Base: 22, - -0000000000001D79 62f97e087ede VMOVD xmm3, xmm6 - DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10PARTCOPY, CET tracked: no - EVEX Tuple Type: Tuple 1 Scalar - Exception class: EVEX, exception type: E9NF - Valid modes - R0: yes, R1: yes, R2: yes, R3: yes - Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes - SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes - VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes - Valid prefixes - REP: no, REPcc: no, LOCK: no - HLE: no, XACQUIRE only: no, XRELEASE only: no - BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 - -0000000000001D7F 62f97d08d61e VMOVD dword ptr [r22], xmm3 +0000000000001F05 62fa7f08501e VPDPBSSD xmm3, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10PARTCOPY, CET tracked: no - EVEX Tuple Type: Tuple 1 Scalar - Exception class: EVEX, exception type: E9NF + ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E4 Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24252,32 +26381,17 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Memory, Size: 4, RawSize: 4, Encoding: M, + Operand: 0, Acc: RW, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, - Operand: 1, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - -0000000000001D85 62f97d08d6de VMOVD xmm6, xmm3 - DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10PARTCOPY, CET tracked: no - EVEX Tuple Type: Tuple 1 Scalar - Exception class: EVEX, exception type: E9NF - Valid modes - R0: yes, R1: yes, R2: yes, R3: yes - Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes - SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes - VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes - Valid prefixes - REP: no, REPcc: no, LOCK: no - HLE: no, XACQUIRE only: no, XRELEASE only: no - BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 -0000000000001D8B 62fd7e086e1e VMOVW xmm3, word ptr [r22] - DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10PARTCOPY, CET tracked: no - EVEX Tuple Type: Tuple 1 scalar, 16 bit - Exception class: EVEX, exception type: E9NF +0000000000001F0B 62fa7f28501e VPDPBSSD ymm3, ymm0, ymmword ptr [r22] + DSIZE: 32, ASIZE: 64, VLEN: 256 + ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E4 Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24287,32 +26401,17 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, + Operand: 0, Acc: RW, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000001D91 62fd7e086ede VMOVW xmm3, xmm6 - DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10PARTCOPY, CET tracked: no - EVEX Tuple Type: Tuple 1 scalar, 16 bit - Exception class: EVEX, exception type: E9NF - Valid modes - R0: yes, R1: yes, R2: yes, R3: yes - Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes - SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes - VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes - Valid prefixes - REP: no, REPcc: no, LOCK: no - HLE: no, XACQUIRE only: no, XRELEASE only: no - BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 - -0000000000001D97 62fd7e087e1e VMOVW word ptr [r22], xmm3 - DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10PARTCOPY, CET tracked: no - EVEX Tuple Type: Tuple 1 scalar, 16 bit - Exception class: EVEX, exception type: E9NF +0000000000001F11 62fa7f48501e VPDPBSSD zmm3, zmm0, zmmword ptr [r22] + DSIZE: 32, ASIZE: 64, VLEN: 512 + ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E4 Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24322,32 +26421,17 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Memory, Size: 2, RawSize: 2, Encoding: M, + Operand: 0, Acc: RW, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, - Operand: 1, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - -0000000000001D9D 62fd7e087ede VMOVW xmm6, xmm3 - DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10PARTCOPY, CET tracked: no - EVEX Tuple Type: Tuple 1 scalar, 16 bit - Exception class: EVEX, exception type: E9NF - Valid modes - R0: yes, R1: yes, R2: yes, R3: yes - Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes - SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes - VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes - Valid prefixes - REP: no, REPcc: no, LOCK: no - HLE: no, XACQUIRE only: no, XRELEASE only: no - BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 -0000000000001DA3 62fb7e08421ebd VMPSADBW xmm3, xmm0, xmmword ptr [r22], 0xbd +0000000000001F17 62fa7f0850de VPDPBSSD xmm3, xmm0, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no - EVEX Tuple Type: Full Mem - Exception class: EVEX, exception type: E4NF + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E4 Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24357,18 +26441,16 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 0, Acc: RW, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, - Segment: 3, Base: 22, - Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + Operand: 3, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000001DAA 62fb7e28421ebd VMPSADBW ymm3, ymm0, ymmword ptr [r22], 0xbd +0000000000001F1D 62fa7f2850de VPDPBSSD ymm3, ymm0, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no - EVEX Tuple Type: Full Mem - Exception class: EVEX, exception type: E4NF + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E4 Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24378,18 +26460,16 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 0, Acc: RW, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, - Segment: 3, Base: 22, - Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000001DB1 62fb7e48421ebd VMPSADBW zmm3, zmm0, zmmword ptr [r22], 0xbd +0000000000001F23 62fa7f4850de VPDPBSSD zmm3, zmm0, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no - EVEX Tuple Type: Full Mem - Exception class: EVEX, exception type: E4NF + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E4 Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24399,18 +26479,16 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 0, Acc: RW, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, - Segment: 3, Base: 22, - Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000001DB8 62fb7e0842debd VMPSADBW xmm3, xmm0, xmm6, 0xbd +0000000000001F29 62fa7f18501e VPDPBSSD xmm3, xmm0, dword ptr [r22]{1to4} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no - EVEX Tuple Type: Full Mem - Exception class: EVEX, exception type: E4NF + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E4 Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24420,17 +26498,18 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 0, Acc: RW, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 - Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + Operand: 3, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Broadcast: yes, + Segment: 3, Base: 22, + Decorator: Broadcast 4 bytes element 4 times -0000000000001DBF 62fb7e2842debd VMPSADBW ymm3, ymm0, ymm6, 0xbd +0000000000001F2F 62fa7f38501e VPDPBSSD ymm3, ymm0, dword ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no - EVEX Tuple Type: Full Mem - Exception class: EVEX, exception type: E4NF + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E4 Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24440,17 +26519,18 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 0, Acc: RW, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 - Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + Operand: 3, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Broadcast: yes, + Segment: 3, Base: 22, + Decorator: Broadcast 4 bytes element 8 times -0000000000001DC6 62fb7e4842debd VMPSADBW zmm3, zmm0, zmm6, 0xbd +0000000000001F35 62fa7f58501e VPDPBSSD zmm3, zmm0, dword ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no - EVEX Tuple Type: Full Mem - Exception class: EVEX, exception type: E4NF + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E4 Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24460,17 +26540,18 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 0, Acc: RW, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 - Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + Operand: 3, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Broadcast: yes, + Segment: 3, Base: 22, + Decorator: Broadcast 4 bytes element 16 times -0000000000001DCD 62fb7e0f421ebd VMPSADBW xmm3{k7}, xmm0, xmmword ptr [r22], 0xbd +0000000000001F3B 62fa7f0f501e VPDPBSSD xmm3{k7}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no - EVEX Tuple Type: Full Mem - Exception class: EVEX, exception type: E4NF + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E4 Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24480,19 +26561,18 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 0, Acc: RW, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Decorator: Mask k7 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, - Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001DD4 62fb7e2f421ebd VMPSADBW ymm3{k7}, ymm0, ymmword ptr [r22], 0xbd +0000000000001F41 62fa7f2f501e VPDPBSSD ymm3{k7}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no - EVEX Tuple Type: Full Mem - Exception class: EVEX, exception type: E4NF + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E4 Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24502,19 +26582,18 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 0, Acc: RW, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 Decorator: Mask k7 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, - Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001DDB 62fb7e4f421ebd VMPSADBW zmm3{k7}, zmm0, zmmword ptr [r22], 0xbd +0000000000001F47 62fa7f4f501e VPDPBSSD zmm3{k7}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no - EVEX Tuple Type: Full Mem - Exception class: EVEX, exception type: E4NF + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E4 Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24524,19 +26603,18 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 0, Acc: RW, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 Decorator: Mask k7 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, - Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001DE2 62fb7e8f421ebd VMPSADBW xmm3{k7}{z}, xmm0, xmmword ptr [r22], 0xbd +0000000000001F4D 62fa7f8f501e VPDPBSSD xmm3{k7}{z}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no - EVEX Tuple Type: Full Mem - Exception class: EVEX, exception type: E4NF + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E4 Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24546,20 +26624,19 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 0, Acc: RW, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Decorator: Mask k7 Decorator: Zero (no merging) Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, - Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001DE9 62fb7eaf421ebd VMPSADBW ymm3{k7}{z}, ymm0, ymmword ptr [r22], 0xbd +0000000000001F53 62fa7faf501e VPDPBSSD ymm3{k7}{z}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no - EVEX Tuple Type: Full Mem - Exception class: EVEX, exception type: E4NF + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E4 Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24569,20 +26646,19 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 0, Acc: RW, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 Decorator: Mask k7 Decorator: Zero (no merging) Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, - Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001DF0 62fb7ecf421ebd VMPSADBW zmm3{k7}{z}, zmm0, zmmword ptr [r22], 0xbd +0000000000001F59 62fa7fcf501e VPDPBSSD zmm3{k7}{z}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no - EVEX Tuple Type: Full Mem - Exception class: EVEX, exception type: E4NF + EVEX Tuple Type: Full + Exception class: EVEX, exception type: E4 Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24592,18 +26668,17 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 0, Acc: RW, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 Decorator: Mask k7 Decorator: Zero (no merging) Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, - Operand: 4, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000001DF7 62fd7d08591e VMULNEPBF16 xmm3, xmm0, xmmword ptr [r22] +0000000000001F5F 62fa7f08511e VPDPBSSDS xmm3, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -24615,15 +26690,15 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 0, Acc: RW, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000001DFD 62fd7d28591e VMULNEPBF16 ymm3, ymm0, ymmword ptr [r22] +0000000000001F65 62fa7f28511e VPDPBSSDS ymm3, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -24635,15 +26710,15 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 0, Acc: RW, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000001E03 62fd7d48591e VMULNEPBF16 zmm3, zmm0, zmmword ptr [r22] +0000000000001F6B 62fa7f48511e VPDPBSSDS zmm3, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -24655,15 +26730,15 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 0, Acc: RW, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000001E09 62fd7d0859de VMULNEPBF16 xmm3, xmm0, xmm6 +0000000000001F71 62fa7f0851de VPDPBSSDS xmm3, xmm0, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -24675,14 +26750,14 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 0, Acc: RW, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000001E0F 62fd7d2859de VMULNEPBF16 ymm3, ymm0, ymm6 +0000000000001F77 62fa7f2851de VPDPBSSDS ymm3, ymm0, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -24694,14 +26769,14 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 0, Acc: RW, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000001E15 62fd7d4859de VMULNEPBF16 zmm3, zmm0, zmm6 +0000000000001F7D 62fa7f4851de VPDPBSSDS zmm3, zmm0, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -24713,14 +26788,14 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 0, Acc: RW, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000001E1B 62fd7d18591e VMULNEPBF16 xmm3, xmm0, word ptr [r22]{1to8} +0000000000001F83 62fa7f18511e VPDPBSSDS xmm3, xmm0, dword ptr [r22]{1to4} DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -24732,16 +26807,16 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 0, Acc: RW, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, + Operand: 3, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Broadcast: yes, Segment: 3, Base: 22, - Decorator: Broadcast 2 bytes element 8 times + Decorator: Broadcast 4 bytes element 4 times -0000000000001E21 62fd7d38591e VMULNEPBF16 ymm3, ymm0, word ptr [r22]{1to16} +0000000000001F89 62fa7f38511e VPDPBSSDS ymm3, ymm0, dword ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 256 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -24753,16 +26828,16 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 0, Acc: RW, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, + Operand: 3, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Broadcast: yes, Segment: 3, Base: 22, - Decorator: Broadcast 2 bytes element 16 times + Decorator: Broadcast 4 bytes element 8 times -0000000000001E27 62fd7d58591e VMULNEPBF16 zmm3, zmm0, word ptr [r22]{1to32} +0000000000001F8F 62fa7f58511e VPDPBSSDS zmm3, zmm0, dword ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 512 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -24774,16 +26849,16 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 0, Acc: RW, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, + Operand: 3, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Broadcast: yes, Segment: 3, Base: 22, - Decorator: Broadcast 2 bytes element 32 times + Decorator: Broadcast 4 bytes element 16 times -0000000000001E2D 62fd7d0f591e VMULNEPBF16 xmm3{k7}, xmm0, xmmword ptr [r22] +0000000000001F95 62fa7f0f511e VPDPBSSDS xmm3{k7}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -24795,16 +26870,16 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 0, Acc: RW, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Decorator: Mask k7 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000001E33 62fd7d2f591e VMULNEPBF16 ymm3{k7}, ymm0, ymmword ptr [r22] +0000000000001F9B 62fa7f2f511e VPDPBSSDS ymm3{k7}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -24816,16 +26891,16 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 0, Acc: RW, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 Decorator: Mask k7 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000001E39 62fd7d4f591e VMULNEPBF16 zmm3{k7}, zmm0, zmmword ptr [r22] +0000000000001FA1 62fa7f4f511e VPDPBSSDS zmm3{k7}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -24837,16 +26912,16 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 0, Acc: RW, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 Decorator: Mask k7 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000001E3F 62fd7d8f591e VMULNEPBF16 xmm3{k7}{z}, xmm0, xmmword ptr [r22] +0000000000001FA7 62fa7f8f511e VPDPBSSDS xmm3{k7}{z}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -24858,7 +26933,7 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 0, Acc: RW, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Decorator: Mask k7 Decorator: Zero (no merging) Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 @@ -24866,9 +26941,9 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000001E45 62fd7daf591e VMULNEPBF16 ymm3{k7}{z}, ymm0, ymmword ptr [r22] +0000000000001FAD 62fa7faf511e VPDPBSSDS ymm3{k7}{z}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -24880,7 +26955,7 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 0, Acc: RW, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 Decorator: Mask k7 Decorator: Zero (no merging) Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 @@ -24888,9 +26963,9 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000001E4B 62fd7dcf591e VMULNEPBF16 zmm3{k7}{z}, zmm0, zmmword ptr [r22] +0000000000001FB3 62fa7fcf511e VPDPBSSDS zmm3{k7}{z}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -24902,7 +26977,7 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 0, Acc: RW, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 Decorator: Mask k7 Decorator: Zero (no merging) Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 @@ -24910,7 +26985,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000001E51 62fa7f08501e VPDPBSSD xmm3, xmm0, xmmword ptr [r22] +0000000000001FB9 62fa7e08501e VPDPBSUD xmm3, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -24930,7 +27005,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000001E57 62fa7f28501e VPDPBSSD ymm3, ymm0, ymmword ptr [r22] +0000000000001FBF 62fa7e28501e VPDPBSUD ymm3, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -24950,7 +27025,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000001E5D 62fa7f48501e VPDPBSSD zmm3, zmm0, zmmword ptr [r22] +0000000000001FC5 62fa7e48501e VPDPBSUD zmm3, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -24970,7 +27045,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000001E63 62fa7f0850de VPDPBSSD xmm3, xmm0, xmm6 +0000000000001FCB 62fa7e0850de VPDPBSUD xmm3, xmm0, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -24989,7 +27064,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000001E69 62fa7f2850de VPDPBSSD ymm3, ymm0, ymm6 +0000000000001FD1 62fa7e2850de VPDPBSUD ymm3, ymm0, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -25008,7 +27083,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000001E6F 62fa7f4850de VPDPBSSD zmm3, zmm0, zmm6 +0000000000001FD7 62fa7e4850de VPDPBSUD zmm3, zmm0, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -25027,7 +27102,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000001E75 62fa7f18501e VPDPBSSD xmm3, xmm0, dword ptr [r22]{1to4} +0000000000001FDD 62fa7e18501e VPDPBSUD xmm3, xmm0, dword ptr [r22]{1to4} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -25048,7 +27123,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 4 bytes element 4 times -0000000000001E7B 62fa7f38501e VPDPBSSD ymm3, ymm0, dword ptr [r22]{1to8} +0000000000001FE3 62fa7e38501e VPDPBSUD ymm3, ymm0, dword ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -25069,7 +27144,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 4 bytes element 8 times -0000000000001E81 62fa7f58501e VPDPBSSD zmm3, zmm0, dword ptr [r22]{1to16} +0000000000001FE9 62fa7e58501e VPDPBSUD zmm3, zmm0, dword ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -25090,7 +27165,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 4 bytes element 16 times -0000000000001E87 62fa7f0f501e VPDPBSSD xmm3{k7}, xmm0, xmmword ptr [r22] +0000000000001FEF 62fa7e0f501e VPDPBSUD xmm3{k7}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -25111,7 +27186,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000001E8D 62fa7f2f501e VPDPBSSD ymm3{k7}, ymm0, ymmword ptr [r22] +0000000000001FF5 62fa7e2f501e VPDPBSUD ymm3{k7}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -25132,7 +27207,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000001E93 62fa7f4f501e VPDPBSSD zmm3{k7}, zmm0, zmmword ptr [r22] +0000000000001FFB 62fa7e4f501e VPDPBSUD zmm3{k7}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -25153,7 +27228,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000001E99 62fa7f8f501e VPDPBSSD xmm3{k7}{z}, xmm0, xmmword ptr [r22] +0000000000002001 62fa7e8f501e VPDPBSUD xmm3{k7}{z}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -25175,7 +27250,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000001E9F 62fa7faf501e VPDPBSSD ymm3{k7}{z}, ymm0, ymmword ptr [r22] +0000000000002007 62fa7eaf501e VPDPBSUD ymm3{k7}{z}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -25197,7 +27272,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000001EA5 62fa7fcf501e VPDPBSSD zmm3{k7}{z}, zmm0, zmmword ptr [r22] +000000000000200D 62fa7ecf501e VPDPBSUD zmm3{k7}{z}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -25219,7 +27294,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000001EAB 62fa7f08511e VPDPBSSDS xmm3, xmm0, xmmword ptr [r22] +0000000000002013 62fa7e08511e VPDPBSUDS xmm3, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -25239,7 +27314,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000001EB1 62fa7f28511e VPDPBSSDS ymm3, ymm0, ymmword ptr [r22] +0000000000002019 62fa7e28511e VPDPBSUDS ymm3, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -25259,7 +27334,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000001EB7 62fa7f48511e VPDPBSSDS zmm3, zmm0, zmmword ptr [r22] +000000000000201F 62fa7e48511e VPDPBSUDS zmm3, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -25279,7 +27354,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000001EBD 62fa7f0851de VPDPBSSDS xmm3, xmm0, xmm6 +0000000000002025 62fa7e0851de VPDPBSUDS xmm3, xmm0, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -25298,7 +27373,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000001EC3 62fa7f2851de VPDPBSSDS ymm3, ymm0, ymm6 +000000000000202B 62fa7e2851de VPDPBSUDS ymm3, ymm0, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -25317,7 +27392,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000001EC9 62fa7f4851de VPDPBSSDS zmm3, zmm0, zmm6 +0000000000002031 62fa7e4851de VPDPBSUDS zmm3, zmm0, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -25336,7 +27411,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000001ECF 62fa7f18511e VPDPBSSDS xmm3, xmm0, dword ptr [r22]{1to4} +0000000000002037 62fa7e18511e VPDPBSUDS xmm3, xmm0, dword ptr [r22]{1to4} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -25357,7 +27432,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 4 bytes element 4 times -0000000000001ED5 62fa7f38511e VPDPBSSDS ymm3, ymm0, dword ptr [r22]{1to8} +000000000000203D 62fa7e38511e VPDPBSUDS ymm3, ymm0, dword ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -25378,7 +27453,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 4 bytes element 8 times -0000000000001EDB 62fa7f58511e VPDPBSSDS zmm3, zmm0, dword ptr [r22]{1to16} +0000000000002043 62fa7e58511e VPDPBSUDS zmm3, zmm0, dword ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -25399,7 +27474,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 4 bytes element 16 times -0000000000001EE1 62fa7f0f511e VPDPBSSDS xmm3{k7}, xmm0, xmmword ptr [r22] +0000000000002049 62fa7e0f511e VPDPBSUDS xmm3{k7}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -25420,7 +27495,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000001EE7 62fa7f2f511e VPDPBSSDS ymm3{k7}, ymm0, ymmword ptr [r22] +000000000000204F 62fa7e2f511e VPDPBSUDS ymm3{k7}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -25441,7 +27516,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000001EED 62fa7f4f511e VPDPBSSDS zmm3{k7}, zmm0, zmmword ptr [r22] +0000000000002055 62fa7e4f511e VPDPBSUDS zmm3{k7}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -25462,7 +27537,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000001EF3 62fa7f8f511e VPDPBSSDS xmm3{k7}{z}, xmm0, xmmword ptr [r22] +000000000000205B 62fa7e8f511e VPDPBSUDS xmm3{k7}{z}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -25484,7 +27559,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000001EF9 62fa7faf511e VPDPBSSDS ymm3{k7}{z}, ymm0, ymmword ptr [r22] +0000000000002061 62fa7eaf511e VPDPBSUDS ymm3{k7}{z}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -25506,7 +27581,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000001EFF 62fa7fcf511e VPDPBSSDS zmm3{k7}{z}, zmm0, zmmword ptr [r22] +0000000000002067 62fa7ecf511e VPDPBSUDS zmm3{k7}{z}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -25528,7 +27603,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000001F05 62fa7e08501e VPDPBSUD xmm3, xmm0, xmmword ptr [r22] +000000000000206D 62fa7c08501e VPDPBUUD xmm3, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -25548,7 +27623,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000001F0B 62fa7e28501e VPDPBSUD ymm3, ymm0, ymmword ptr [r22] +0000000000002073 62fa7c28501e VPDPBUUD ymm3, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -25568,7 +27643,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000001F11 62fa7e48501e VPDPBSUD zmm3, zmm0, zmmword ptr [r22] +0000000000002079 62fa7c48501e VPDPBUUD zmm3, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -25588,7 +27663,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000001F17 62fa7e0850de VPDPBSUD xmm3, xmm0, xmm6 +000000000000207F 62fa7c0850de VPDPBUUD xmm3, xmm0, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -25607,7 +27682,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000001F1D 62fa7e2850de VPDPBSUD ymm3, ymm0, ymm6 +0000000000002085 62fa7c2850de VPDPBUUD ymm3, ymm0, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -25626,7 +27701,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000001F23 62fa7e4850de VPDPBSUD zmm3, zmm0, zmm6 +000000000000208B 62fa7c4850de VPDPBUUD zmm3, zmm0, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -25645,7 +27720,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000001F29 62fa7e18501e VPDPBSUD xmm3, xmm0, dword ptr [r22]{1to4} +0000000000002091 62fa7c18501e VPDPBUUD xmm3, xmm0, dword ptr [r22]{1to4} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -25666,7 +27741,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 4 bytes element 4 times -0000000000001F2F 62fa7e38501e VPDPBSUD ymm3, ymm0, dword ptr [r22]{1to8} +0000000000002097 62fa7c38501e VPDPBUUD ymm3, ymm0, dword ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -25687,7 +27762,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 4 bytes element 8 times -0000000000001F35 62fa7e58501e VPDPBSUD zmm3, zmm0, dword ptr [r22]{1to16} +000000000000209D 62fa7c58501e VPDPBUUD zmm3, zmm0, dword ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -25708,7 +27783,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 4 bytes element 16 times -0000000000001F3B 62fa7e0f501e VPDPBSUD xmm3{k7}, xmm0, xmmword ptr [r22] +00000000000020A3 62fa7c0f501e VPDPBUUD xmm3{k7}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -25729,7 +27804,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000001F41 62fa7e2f501e VPDPBSUD ymm3{k7}, ymm0, ymmword ptr [r22] +00000000000020A9 62fa7c2f501e VPDPBUUD ymm3{k7}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -25750,7 +27825,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000001F47 62fa7e4f501e VPDPBSUD zmm3{k7}, zmm0, zmmword ptr [r22] +00000000000020AF 62fa7c4f501e VPDPBUUD zmm3{k7}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -25771,7 +27846,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000001F4D 62fa7e8f501e VPDPBSUD xmm3{k7}{z}, xmm0, xmmword ptr [r22] +00000000000020B5 62fa7c8f501e VPDPBUUD xmm3{k7}{z}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -25793,7 +27868,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000001F53 62fa7eaf501e VPDPBSUD ymm3{k7}{z}, ymm0, ymmword ptr [r22] +00000000000020BB 62fa7caf501e VPDPBUUD ymm3{k7}{z}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -25815,7 +27890,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000001F59 62fa7ecf501e VPDPBSUD zmm3{k7}{z}, zmm0, zmmword ptr [r22] +00000000000020C1 62fa7ccf501e VPDPBUUD zmm3{k7}{z}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -25837,7 +27912,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000001F5F 62fa7e08511e VPDPBSUDS xmm3, xmm0, xmmword ptr [r22] +00000000000020C7 62fa7c08511e VPDPBUUDS xmm3, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -25857,7 +27932,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000001F65 62fa7e28511e VPDPBSUDS ymm3, ymm0, ymmword ptr [r22] +00000000000020CD 62fa7c28511e VPDPBUUDS ymm3, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -25877,7 +27952,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000001F6B 62fa7e48511e VPDPBSUDS zmm3, zmm0, zmmword ptr [r22] +00000000000020D3 62fa7c48511e VPDPBUUDS zmm3, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -25897,7 +27972,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000001F71 62fa7e0851de VPDPBSUDS xmm3, xmm0, xmm6 +00000000000020D9 62fa7c0851de VPDPBUUDS xmm3, xmm0, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -25916,7 +27991,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000001F77 62fa7e2851de VPDPBSUDS ymm3, ymm0, ymm6 +00000000000020DF 62fa7c2851de VPDPBUUDS ymm3, ymm0, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -25935,7 +28010,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000001F7D 62fa7e4851de VPDPBSUDS zmm3, zmm0, zmm6 +00000000000020E5 62fa7c4851de VPDPBUUDS zmm3, zmm0, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -25954,7 +28029,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000001F83 62fa7e18511e VPDPBSUDS xmm3, xmm0, dword ptr [r22]{1to4} +00000000000020EB 62fa7c18511e VPDPBUUDS xmm3, xmm0, dword ptr [r22]{1to4} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -25975,7 +28050,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 4 bytes element 4 times -0000000000001F89 62fa7e38511e VPDPBSUDS ymm3, ymm0, dword ptr [r22]{1to8} +00000000000020F1 62fa7c38511e VPDPBUUDS ymm3, ymm0, dword ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -25996,7 +28071,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 4 bytes element 8 times -0000000000001F8F 62fa7e58511e VPDPBSUDS zmm3, zmm0, dword ptr [r22]{1to16} +00000000000020F7 62fa7c58511e VPDPBUUDS zmm3, zmm0, dword ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -26017,7 +28092,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 4 bytes element 16 times -0000000000001F95 62fa7e0f511e VPDPBSUDS xmm3{k7}, xmm0, xmmword ptr [r22] +00000000000020FD 62fa7c0f511e VPDPBUUDS xmm3{k7}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -26038,7 +28113,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000001F9B 62fa7e2f511e VPDPBSUDS ymm3{k7}, ymm0, ymmword ptr [r22] +0000000000002103 62fa7c2f511e VPDPBUUDS ymm3{k7}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -26059,7 +28134,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000001FA1 62fa7e4f511e VPDPBSUDS zmm3{k7}, zmm0, zmmword ptr [r22] +0000000000002109 62fa7c4f511e VPDPBUUDS zmm3{k7}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -26080,7 +28155,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000001FA7 62fa7e8f511e VPDPBSUDS xmm3{k7}{z}, xmm0, xmmword ptr [r22] +000000000000210F 62fa7c8f511e VPDPBUUDS xmm3{k7}{z}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -26102,7 +28177,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000001FAD 62fa7eaf511e VPDPBSUDS ymm3{k7}{z}, ymm0, ymmword ptr [r22] +0000000000002115 62fa7caf511e VPDPBUUDS ymm3{k7}{z}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -26124,7 +28199,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000001FB3 62fa7ecf511e VPDPBSUDS zmm3{k7}{z}, zmm0, zmmword ptr [r22] +000000000000211B 62fa7ccf511e VPDPBUUDS zmm3{k7}{z}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -26146,7 +28221,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000001FB9 62fa7c08501e VPDPBUUD xmm3, xmm0, xmmword ptr [r22] +0000000000002121 62fa7e08d21e VPDPWSUD xmm3, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -26166,7 +28241,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000001FBF 62fa7c28501e VPDPBUUD ymm3, ymm0, ymmword ptr [r22] +0000000000002127 62fa7e28d21e VPDPWSUD ymm3, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -26186,7 +28261,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000001FC5 62fa7c48501e VPDPBUUD zmm3, zmm0, zmmword ptr [r22] +000000000000212D 62fa7e48d21e VPDPWSUD zmm3, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -26206,7 +28281,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000001FCB 62fa7c0850de VPDPBUUD xmm3, xmm0, xmm6 +0000000000002133 62fa7e08d2de VPDPWSUD xmm3, xmm0, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -26225,7 +28300,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000001FD1 62fa7c2850de VPDPBUUD ymm3, ymm0, ymm6 +0000000000002139 62fa7e28d2de VPDPWSUD ymm3, ymm0, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -26244,7 +28319,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000001FD7 62fa7c4850de VPDPBUUD zmm3, zmm0, zmm6 +000000000000213F 62fa7e48d2de VPDPWSUD zmm3, zmm0, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -26263,7 +28338,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000001FDD 62fa7c18501e VPDPBUUD xmm3, xmm0, dword ptr [r22]{1to4} +0000000000002145 62fa7e18d21e VPDPWSUD xmm3, xmm0, dword ptr [r22]{1to4} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -26284,7 +28359,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 4 bytes element 4 times -0000000000001FE3 62fa7c38501e VPDPBUUD ymm3, ymm0, dword ptr [r22]{1to8} +000000000000214B 62fa7e38d21e VPDPWSUD ymm3, ymm0, dword ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -26305,7 +28380,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 4 bytes element 8 times -0000000000001FE9 62fa7c58501e VPDPBUUD zmm3, zmm0, dword ptr [r22]{1to16} +0000000000002151 62fa7e58d21e VPDPWSUD zmm3, zmm0, dword ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -26326,7 +28401,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 4 bytes element 16 times -0000000000001FEF 62fa7c0f501e VPDPBUUD xmm3{k7}, xmm0, xmmword ptr [r22] +0000000000002157 62fa7e0fd21e VPDPWSUD xmm3{k7}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -26347,7 +28422,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000001FF5 62fa7c2f501e VPDPBUUD ymm3{k7}, ymm0, ymmword ptr [r22] +000000000000215D 62fa7e2fd21e VPDPWSUD ymm3{k7}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -26368,7 +28443,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000001FFB 62fa7c4f501e VPDPBUUD zmm3{k7}, zmm0, zmmword ptr [r22] +0000000000002163 62fa7e4fd21e VPDPWSUD zmm3{k7}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -26389,7 +28464,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000002001 62fa7c8f501e VPDPBUUD xmm3{k7}{z}, xmm0, xmmword ptr [r22] +0000000000002169 62fa7e8fd21e VPDPWSUD xmm3{k7}{z}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -26411,7 +28486,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000002007 62fa7caf501e VPDPBUUD ymm3{k7}{z}, ymm0, ymmword ptr [r22] +000000000000216F 62fa7eafd21e VPDPWSUD ymm3{k7}{z}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -26433,7 +28508,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -000000000000200D 62fa7ccf501e VPDPBUUD zmm3{k7}{z}, zmm0, zmmword ptr [r22] +0000000000002175 62fa7ecfd21e VPDPWSUD zmm3{k7}{z}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -26455,7 +28530,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000002013 62fa7c08511e VPDPBUUDS xmm3, xmm0, xmmword ptr [r22] +000000000000217B 62fa7e08d31e VPDPWSUDS xmm3, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -26475,7 +28550,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000002019 62fa7c28511e VPDPBUUDS ymm3, ymm0, ymmword ptr [r22] +0000000000002181 62fa7e28d31e VPDPWSUDS ymm3, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -26495,7 +28570,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -000000000000201F 62fa7c48511e VPDPBUUDS zmm3, zmm0, zmmword ptr [r22] +0000000000002187 62fa7e48d31e VPDPWSUDS zmm3, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -26515,7 +28590,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000002025 62fa7c0851de VPDPBUUDS xmm3, xmm0, xmm6 +000000000000218D 62fa7e08d3de VPDPWSUDS xmm3, xmm0, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -26534,7 +28609,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -000000000000202B 62fa7c2851de VPDPBUUDS ymm3, ymm0, ymm6 +0000000000002193 62fa7e28d3de VPDPWSUDS ymm3, ymm0, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -26553,7 +28628,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000002031 62fa7c4851de VPDPBUUDS zmm3, zmm0, zmm6 +0000000000002199 62fa7e48d3de VPDPWSUDS zmm3, zmm0, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -26572,7 +28647,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000002037 62fa7c18511e VPDPBUUDS xmm3, xmm0, dword ptr [r22]{1to4} +000000000000219F 62fa7e18d31e VPDPWSUDS xmm3, xmm0, dword ptr [r22]{1to4} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -26593,7 +28668,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 4 bytes element 4 times -000000000000203D 62fa7c38511e VPDPBUUDS ymm3, ymm0, dword ptr [r22]{1to8} +00000000000021A5 62fa7e38d31e VPDPWSUDS ymm3, ymm0, dword ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -26614,7 +28689,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 4 bytes element 8 times -0000000000002043 62fa7c58511e VPDPBUUDS zmm3, zmm0, dword ptr [r22]{1to16} +00000000000021AB 62fa7e58d31e VPDPWSUDS zmm3, zmm0, dword ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -26635,7 +28710,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 4 bytes element 16 times -0000000000002049 62fa7c0f511e VPDPBUUDS xmm3{k7}, xmm0, xmmword ptr [r22] +00000000000021B1 62fa7e0fd31e VPDPWSUDS xmm3{k7}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -26656,7 +28731,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -000000000000204F 62fa7c2f511e VPDPBUUDS ymm3{k7}, ymm0, ymmword ptr [r22] +00000000000021B7 62fa7e2fd31e VPDPWSUDS ymm3{k7}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -26677,7 +28752,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000002055 62fa7c4f511e VPDPBUUDS zmm3{k7}, zmm0, zmmword ptr [r22] +00000000000021BD 62fa7e4fd31e VPDPWSUDS zmm3{k7}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -26698,7 +28773,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -000000000000205B 62fa7c8f511e VPDPBUUDS xmm3{k7}{z}, xmm0, xmmword ptr [r22] +00000000000021C3 62fa7e8fd31e VPDPWSUDS xmm3{k7}{z}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -26720,7 +28795,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000002061 62fa7caf511e VPDPBUUDS ymm3{k7}{z}, ymm0, ymmword ptr [r22] +00000000000021C9 62fa7eafd31e VPDPWSUDS ymm3{k7}{z}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -26742,7 +28817,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000002067 62fa7ccf511e VPDPBUUDS zmm3{k7}{z}, zmm0, zmmword ptr [r22] +00000000000021CF 62fa7ecfd31e VPDPWSUDS zmm3{k7}{z}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -26764,7 +28839,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -000000000000206D 62fa7e08d21e VPDPWSUD xmm3, xmm0, xmmword ptr [r22] +00000000000021D5 62fa7d08d21e VPDPWUSD xmm3, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -26784,7 +28859,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000002073 62fa7e28d21e VPDPWSUD ymm3, ymm0, ymmword ptr [r22] +00000000000021DB 62fa7d28d21e VPDPWUSD ymm3, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -26804,7 +28879,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000002079 62fa7e48d21e VPDPWSUD zmm3, zmm0, zmmword ptr [r22] +00000000000021E1 62fa7d48d21e VPDPWUSD zmm3, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -26824,7 +28899,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -000000000000207F 62fa7e08d2de VPDPWSUD xmm3, xmm0, xmm6 +00000000000021E7 62fa7d08d2de VPDPWUSD xmm3, xmm0, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -26843,7 +28918,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000002085 62fa7e28d2de VPDPWSUD ymm3, ymm0, ymm6 +00000000000021ED 62fa7d28d2de VPDPWUSD ymm3, ymm0, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -26862,7 +28937,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -000000000000208B 62fa7e48d2de VPDPWSUD zmm3, zmm0, zmm6 +00000000000021F3 62fa7d48d2de VPDPWUSD zmm3, zmm0, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -26881,7 +28956,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000002091 62fa7e18d21e VPDPWSUD xmm3, xmm0, dword ptr [r22]{1to4} +00000000000021F9 62fa7d18d21e VPDPWUSD xmm3, xmm0, dword ptr [r22]{1to4} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -26902,7 +28977,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 4 bytes element 4 times -0000000000002097 62fa7e38d21e VPDPWSUD ymm3, ymm0, dword ptr [r22]{1to8} +00000000000021FF 62fa7d38d21e VPDPWUSD ymm3, ymm0, dword ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -26923,7 +28998,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 4 bytes element 8 times -000000000000209D 62fa7e58d21e VPDPWSUD zmm3, zmm0, dword ptr [r22]{1to16} +0000000000002205 62fa7d58d21e VPDPWUSD zmm3, zmm0, dword ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -26944,7 +29019,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 4 bytes element 16 times -00000000000020A3 62fa7e0fd21e VPDPWSUD xmm3{k7}, xmm0, xmmword ptr [r22] +000000000000220B 62fa7d0fd21e VPDPWUSD xmm3{k7}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -26965,7 +29040,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -00000000000020A9 62fa7e2fd21e VPDPWSUD ymm3{k7}, ymm0, ymmword ptr [r22] +0000000000002211 62fa7d2fd21e VPDPWUSD ymm3{k7}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -26986,7 +29061,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -00000000000020AF 62fa7e4fd21e VPDPWSUD zmm3{k7}, zmm0, zmmword ptr [r22] +0000000000002217 62fa7d4fd21e VPDPWUSD zmm3{k7}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -27007,7 +29082,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -00000000000020B5 62fa7e8fd21e VPDPWSUD xmm3{k7}{z}, xmm0, xmmword ptr [r22] +000000000000221D 62fa7d8fd21e VPDPWUSD xmm3{k7}{z}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -27029,7 +29104,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -00000000000020BB 62fa7eafd21e VPDPWSUD ymm3{k7}{z}, ymm0, ymmword ptr [r22] +0000000000002223 62fa7dafd21e VPDPWUSD ymm3{k7}{z}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -27051,7 +29126,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -00000000000020C1 62fa7ecfd21e VPDPWSUD zmm3{k7}{z}, zmm0, zmmword ptr [r22] +0000000000002229 62fa7dcfd21e VPDPWUSD zmm3{k7}{z}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -27073,7 +29148,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -00000000000020C7 62fa7e08d31e VPDPWSUDS xmm3, xmm0, xmmword ptr [r22] +000000000000222F 62fa7d08d31e VPDPWUSDS xmm3, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -27093,7 +29168,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -00000000000020CD 62fa7e28d31e VPDPWSUDS ymm3, ymm0, ymmword ptr [r22] +0000000000002235 62fa7d28d31e VPDPWUSDS ymm3, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -27113,7 +29188,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -00000000000020D3 62fa7e48d31e VPDPWSUDS zmm3, zmm0, zmmword ptr [r22] +000000000000223B 62fa7d48d31e VPDPWUSDS zmm3, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -27133,7 +29208,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -00000000000020D9 62fa7e08d3de VPDPWSUDS xmm3, xmm0, xmm6 +0000000000002241 62fa7d08d3de VPDPWUSDS xmm3, xmm0, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -27152,7 +29227,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -00000000000020DF 62fa7e28d3de VPDPWSUDS ymm3, ymm0, ymm6 +0000000000002247 62fa7d28d3de VPDPWUSDS ymm3, ymm0, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -27171,7 +29246,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -00000000000020E5 62fa7e48d3de VPDPWSUDS zmm3, zmm0, zmm6 +000000000000224D 62fa7d48d3de VPDPWUSDS zmm3, zmm0, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -27190,7 +29265,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -00000000000020EB 62fa7e18d31e VPDPWSUDS xmm3, xmm0, dword ptr [r22]{1to4} +0000000000002253 62fa7d18d31e VPDPWUSDS xmm3, xmm0, dword ptr [r22]{1to4} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -27211,7 +29286,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 4 bytes element 4 times -00000000000020F1 62fa7e38d31e VPDPWSUDS ymm3, ymm0, dword ptr [r22]{1to8} +0000000000002259 62fa7d38d31e VPDPWUSDS ymm3, ymm0, dword ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -27232,7 +29307,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 4 bytes element 8 times -00000000000020F7 62fa7e58d31e VPDPWSUDS zmm3, zmm0, dword ptr [r22]{1to16} +000000000000225F 62fa7d58d31e VPDPWUSDS zmm3, zmm0, dword ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -27253,7 +29328,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 4 bytes element 16 times -00000000000020FD 62fa7e0fd31e VPDPWSUDS xmm3{k7}, xmm0, xmmword ptr [r22] +0000000000002265 62fa7d0fd31e VPDPWUSDS xmm3{k7}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -27274,7 +29349,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000002103 62fa7e2fd31e VPDPWSUDS ymm3{k7}, ymm0, ymmword ptr [r22] +000000000000226B 62fa7d2fd31e VPDPWUSDS ymm3{k7}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -27295,7 +29370,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000002109 62fa7e4fd31e VPDPWSUDS zmm3{k7}, zmm0, zmmword ptr [r22] +0000000000002271 62fa7d4fd31e VPDPWUSDS zmm3{k7}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -27316,7 +29391,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -000000000000210F 62fa7e8fd31e VPDPWSUDS xmm3{k7}{z}, xmm0, xmmword ptr [r22] +0000000000002277 62fa7d8fd31e VPDPWUSDS xmm3{k7}{z}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -27338,7 +29413,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000002115 62fa7eafd31e VPDPWSUDS ymm3{k7}{z}, ymm0, ymmword ptr [r22] +000000000000227D 62fa7dafd31e VPDPWUSDS ymm3{k7}{z}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -27360,7 +29435,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -000000000000211B 62fa7ecfd31e VPDPWSUDS zmm3{k7}{z}, zmm0, zmmword ptr [r22] +0000000000002283 62fa7dcfd31e VPDPWUSDS zmm3{k7}{z}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -27382,7 +29457,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000002121 62fa7d08d21e VPDPWUSD xmm3, xmm0, xmmword ptr [r22] +0000000000002289 62fa7c08d21e VPDPWUUD xmm3, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -27402,7 +29477,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000002127 62fa7d28d21e VPDPWUSD ymm3, ymm0, ymmword ptr [r22] +000000000000228F 62fa7c28d21e VPDPWUUD ymm3, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -27422,7 +29497,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -000000000000212D 62fa7d48d21e VPDPWUSD zmm3, zmm0, zmmword ptr [r22] +0000000000002295 62fa7c48d21e VPDPWUUD zmm3, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -27442,7 +29517,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000002133 62fa7d08d2de VPDPWUSD xmm3, xmm0, xmm6 +000000000000229B 62fa7c08d2de VPDPWUUD xmm3, xmm0, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -27461,7 +29536,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000002139 62fa7d28d2de VPDPWUSD ymm3, ymm0, ymm6 +00000000000022A1 62fa7c28d2de VPDPWUUD ymm3, ymm0, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -27480,7 +29555,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -000000000000213F 62fa7d48d2de VPDPWUSD zmm3, zmm0, zmm6 +00000000000022A7 62fa7c48d2de VPDPWUUD zmm3, zmm0, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -27499,7 +29574,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000002145 62fa7d18d21e VPDPWUSD xmm3, xmm0, dword ptr [r22]{1to4} +00000000000022AD 62fa7c18d21e VPDPWUUD xmm3, xmm0, dword ptr [r22]{1to4} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -27520,7 +29595,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 4 bytes element 4 times -000000000000214B 62fa7d38d21e VPDPWUSD ymm3, ymm0, dword ptr [r22]{1to8} +00000000000022B3 62fa7c38d21e VPDPWUUD ymm3, ymm0, dword ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -27541,7 +29616,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 4 bytes element 8 times -0000000000002151 62fa7d58d21e VPDPWUSD zmm3, zmm0, dword ptr [r22]{1to16} +00000000000022B9 62fa7c58d21e VPDPWUUD zmm3, zmm0, dword ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -27562,7 +29637,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 4 bytes element 16 times -0000000000002157 62fa7d0fd21e VPDPWUSD xmm3{k7}, xmm0, xmmword ptr [r22] +00000000000022BF 62fa7c0fd21e VPDPWUUD xmm3{k7}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -27583,7 +29658,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -000000000000215D 62fa7d2fd21e VPDPWUSD ymm3{k7}, ymm0, ymmword ptr [r22] +00000000000022C5 62fa7c2fd21e VPDPWUUD ymm3{k7}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -27604,7 +29679,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000002163 62fa7d4fd21e VPDPWUSD zmm3{k7}, zmm0, zmmword ptr [r22] +00000000000022CB 62fa7c4fd21e VPDPWUUD zmm3{k7}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -27625,7 +29700,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000002169 62fa7d8fd21e VPDPWUSD xmm3{k7}{z}, xmm0, xmmword ptr [r22] +00000000000022D1 62fa7c8fd21e VPDPWUUD xmm3{k7}{z}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -27647,7 +29722,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -000000000000216F 62fa7dafd21e VPDPWUSD ymm3{k7}{z}, ymm0, ymmword ptr [r22] +00000000000022D7 62fa7cafd21e VPDPWUUD ymm3{k7}{z}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -27669,7 +29744,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000002175 62fa7dcfd21e VPDPWUSD zmm3{k7}{z}, zmm0, zmmword ptr [r22] +00000000000022DD 62fa7ccfd21e VPDPWUUD zmm3{k7}{z}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -27691,7 +29766,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -000000000000217B 62fa7d08d31e VPDPWUSDS xmm3, xmm0, xmmword ptr [r22] +00000000000022E3 62fa7c08d31e VPDPWUUDS xmm3, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -27711,7 +29786,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000002181 62fa7d28d31e VPDPWUSDS ymm3, ymm0, ymmword ptr [r22] +00000000000022E9 62fa7c28d31e VPDPWUUDS ymm3, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -27731,7 +29806,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000002187 62fa7d48d31e VPDPWUSDS zmm3, zmm0, zmmword ptr [r22] +00000000000022EF 62fa7c48d31e VPDPWUUDS zmm3, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -27751,7 +29826,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -000000000000218D 62fa7d08d3de VPDPWUSDS xmm3, xmm0, xmm6 +00000000000022F5 62fa7c08d3de VPDPWUUDS xmm3, xmm0, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -27770,7 +29845,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000002193 62fa7d28d3de VPDPWUSDS ymm3, ymm0, ymm6 +00000000000022FB 62fa7c28d3de VPDPWUUDS ymm3, ymm0, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -27789,7 +29864,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -0000000000002199 62fa7d48d3de VPDPWUSDS zmm3, zmm0, zmm6 +0000000000002301 62fa7c48d3de VPDPWUUDS zmm3, zmm0, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -27808,7 +29883,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -000000000000219F 62fa7d18d31e VPDPWUSDS xmm3, xmm0, dword ptr [r22]{1to4} +0000000000002307 62fa7c18d31e VPDPWUUDS xmm3, xmm0, dword ptr [r22]{1to4} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -27829,7 +29904,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 4 bytes element 4 times -00000000000021A5 62fa7d38d31e VPDPWUSDS ymm3, ymm0, dword ptr [r22]{1to8} +000000000000230D 62fa7c38d31e VPDPWUUDS ymm3, ymm0, dword ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -27850,7 +29925,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 4 bytes element 8 times -00000000000021AB 62fa7d58d31e VPDPWUSDS zmm3, zmm0, dword ptr [r22]{1to16} +0000000000002313 62fa7c58d31e VPDPWUUDS zmm3, zmm0, dword ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -27871,7 +29946,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 4 bytes element 16 times -00000000000021B1 62fa7d0fd31e VPDPWUSDS xmm3{k7}, xmm0, xmmword ptr [r22] +0000000000002319 62fa7c0fd31e VPDPWUUDS xmm3{k7}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -27892,7 +29967,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -00000000000021B7 62fa7d2fd31e VPDPWUSDS ymm3{k7}, ymm0, ymmword ptr [r22] +000000000000231F 62fa7c2fd31e VPDPWUUDS ymm3{k7}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -27913,7 +29988,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -00000000000021BD 62fa7d4fd31e VPDPWUSDS zmm3{k7}, zmm0, zmmword ptr [r22] +0000000000002325 62fa7c4fd31e VPDPWUUDS zmm3{k7}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -27934,7 +30009,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -00000000000021C3 62fa7d8fd31e VPDPWUSDS xmm3{k7}{z}, xmm0, xmmword ptr [r22] +000000000000232B 62fa7c8fd31e VPDPWUUDS xmm3{k7}{z}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -27956,7 +30031,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -00000000000021C9 62fa7dafd31e VPDPWUSDS ymm3{k7}{z}, ymm0, ymmword ptr [r22] +0000000000002331 62fa7cafd31e VPDPWUUDS ymm3{k7}{z}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -27978,7 +30053,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -00000000000021CF 62fa7dcfd31e VPDPWUSDS zmm3{k7}{z}, zmm0, zmmword ptr [r22] +0000000000002337 62fa7ccfd31e VPDPWUUDS zmm3{k7}{z}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no EVEX Tuple Type: Full @@ -28000,9 +30075,9 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -00000000000021D5 62fa7c08d21e VPDPWUUD xmm3, xmm0, xmmword ptr [r22] +000000000000233D 62fe7c084c1e VRCPPBF16 xmm3, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -28014,15 +30089,14 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: RW, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, + Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -00000000000021DB 62fa7c28d21e VPDPWUUD ymm3, ymm0, ymmword ptr [r22] +0000000000002343 62fe7c284c1e VRCPPBF16 ymm3, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 - ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -28034,15 +30108,14 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: RW, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, + Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -00000000000021E1 62fa7c48d21e VPDPWUUD zmm3, zmm0, zmmword ptr [r22] +0000000000002349 62fe7c484c1e VRCPPBF16 zmm3, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 - ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -28054,15 +30127,14 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: RW, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, + Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -00000000000021E7 62fa7c08d2de VPDPWUUD xmm3, xmm0, xmm6 +000000000000234F 62fe7c084cde VRCPPBF16 xmm3, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -28074,14 +30146,13 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: RW, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -00000000000021ED 62fa7c28d2de VPDPWUUD ymm3, ymm0, ymm6 +0000000000002355 62fe7c284cde VRCPPBF16 ymm3, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 - ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -28093,14 +30164,13 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: RW, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -00000000000021F3 62fa7c48d2de VPDPWUUD zmm3, zmm0, zmm6 +000000000000235B 62fe7c484cde VRCPPBF16 zmm3, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 - ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -28112,14 +30182,13 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: RW, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -00000000000021F9 62fa7c18d21e VPDPWUUD xmm3, xmm0, dword ptr [r22]{1to4} +0000000000002361 62fe7c184c1e VRCPPBF16 xmm3, word ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -28131,16 +30200,15 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: RW, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Broadcast: yes, + Operand: 2, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, Segment: 3, Base: 22, - Decorator: Broadcast 4 bytes element 4 times + Decorator: Broadcast 2 bytes element 8 times -00000000000021FF 62fa7c38d21e VPDPWUUD ymm3, ymm0, dword ptr [r22]{1to8} +0000000000002367 62fe7c384c1e VRCPPBF16 ymm3, word ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 256 - ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -28152,16 +30220,15 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: RW, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Broadcast: yes, + Operand: 2, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, Segment: 3, Base: 22, - Decorator: Broadcast 4 bytes element 8 times + Decorator: Broadcast 2 bytes element 16 times -0000000000002205 62fa7c58d21e VPDPWUUD zmm3, zmm0, dword ptr [r22]{1to16} +000000000000236D 62fe7c584c1e VRCPPBF16 zmm3, word ptr [r22]{1to32} DSIZE: 32, ASIZE: 64, VLEN: 512 - ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -28173,16 +30240,15 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: RW, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Broadcast: yes, + Operand: 2, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, Segment: 3, Base: 22, - Decorator: Broadcast 4 bytes element 16 times + Decorator: Broadcast 2 bytes element 32 times -000000000000220B 62fa7c0fd21e VPDPWUUD xmm3{k7}, xmm0, xmmword ptr [r22] +0000000000002373 62fe7c0f4c1e VRCPPBF16 xmm3{k7}, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -28194,16 +30260,15 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: RW, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Decorator: Mask k7 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, + Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000002211 62fa7c2fd21e VPDPWUUD ymm3{k7}, ymm0, ymmword ptr [r22] +0000000000002379 62fe7c2f4c1e VRCPPBF16 ymm3{k7}, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 - ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -28215,16 +30280,15 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: RW, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 Decorator: Mask k7 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, + Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000002217 62fa7c4fd21e VPDPWUUD zmm3{k7}, zmm0, zmmword ptr [r22] +000000000000237F 62fe7c4f4c1e VRCPPBF16 zmm3{k7}, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 - ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -28236,16 +30300,15 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: RW, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 Decorator: Mask k7 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, + Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -000000000000221D 62fa7c8fd21e VPDPWUUD xmm3{k7}{z}, xmm0, xmmword ptr [r22] +0000000000002385 62fe7c8f4c1e VRCPPBF16 xmm3{k7}{z}, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -28257,17 +30320,16 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: RW, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Decorator: Mask k7 Decorator: Zero (no merging) Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, + Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000002223 62fa7cafd21e VPDPWUUD ymm3{k7}{z}, ymm0, ymmword ptr [r22] +000000000000238B 62fe7caf4c1e VRCPPBF16 ymm3{k7}{z}, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 - ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -28279,17 +30341,16 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: RW, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 Decorator: Mask k7 Decorator: Zero (no merging) Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, + Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000002229 62fa7ccfd21e VPDPWUUD zmm3{k7}{z}, zmm0, zmmword ptr [r22] +0000000000002391 62fe7ccf4c1e VRCPPBF16 zmm3{k7}{z}, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 - ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -28301,17 +30362,16 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: RW, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 Decorator: Mask k7 Decorator: Zero (no merging) Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, + Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -000000000000222F 62fa7c08d31e VPDPWUUDS xmm3, xmm0, xmmword ptr [r22] +0000000000002397 62fb7f08561ebd VREDUCENEPBF16 xmm3, xmmword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -28323,15 +30383,15 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: RW, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, + Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, + Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000002235 62fa7c28d31e VPDPWUUDS ymm3, ymm0, ymmword ptr [r22] +000000000000239E 62fb7f28561ebd VREDUCENEPBF16 ymm3, ymmword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 256 - ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -28343,15 +30403,15 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: RW, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, + Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, + Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000223B 62fa7c48d31e VPDPWUUDS zmm3, zmm0, zmmword ptr [r22] +00000000000023A5 62fb7f48561ebd VREDUCENEPBF16 zmm3, zmmword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 512 - ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -28363,15 +30423,15 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: RW, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, + Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, + Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000002241 62fa7c08d3de VPDPWUUDS xmm3, xmm0, xmm6 +00000000000023AC 62fb7f0856debd VREDUCENEPBF16 xmm3, xmm6, 0xbd DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -28383,14 +30443,14 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: RW, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000002247 62fa7c28d3de VPDPWUUDS ymm3, ymm0, ymm6 +00000000000023B3 62fb7f2856debd VREDUCENEPBF16 ymm3, ymm6, 0xbd DSIZE: 32, ASIZE: 64, VLEN: 256 - ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -28402,14 +30462,14 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: RW, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 + Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000224D 62fa7c48d3de VPDPWUUDS zmm3, zmm0, zmm6 +00000000000023BA 62fb7f4856debd VREDUCENEPBF16 zmm3, zmm6, 0xbd DSIZE: 32, ASIZE: 64, VLEN: 512 - ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -28421,14 +30481,14 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: RW, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 + Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000002253 62fa7c18d31e VPDPWUUDS xmm3, xmm0, dword ptr [r22]{1to4} +00000000000023C1 62fb7f18561ebd VREDUCENEPBF16 xmm3, word ptr [r22]{1to8}, 0xbd DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -28440,16 +30500,16 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: RW, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Broadcast: yes, + Operand: 2, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, Segment: 3, Base: 22, - Decorator: Broadcast 4 bytes element 4 times + Decorator: Broadcast 2 bytes element 8 times + Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000002259 62fa7c38d31e VPDPWUUDS ymm3, ymm0, dword ptr [r22]{1to8} +00000000000023C8 62fb7f38561ebd VREDUCENEPBF16 ymm3, word ptr [r22]{1to16}, 0xbd DSIZE: 32, ASIZE: 64, VLEN: 256 - ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -28461,16 +30521,16 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: RW, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Broadcast: yes, + Operand: 2, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, Segment: 3, Base: 22, - Decorator: Broadcast 4 bytes element 8 times + Decorator: Broadcast 2 bytes element 16 times + Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000225F 62fa7c58d31e VPDPWUUDS zmm3, zmm0, dword ptr [r22]{1to16} +00000000000023CF 62fb7f58561ebd VREDUCENEPBF16 zmm3, word ptr [r22]{1to32}, 0xbd DSIZE: 32, ASIZE: 64, VLEN: 512 - ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -28482,16 +30542,16 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: RW, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Broadcast: yes, + Operand: 2, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, Segment: 3, Base: 22, - Decorator: Broadcast 4 bytes element 16 times + Decorator: Broadcast 2 bytes element 32 times + Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000002265 62fa7c0fd31e VPDPWUUDS xmm3{k7}, xmm0, xmmword ptr [r22] +00000000000023D6 62fb7f0f561ebd VREDUCENEPBF16 xmm3{k7}, xmmword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -28503,16 +30563,16 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: RW, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Decorator: Mask k7 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, + Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, + Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000226B 62fa7c2fd31e VPDPWUUDS ymm3{k7}, ymm0, ymmword ptr [r22] +00000000000023DD 62fb7f2f561ebd VREDUCENEPBF16 ymm3{k7}, ymmword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 256 - ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -28524,16 +30584,16 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: RW, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 Decorator: Mask k7 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, + Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, + Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000002271 62fa7c4fd31e VPDPWUUDS zmm3{k7}, zmm0, zmmword ptr [r22] +00000000000023E4 62fb7f4f561ebd VREDUCENEPBF16 zmm3{k7}, zmmword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 512 - ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -28545,16 +30605,16 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: RW, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 Decorator: Mask k7 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, + Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, + Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000002277 62fa7c8fd31e VPDPWUUDS xmm3{k7}{z}, xmm0, xmmword ptr [r22] +00000000000023EB 62fb7f8f561ebd VREDUCENEPBF16 xmm3{k7}{z}, xmmword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -28566,17 +30626,17 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: RW, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Decorator: Mask k7 Decorator: Zero (no merging) Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, + Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, + Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000227D 62fa7cafd31e VPDPWUUDS ymm3{k7}{z}, ymm0, ymmword ptr [r22] +00000000000023F2 62fb7faf561ebd VREDUCENEPBF16 ymm3{k7}{z}, ymmword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 256 - ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -28588,17 +30648,17 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: RW, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 Decorator: Mask k7 Decorator: Zero (no merging) Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, + Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, + Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000002283 62fa7ccfd31e VPDPWUUDS zmm3{k7}{z}, zmm0, zmmword ptr [r22] +00000000000023F9 62fb7fcf561ebd VREDUCENEPBF16 zmm3{k7}{z}, zmmword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 512 - ISA Set: AVX10_2, Ins cat: AVX10INT, CET tracked: no + ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full Exception class: EVEX, exception type: E4 Valid modes @@ -28610,15 +30670,15 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: RW, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 Decorator: Mask k7 Decorator: Zero (no merging) Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, + Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, + Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000002289 62fe7c084c1e VRCPPBF16 xmm3, xmmword ptr [r22] +0000000000002400 62fb7f08081ebd VRNDSCALENEPBF16 xmm3, xmmword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -28636,8 +30696,9 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, + Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000228F 62fe7c284c1e VRCPPBF16 ymm3, ymmword ptr [r22] +0000000000002407 62fb7f28081ebd VRNDSCALENEPBF16 ymm3, ymmword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -28655,8 +30716,9 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, + Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000002295 62fe7c484c1e VRCPPBF16 zmm3, zmmword ptr [r22] +000000000000240E 62fb7f48081ebd VRNDSCALENEPBF16 zmm3, zmmword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -28674,8 +30736,9 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, + Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000229B 62fe7c084cde VRCPPBF16 xmm3, xmm6 +0000000000002415 62fb7f0808debd VRNDSCALENEPBF16 xmm3, xmm6, 0xbd DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -28692,8 +30755,9 @@ Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000022A1 62fe7c284cde VRCPPBF16 ymm3, ymm6 +000000000000241C 62fb7f2808debd VRNDSCALENEPBF16 ymm3, ymm6, 0xbd DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -28710,8 +30774,9 @@ Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 + Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000022A7 62fe7c484cde VRCPPBF16 zmm3, zmm6 +0000000000002423 62fb7f4808debd VRNDSCALENEPBF16 zmm3, zmm6, 0xbd DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -28728,8 +30793,9 @@ Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 + Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000022AD 62fe7c184c1e VRCPPBF16 xmm3, word ptr [r22]{1to8} +000000000000242A 62fb7f18081ebd VRNDSCALENEPBF16 xmm3, word ptr [r22]{1to8}, 0xbd DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -28748,8 +30814,9 @@ Operand: 2, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 8 times + Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000022B3 62fe7c384c1e VRCPPBF16 ymm3, word ptr [r22]{1to16} +0000000000002431 62fb7f38081ebd VRNDSCALENEPBF16 ymm3, word ptr [r22]{1to16}, 0xbd DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -28768,8 +30835,9 @@ Operand: 2, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 16 times + Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000022B9 62fe7c584c1e VRCPPBF16 zmm3, word ptr [r22]{1to32} +0000000000002438 62fb7f58081ebd VRNDSCALENEPBF16 zmm3, word ptr [r22]{1to32}, 0xbd DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -28788,8 +30856,9 @@ Operand: 2, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 32 times + Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000022BF 62fe7c0f4c1e VRCPPBF16 xmm3{k7}, xmmword ptr [r22] +000000000000243F 62fb7f0f081ebd VRNDSCALENEPBF16 xmm3{k7}, xmmword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -28808,8 +30877,9 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, + Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000022C5 62fe7c2f4c1e VRCPPBF16 ymm3{k7}, ymmword ptr [r22] +0000000000002446 62fb7f2f081ebd VRNDSCALENEPBF16 ymm3{k7}, ymmword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -28828,8 +30898,9 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, + Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000022CB 62fe7c4f4c1e VRCPPBF16 zmm3{k7}, zmmword ptr [r22] +000000000000244D 62fb7f4f081ebd VRNDSCALENEPBF16 zmm3{k7}, zmmword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -28848,8 +30919,9 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, + Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000022D1 62fe7c8f4c1e VRCPPBF16 xmm3{k7}{z}, xmmword ptr [r22] +0000000000002454 62fb7f8f081ebd VRNDSCALENEPBF16 xmm3{k7}{z}, xmmword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -28869,8 +30941,9 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, + Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000022D7 62fe7caf4c1e VRCPPBF16 ymm3{k7}{z}, ymmword ptr [r22] +000000000000245B 62fb7faf081ebd VRNDSCALENEPBF16 ymm3{k7}{z}, ymmword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -28890,8 +30963,9 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, + Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000022DD 62fe7ccf4c1e VRCPPBF16 zmm3{k7}{z}, zmmword ptr [r22] +0000000000002462 62fb7fcf081ebd VRNDSCALENEPBF16 zmm3{k7}{z}, zmmword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -28911,8 +30985,9 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, + Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000022E3 62fb7f08561ebd VREDUCENEPBF16 xmm3, xmmword ptr [r22], 0xbd +0000000000002469 62fe7c084e1e VRSQRTPBF16 xmm3, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -28930,9 +31005,8 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, - Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000022EA 62fb7f28561ebd VREDUCENEPBF16 ymm3, ymmword ptr [r22], 0xbd +000000000000246F 62fe7c284e1e VRSQRTPBF16 ymm3, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -28950,9 +31024,8 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, - Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000022F1 62fb7f48561ebd VREDUCENEPBF16 zmm3, zmmword ptr [r22], 0xbd +0000000000002475 62fe7c484e1e VRSQRTPBF16 zmm3, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -28970,9 +31043,8 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, - Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000022F8 62fb7f0856debd VREDUCENEPBF16 xmm3, xmm6, 0xbd +000000000000247B 62fe7c084ede VRSQRTPBF16 xmm3, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -28989,9 +31061,8 @@ Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 - Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000022FF 62fb7f2856debd VREDUCENEPBF16 ymm3, ymm6, 0xbd +0000000000002481 62fe7c284ede VRSQRTPBF16 ymm3, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -29008,9 +31079,8 @@ Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 - Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000002306 62fb7f4856debd VREDUCENEPBF16 zmm3, zmm6, 0xbd +0000000000002487 62fe7c484ede VRSQRTPBF16 zmm3, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -29027,9 +31097,8 @@ Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 - Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000230D 62fb7f18561ebd VREDUCENEPBF16 xmm3, word ptr [r22]{1to8}, 0xbd +000000000000248D 62fe7c184e1e VRSQRTPBF16 xmm3, word ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -29048,9 +31117,8 @@ Operand: 2, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 8 times - Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000002314 62fb7f38561ebd VREDUCENEPBF16 ymm3, word ptr [r22]{1to16}, 0xbd +0000000000002493 62fe7c384e1e VRSQRTPBF16 ymm3, word ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -29069,9 +31137,8 @@ Operand: 2, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 16 times - Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000231B 62fb7f58561ebd VREDUCENEPBF16 zmm3, word ptr [r22]{1to32}, 0xbd +0000000000002499 62fe7c584e1e VRSQRTPBF16 zmm3, word ptr [r22]{1to32} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -29090,9 +31157,8 @@ Operand: 2, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 32 times - Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000002322 62fb7f0f561ebd VREDUCENEPBF16 xmm3{k7}, xmmword ptr [r22], 0xbd +000000000000249F 62fe7c0f4e1e VRSQRTPBF16 xmm3{k7}, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -29111,9 +31177,8 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, - Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000002329 62fb7f2f561ebd VREDUCENEPBF16 ymm3{k7}, ymmword ptr [r22], 0xbd +00000000000024A5 62fe7c2f4e1e VRSQRTPBF16 ymm3{k7}, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -29132,9 +31197,8 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, - Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000002330 62fb7f4f561ebd VREDUCENEPBF16 zmm3{k7}, zmmword ptr [r22], 0xbd +00000000000024AB 62fe7c4f4e1e VRSQRTPBF16 zmm3{k7}, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -29153,9 +31217,8 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, - Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000002337 62fb7f8f561ebd VREDUCENEPBF16 xmm3{k7}{z}, xmmword ptr [r22], 0xbd +00000000000024B1 62fe7c8f4e1e VRSQRTPBF16 xmm3{k7}{z}, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -29175,9 +31238,8 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, - Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000233E 62fb7faf561ebd VREDUCENEPBF16 ymm3{k7}{z}, ymmword ptr [r22], 0xbd +00000000000024B7 62fe7caf4e1e VRSQRTPBF16 ymm3{k7}{z}, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -29197,9 +31259,8 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, - Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000002345 62fb7fcf561ebd VREDUCENEPBF16 zmm3{k7}{z}, zmmword ptr [r22], 0xbd +00000000000024BD 62fe7ccf4e1e VRSQRTPBF16 zmm3{k7}{z}, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -29219,9 +31280,8 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, - Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000234C 62fb7f08081ebd VRNDSCALENEPBF16 xmm3, xmmword ptr [r22], 0xbd +00000000000024C3 62fe7c082c1e VSCALEFPBF16 xmm3, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -29237,11 +31297,11 @@ BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, + Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, - Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000002353 62fb7f28081ebd VRNDSCALENEPBF16 ymm3, ymmword ptr [r22], 0xbd +00000000000024C9 62fe7c282c1e VSCALEFPBF16 ymm3, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -29257,11 +31317,11 @@ BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, + Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, - Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000235A 62fb7f48081ebd VRNDSCALENEPBF16 zmm3, zmmword ptr [r22], 0xbd +00000000000024CF 62fe7c482c1e VSCALEFPBF16 zmm3, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -29277,11 +31337,11 @@ BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, + Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, - Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000002361 62fb7f0808debd VRNDSCALENEPBF16 xmm3, xmm6, 0xbd +00000000000024D5 62fe7c082cde VSCALEFPBF16 xmm3, xmm0, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -29297,10 +31357,10 @@ BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 - Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000002368 62fb7f2808debd VRNDSCALENEPBF16 ymm3, ymm6, 0xbd +00000000000024DB 62fe7c282cde VSCALEFPBF16 ymm3, ymm0, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -29316,10 +31376,10 @@ BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 - Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -000000000000236F 62fb7f4808debd VRNDSCALENEPBF16 zmm3, zmm6, 0xbd +00000000000024E1 62fe7c482cde VSCALEFPBF16 zmm3, zmm0, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -29335,10 +31395,10 @@ BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 - Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I + Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000002376 62fb7f18081ebd VRNDSCALENEPBF16 xmm3, word ptr [r22]{1to8}, 0xbd +00000000000024E7 62fe7c182c1e VSCALEFPBF16 xmm3, xmm0, word ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -29354,12 +31414,12 @@ BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, + Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 8 times - Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000237D 62fb7f38081ebd VRNDSCALENEPBF16 ymm3, word ptr [r22]{1to16}, 0xbd +00000000000024ED 62fe7c382c1e VSCALEFPBF16 ymm3, ymm0, word ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -29375,12 +31435,12 @@ BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, + Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 16 times - Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000002384 62fb7f58081ebd VRNDSCALENEPBF16 zmm3, word ptr [r22]{1to32}, 0xbd +00000000000024F3 62fe7c582c1e VSCALEFPBF16 zmm3, zmm0, word ptr [r22]{1to32} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -29396,12 +31456,12 @@ BND: no, BHINT: no, DNT: no Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, + Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 32 times - Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000238B 62fb7f0f081ebd VRNDSCALENEPBF16 xmm3{k7}, xmmword ptr [r22], 0xbd +00000000000024F9 62fe7c0f2c1e VSCALEFPBF16 xmm3{k7}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -29418,11 +31478,11 @@ Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 Decorator: Mask k7 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 - Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, + Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, - Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000002392 62fb7f2f081ebd VRNDSCALENEPBF16 ymm3{k7}, ymmword ptr [r22], 0xbd +00000000000024FF 62fe7c2f2c1e VSCALEFPBF16 ymm3{k7}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -29439,11 +31499,11 @@ Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 Decorator: Mask k7 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 - Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, + Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, - Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000002399 62fb7f4f081ebd VRNDSCALENEPBF16 zmm3{k7}, zmmword ptr [r22], 0xbd +0000000000002505 62fe7c4f2c1e VSCALEFPBF16 zmm3{k7}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -29460,11 +31520,11 @@ Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 Decorator: Mask k7 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 - Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, + Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, - Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000023A0 62fb7f8f081ebd VRNDSCALENEPBF16 xmm3{k7}{z}, xmmword ptr [r22], 0xbd +000000000000250B 62fe7c8f2c1e VSCALEFPBF16 xmm3{k7}{z}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -29482,11 +31542,11 @@ Decorator: Mask k7 Decorator: Zero (no merging) Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 - Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, + Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, - Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000023A7 62fb7faf081ebd VRNDSCALENEPBF16 ymm3{k7}{z}, ymmword ptr [r22], 0xbd +0000000000002511 62fe7caf2c1e VSCALEFPBF16 ymm3{k7}{z}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -29504,11 +31564,11 @@ Decorator: Mask k7 Decorator: Zero (no merging) Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 - Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, + Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, - Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000023AE 62fb7fcf081ebd VRNDSCALENEPBF16 zmm3{k7}{z}, zmmword ptr [r22], 0xbd +0000000000002517 62fe7ccf2c1e VSCALEFPBF16 zmm3{k7}{z}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -29526,11 +31586,11 @@ Decorator: Mask k7 Decorator: Zero (no merging) Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 - Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, + Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 + Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, - Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000023B5 62fe7c084e1e VRSQRTPBF16 xmm3, xmmword ptr [r22] +000000000000251D 62fd7d08511e VSQRTNEPBF16 xmm3, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -29549,7 +31609,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -00000000000023BB 62fe7c284e1e VRSQRTPBF16 ymm3, ymmword ptr [r22] +0000000000002523 62fd7d28511e VSQRTNEPBF16 ymm3, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -29568,7 +31628,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -00000000000023C1 62fe7c484e1e VRSQRTPBF16 zmm3, zmmword ptr [r22] +0000000000002529 62fd7d48511e VSQRTNEPBF16 zmm3, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -29587,7 +31647,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -00000000000023C7 62fe7c084ede VRSQRTPBF16 xmm3, xmm6 +000000000000252F 62fd7d0851de VSQRTNEPBF16 xmm3, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -29605,7 +31665,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -00000000000023CD 62fe7c284ede VRSQRTPBF16 ymm3, ymm6 +0000000000002535 62fd7d2851de VSQRTNEPBF16 ymm3, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -29623,7 +31683,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -00000000000023D3 62fe7c484ede VRSQRTPBF16 zmm3, zmm6 +000000000000253B 62fd7d4851de VSQRTNEPBF16 zmm3, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -29641,7 +31701,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -00000000000023D9 62fe7c184e1e VRSQRTPBF16 xmm3, word ptr [r22]{1to8} +0000000000002541 62fd7d18511e VSQRTNEPBF16 xmm3, word ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -29661,7 +31721,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 8 times -00000000000023DF 62fe7c384e1e VRSQRTPBF16 ymm3, word ptr [r22]{1to16} +0000000000002547 62fd7d38511e VSQRTNEPBF16 ymm3, word ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -29681,7 +31741,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 16 times -00000000000023E5 62fe7c584e1e VRSQRTPBF16 zmm3, word ptr [r22]{1to32} +000000000000254D 62fd7d58511e VSQRTNEPBF16 zmm3, word ptr [r22]{1to32} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -29701,7 +31761,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 32 times -00000000000023EB 62fe7c0f4e1e VRSQRTPBF16 xmm3{k7}, xmmword ptr [r22] +0000000000002553 62fd7d0f511e VSQRTNEPBF16 xmm3{k7}, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -29721,7 +31781,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -00000000000023F1 62fe7c2f4e1e VRSQRTPBF16 ymm3{k7}, ymmword ptr [r22] +0000000000002559 62fd7d2f511e VSQRTNEPBF16 ymm3{k7}, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -29741,7 +31801,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -00000000000023F7 62fe7c4f4e1e VRSQRTPBF16 zmm3{k7}, zmmword ptr [r22] +000000000000255F 62fd7d4f511e VSQRTNEPBF16 zmm3{k7}, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -29761,7 +31821,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -00000000000023FD 62fe7c8f4e1e VRSQRTPBF16 xmm3{k7}{z}, xmmword ptr [r22] +0000000000002565 62fd7d8f511e VSQRTNEPBF16 xmm3{k7}{z}, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -29782,7 +31842,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000002403 62fe7caf4e1e VRSQRTPBF16 ymm3{k7}{z}, ymmword ptr [r22] +000000000000256B 62fd7daf511e VSQRTNEPBF16 ymm3{k7}{z}, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -29803,7 +31863,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000002409 62fe7ccf4e1e VRSQRTPBF16 zmm3{k7}{z}, zmmword ptr [r22] +0000000000002571 62fd7dcf511e VSQRTNEPBF16 zmm3{k7}{z}, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -29824,7 +31884,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -000000000000240F 62fe7c082c1e VSCALEFPBF16 xmm3, xmm0, xmmword ptr [r22] +0000000000002577 62fd7d085c1e VSUBNEPBF16 xmm3, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -29844,7 +31904,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -0000000000002415 62fe7c282c1e VSCALEFPBF16 ymm3, ymm0, ymmword ptr [r22] +000000000000257D 62fd7d285c1e VSUBNEPBF16 ymm3, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -29864,7 +31924,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -000000000000241B 62fe7c482c1e VSCALEFPBF16 zmm3, zmm0, zmmword ptr [r22] +0000000000002583 62fd7d485c1e VSUBNEPBF16 zmm3, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -29884,7 +31944,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000002421 62fe7c082cde VSCALEFPBF16 xmm3, xmm0, xmm6 +0000000000002589 62fd7d085cde VSUBNEPBF16 xmm3, xmm0, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -29903,7 +31963,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 -0000000000002427 62fe7c282cde VSCALEFPBF16 ymm3, ymm0, ymm6 +000000000000258F 62fd7d285cde VSUBNEPBF16 ymm3, ymm0, ymm6 DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -29922,7 +31982,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 -000000000000242D 62fe7c482cde VSCALEFPBF16 zmm3, zmm0, zmm6 +0000000000002595 62fd7d485cde VSUBNEPBF16 zmm3, zmm0, zmm6 DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -29941,7 +32001,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 -0000000000002433 62fe7c182c1e VSCALEFPBF16 xmm3, xmm0, word ptr [r22]{1to8} +000000000000259B 62fd7d185c1e VSUBNEPBF16 xmm3, xmm0, word ptr [r22]{1to8} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -29962,7 +32022,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 8 times -0000000000002439 62fe7c382c1e VSCALEFPBF16 ymm3, ymm0, word ptr [r22]{1to16} +00000000000025A1 62fd7d385c1e VSUBNEPBF16 ymm3, ymm0, word ptr [r22]{1to16} DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -29983,7 +32043,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 16 times -000000000000243F 62fe7c582c1e VSCALEFPBF16 zmm3, zmm0, word ptr [r22]{1to32} +00000000000025A7 62fd7d585c1e VSUBNEPBF16 zmm3, zmm0, word ptr [r22]{1to32} DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -30004,7 +32064,7 @@ Segment: 3, Base: 22, Decorator: Broadcast 2 bytes element 32 times -0000000000002445 62fe7c0f2c1e VSCALEFPBF16 xmm3{k7}, xmm0, xmmword ptr [r22] +00000000000025AD 62fd7d0f5c1e VSUBNEPBF16 xmm3{k7}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -30025,7 +32085,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -000000000000244B 62fe7c2f2c1e VSCALEFPBF16 ymm3{k7}, ymm0, ymmword ptr [r22] +00000000000025B3 62fd7d2f5c1e VSUBNEPBF16 ymm3{k7}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -30046,7 +32106,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000002451 62fe7c4f2c1e VSCALEFPBF16 zmm3{k7}, zmm0, zmmword ptr [r22] +00000000000025B9 62fd7d4f5c1e VSUBNEPBF16 zmm3{k7}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -30067,7 +32127,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000002457 62fe7c8f2c1e VSCALEFPBF16 xmm3{k7}{z}, xmm0, xmmword ptr [r22] +00000000000025BF 62fd7d8f5c1e VSUBNEPBF16 xmm3{k7}{z}, xmm0, xmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -30089,7 +32149,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, Segment: 3, Base: 22, -000000000000245D 62fe7caf2c1e VSCALEFPBF16 ymm3{k7}{z}, ymm0, ymmword ptr [r22] +00000000000025C5 62fd7daf5c1e VSUBNEPBF16 ymm3{k7}{z}, ymm0, ymmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -30111,7 +32171,7 @@ Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, Segment: 3, Base: 22, -0000000000002463 62fe7ccf2c1e VSCALEFPBF16 zmm3{k7}{z}, zmm0, zmmword ptr [r22] +00000000000025CB 62fd7dcf5c1e VSUBNEPBF16 zmm3{k7}{z}, zmm0, zmmword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no EVEX Tuple Type: Full @@ -30133,11 +32193,14 @@ Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, Segment: 3, Base: 22, -0000000000002469 62fd7d08511e VSQRTNEPBF16 xmm3, xmmword ptr [r22] - DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E4 +00000000000025D1 62f9ff082e1e VUCOMXSD xmm3, qword ptr [r22] + DSIZE: 64, ASIZE: 64, VLEN: 128 + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30147,16 +32210,19 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, + Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000246F 62fd7d28511e VSQRTNEPBF16 ymm3, ymmword ptr [r22] - DSIZE: 32, ASIZE: 64, VLEN: 256 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E4 +00000000000025D7 62f9ff282e1e VUCOMXSD xmm3, qword ptr [r22] + DSIZE: 64, ASIZE: 64, VLEN: 256 + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30166,16 +32232,19 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, + Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000002475 62fd7d48511e VSQRTNEPBF16 zmm3, zmmword ptr [r22] - DSIZE: 32, ASIZE: 64, VLEN: 512 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E4 +00000000000025DD 62f9ff482e1e VUCOMXSD xmm3, qword ptr [r22] + DSIZE: 64, ASIZE: 64, VLEN: 512 + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30185,34 +32254,19 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, + Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000247B 62fd7d0851de VSQRTNEPBF16 xmm3, xmm6 - DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E4 - Valid modes - R0: yes, R1: yes, R2: yes, R3: yes - Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes - SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes - VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes - Valid prefixes - REP: no, REPcc: no, LOCK: no - HLE: no, XACQUIRE only: no, XRELEASE only: no - BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 - -0000000000002481 62fd7d2851de VSQRTNEPBF16 ymm3, ymm6 - DSIZE: 32, ASIZE: 64, VLEN: 256 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E4 +00000000000025E3 62f9ff082ede VUCOMXSD xmm3, xmm6 + DSIZE: 64, ASIZE: 64, VLEN: 128 + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30222,15 +32276,18 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000002487 62fd7d4851de VSQRTNEPBF16 zmm3, zmm6 - DSIZE: 32, ASIZE: 64, VLEN: 512 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E4 +00000000000025E9 62f9ff282ede VUCOMXSD xmm3, xmm6 + DSIZE: 64, ASIZE: 64, VLEN: 256 + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30240,15 +32297,18 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000248D 62fd7d18511e VSQRTNEPBF16 xmm3, word ptr [r22]{1to8} - DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E4 +00000000000025EF 62f9ff482ede VUCOMXSD xmm3, xmm6 + DSIZE: 64, ASIZE: 64, VLEN: 512 + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30258,17 +32318,18 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, - Segment: 3, Base: 22, - Decorator: Broadcast 2 bytes element 8 times + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000002493 62fd7d38511e VSQRTNEPBF16 ymm3, word ptr [r22]{1to16} - DSIZE: 32, ASIZE: 64, VLEN: 256 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E4 +00000000000025F5 62f9ff182ede VUCOMXSD xmm3, xmm6, {sae} + DSIZE: 64, ASIZE: 64, VLEN: 128 + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30278,17 +32339,18 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, - Segment: 3, Base: 22, - Decorator: Broadcast 2 bytes element 16 times + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000002499 62fd7d58511e VSQRTNEPBF16 zmm3, word ptr [r22]{1to32} - DSIZE: 32, ASIZE: 64, VLEN: 512 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E4 +00000000000025FB 62f9ff382ede VUCOMXSD xmm3, xmm6, {sae} + DSIZE: 64, ASIZE: 64, VLEN: 128 + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30298,17 +32360,18 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, - Segment: 3, Base: 22, - Decorator: Broadcast 2 bytes element 32 times + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000249F 62fd7d0f511e VSQRTNEPBF16 xmm3{k7}, xmmword ptr [r22] - DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E4 +0000000000002601 62f9ff582ede VUCOMXSD xmm3, xmm6, {sae} + DSIZE: 64, ASIZE: 64, VLEN: 128 + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30318,17 +32381,18 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Decorator: Mask k7 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 - Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, - Segment: 3, Base: 22, + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000024A5 62fd7d2f511e VSQRTNEPBF16 ymm3{k7}, ymmword ptr [r22] - DSIZE: 32, ASIZE: 64, VLEN: 256 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E4 +0000000000002607 62f9ff782ede VUCOMXSD xmm3, xmm6, {sae} + DSIZE: 64, ASIZE: 64, VLEN: 128 + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30338,17 +32402,18 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 - Decorator: Mask k7 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 - Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, - Segment: 3, Base: 22, + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000024AB 62fd7d4f511e VSQRTNEPBF16 zmm3{k7}, zmmword ptr [r22] - DSIZE: 32, ASIZE: 64, VLEN: 512 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E4 +000000000000260D 62f9fb182ede VUCOMXSD xmm3, xmm6, {sae} + DSIZE: 64, ASIZE: 64, VLEN: 128 + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30358,17 +32423,18 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 - Decorator: Mask k7 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 - Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, - Segment: 3, Base: 22, + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000024B1 62fd7d8f511e VSQRTNEPBF16 xmm3{k7}{z}, xmmword ptr [r22] - DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E4 +0000000000002613 62f9fb382ede VUCOMXSD xmm3, xmm6, {sae} + DSIZE: 64, ASIZE: 64, VLEN: 128 + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30378,18 +32444,18 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Decorator: Mask k7 - Decorator: Zero (no merging) - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 - Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, - Segment: 3, Base: 22, + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000024B7 62fd7daf511e VSQRTNEPBF16 ymm3{k7}{z}, ymmword ptr [r22] - DSIZE: 32, ASIZE: 64, VLEN: 256 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E4 +0000000000002619 62f9fb582ede VUCOMXSD xmm3, xmm6, {sae} + DSIZE: 64, ASIZE: 64, VLEN: 128 + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30399,18 +32465,18 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 - Decorator: Mask k7 - Decorator: Zero (no merging) - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 - Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, - Segment: 3, Base: 22, + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000024BD 62fd7dcf511e VSQRTNEPBF16 zmm3{k7}{z}, zmmword ptr [r22] - DSIZE: 32, ASIZE: 64, VLEN: 512 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E4 +000000000000261F 62f9fb782ede VUCOMXSD xmm3, xmm6, {sae} + DSIZE: 64, ASIZE: 64, VLEN: 128 + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30420,18 +32486,18 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 - Decorator: Mask k7 - Decorator: Zero (no merging) - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 - Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, - Segment: 3, Base: 22, + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000024C3 62fd7d085c1e VSUBNEPBF16 xmm3, xmm0, xmmword ptr [r22] +0000000000002625 62fd7e082e1e VUCOMXSH xmm3, word ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E4 + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 scalar, 16 bit + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30441,17 +32507,19 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Segment: 3, Base: 22, + Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000024C9 62fd7d285c1e VSUBNEPBF16 ymm3, ymm0, ymmword ptr [r22] +000000000000262B 62fd7e282e1e VUCOMXSH xmm3, word ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 256 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E4 + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 scalar, 16 bit + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30461,17 +32529,19 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Segment: 3, Base: 22, + Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000024CF 62fd7d485c1e VSUBNEPBF16 zmm3, zmm0, zmmword ptr [r22] +0000000000002631 62fd7e482e1e VUCOMXSH xmm3, word ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: 512 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E4 + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 scalar, 16 bit + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30481,17 +32551,40 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Segment: 3, Base: 22, + Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000024D5 62fd7d085cde VSUBNEPBF16 xmm3, xmm0, xmm6 +0000000000002637 62fd7e082ede VUCOMXSH xmm3, xmm6 DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E4 + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 scalar, 16 bit + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 + +000000000000263D 62fd7e282ede VUCOMXSH xmm3, xmm6 + DSIZE: 32, ASIZE: 64, VLEN: 256 + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 scalar, 16 bit + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30501,16 +32594,18 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000024DB 62fd7d285cde VSUBNEPBF16 ymm3, ymm0, ymm6 - DSIZE: 32, ASIZE: 64, VLEN: 256 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E4 +0000000000002643 62fd7e482ede VUCOMXSH xmm3, xmm6 + DSIZE: 32, ASIZE: 64, VLEN: 512 + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 scalar, 16 bit + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30520,16 +32615,18 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000024E1 62fd7d485cde VSUBNEPBF16 zmm3, zmm0, zmm6 - DSIZE: 32, ASIZE: 64, VLEN: 512 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E4 +0000000000002649 62fd7e182ede VUCOMXSH xmm3, xmm6, {sae} + DSIZE: 32, ASIZE: 64, VLEN: 128 + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 scalar, 16 bit + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30539,16 +32636,18 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000024E7 62fd7d185c1e VSUBNEPBF16 xmm3, xmm0, word ptr [r22]{1to8} +000000000000264F 62fd7e382ede VUCOMXSH xmm3, xmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E4 + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 scalar, 16 bit + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30558,18 +32657,18 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, - Segment: 3, Base: 22, - Decorator: Broadcast 2 bytes element 8 times + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000024ED 62fd7d385c1e VSUBNEPBF16 ymm3, ymm0, word ptr [r22]{1to16} - DSIZE: 32, ASIZE: 64, VLEN: 256 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E4 +0000000000002655 62fd7e582ede VUCOMXSH xmm3, xmm6, {sae} + DSIZE: 32, ASIZE: 64, VLEN: 128 + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 scalar, 16 bit + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30579,18 +32678,18 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, - Segment: 3, Base: 22, - Decorator: Broadcast 2 bytes element 16 times + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000024F3 62fd7d585c1e VSUBNEPBF16 zmm3, zmm0, word ptr [r22]{1to32} - DSIZE: 32, ASIZE: 64, VLEN: 512 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E4 +000000000000265B 62fd7e782ede VUCOMXSH xmm3, xmm6, {sae} + DSIZE: 32, ASIZE: 64, VLEN: 128 + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 scalar, 16 bit + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30600,18 +32699,18 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Broadcast: yes, - Segment: 3, Base: 22, - Decorator: Broadcast 2 bytes element 32 times + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000024F9 62fd7d0f5c1e VSUBNEPBF16 xmm3{k7}, xmm0, xmmword ptr [r22] +0000000000002661 62fd7a182ede VUCOMXSH xmm3, xmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E4 + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 scalar, 16 bit + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30621,18 +32720,18 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Decorator: Mask k7 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, - Segment: 3, Base: 22, + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000024FF 62fd7d2f5c1e VSUBNEPBF16 ymm3{k7}, ymm0, ymmword ptr [r22] - DSIZE: 32, ASIZE: 64, VLEN: 256 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E4 +0000000000002667 62fd7a382ede VUCOMXSH xmm3, xmm6, {sae} + DSIZE: 32, ASIZE: 64, VLEN: 128 + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 scalar, 16 bit + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30642,18 +32741,18 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 - Decorator: Mask k7 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, - Segment: 3, Base: 22, + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000002505 62fd7d4f5c1e VSUBNEPBF16 zmm3{k7}, zmm0, zmmword ptr [r22] - DSIZE: 32, ASIZE: 64, VLEN: 512 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E4 +000000000000266D 62fd7a582ede VUCOMXSH xmm3, xmm6, {sae} + DSIZE: 32, ASIZE: 64, VLEN: 128 + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 scalar, 16 bit + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30663,18 +32762,18 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 - Decorator: Mask k7 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, - Segment: 3, Base: 22, + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000250B 62fd7d8f5c1e VSUBNEPBF16 xmm3{k7}{z}, xmm0, xmmword ptr [r22] +0000000000002673 62fd7a782ede VUCOMXSH xmm3, xmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 128 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E4 + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 scalar, 16 bit + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30684,19 +32783,18 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Decorator: Mask k7 - Decorator: Zero (no merging) - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, - Segment: 3, Base: 22, + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000002511 62fd7daf5c1e VSUBNEPBF16 ymm3{k7}{z}, ymm0, ymmword ptr [r22] - DSIZE: 32, ASIZE: 64, VLEN: 256 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E4 +0000000000002679 62f97e082e1e VUCOMXSS xmm3, dword ptr [r22] + DSIZE: 32, ASIZE: 64, VLEN: 128 + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30706,19 +32804,19 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 - Decorator: Mask k7 - Decorator: Zero (no merging) - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Segment: 3, Base: 22, + Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000002517 62fd7dcf5c1e VSUBNEPBF16 zmm3{k7}{z}, zmm0, zmmword ptr [r22] - DSIZE: 32, ASIZE: 64, VLEN: 512 - ISA Set: AVX10_2, Ins cat: AVX10BF16, CET tracked: no - EVEX Tuple Type: Full - Exception class: EVEX, exception type: E4 +000000000000267F 62f97e282e1e VUCOMXSS xmm3, dword ptr [r22] + DSIZE: 32, ASIZE: 64, VLEN: 256 + ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no + EVEX Tuple Type: Tuple 1 Scalar + Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID + FLAGS access + CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30728,19 +32826,17 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 - Decorator: Mask k7 - Decorator: Zero (no merging) - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 - Operand: 3, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, + Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Segment: 3, Base: 22, + Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000251D 62f9fe082e1e VUCOMXSD xmm3, qword ptr [r22] - DSIZE: 64, ASIZE: 64, VLEN: 128 +0000000000002685 62f97e482e1e VUCOMXSS xmm3, dword ptr [r22] + DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes @@ -30753,15 +32849,16 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, + Operand: 1, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Segment: 3, Base: 22, - Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000002523 62f9fe082ede VUCOMXSD xmm3, xmm6 - DSIZE: 64, ASIZE: 64, VLEN: 128 +000000000000268B 62f97e082ede VUCOMXSS xmm3, xmm6 + DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes @@ -30774,14 +32871,15 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 - Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000002529 62f9fe182ede VUCOMXSD xmm3, xmm6, {sae} - DSIZE: 64, ASIZE: 64, VLEN: 128 +0000000000002691 62f97e282ede VUCOMXSS xmm3, xmm6 + DSIZE: 32, ASIZE: 64, VLEN: 256 ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes @@ -30794,14 +32892,15 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 - Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000252F 62f9fa182ede VUCOMXSD xmm3, xmm6, {sae} - DSIZE: 64, ASIZE: 64, VLEN: 128 +0000000000002697 62f97e482ede VUCOMXSS xmm3, xmm6 + DSIZE: 32, ASIZE: 64, VLEN: 512 ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes @@ -30814,14 +32913,15 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 - Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000002535 62fd7f082e1e VUCOMXSH xmm3, word ptr [r22] +000000000000269D 62f97e182ede VUCOMXSS xmm3, xmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no - EVEX Tuple Type: Tuple 1 scalar, 16 bit + EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes @@ -30834,15 +32934,15 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, - Segment: 3, Base: 22, + Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000253B 62fd7f082ede VUCOMXSH xmm3, xmm6 +00000000000026A3 62f97e382ede VUCOMXSS xmm3, xmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no - EVEX Tuple Type: Tuple 1 scalar, 16 bit + EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes @@ -30855,14 +32955,15 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000002541 62fd7f182ede VUCOMXSH xmm3, xmm6, {sae} +00000000000026A9 62f97e582ede VUCOMXSS xmm3, xmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no - EVEX Tuple Type: Tuple 1 scalar, 16 bit + EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes @@ -30875,14 +32976,15 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000002547 62fd7b182ede VUCOMXSH xmm3, xmm6, {sae} +00000000000026AF 62f97e782ede VUCOMXSS xmm3, xmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no - EVEX Tuple Type: Tuple 1 scalar, 16 bit + EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes @@ -30895,14 +32997,15 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000254D 62f97f082e1e VUCOMXSS xmm3, dword ptr [r22] +00000000000026B5 62f97a182ede VUCOMXSS xmm3, xmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes @@ -30915,15 +33018,15 @@ HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no Operand: 0, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 - Operand: 1, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, - Segment: 3, Base: 22, + Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000002553 62f97f082ede VUCOMXSS xmm3, xmm6 +00000000000026BB 62f97a382ede VUCOMXSS xmm3, xmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes @@ -30939,11 +33042,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000002559 62f97f182ede VUCOMXSS xmm3, xmm6, {sae} +00000000000026C1 62f97a582ede VUCOMXSS xmm3, xmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes @@ -30959,11 +33063,12 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000255F 62f97b182ede VUCOMXSS xmm3, xmm6, {sae} +00000000000026C7 62f97a782ede VUCOMXSS xmm3, xmm6, {sae} DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: AVX10_2, Ins cat: AVX10CMPSFP, CET tracked: no EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: m, OF: m, Valid modes diff --git a/bddisasm_test/x86/avx10/avx102_64.test b/bddisasm_test/x86/avx10/avx102_64.test index 57eaaa7..e76fd77 100644 --- a/bddisasm_test/x86/avx10/avx102_64.test +++ b/bddisasm_test/x86/avx10/avx102_64.test @@ -1 +1 @@ -bý}Xbý}(Xbý}HXbý}XÞbý}(XÞbý}HXÞbý}Xbý}8Xbý}XXbý}Xbý}/Xbý}OXbý}Xbý}¯Xbý}ÏXbû½bû(½bûH½bûÂÞ½bû(ÂÞ½bûHÂÞ½bû½bû8½bûX½bû½bû/½bûO½bý}/bý}(/bý}H/bý}/Þbý}(/Þbý}H/Þbùþ/bùþ/Þbùþ/Þbùú/Þbý/bý/Þbý/Þbý{/Þbù/bù/Þbù/Þbù{/Þbú}gbú}(gbú}Hgbú}gÞbú}(gÞbú}HgÞbú}gbú}8gbú}Xgbú}gbú}/gbú}Ogbú}gbú}¯gbú}Ïgbú}gÞbú}8gÞbú}XgÞbú}xgÞbúygÞbúy8gÞbúyXgÞbúyxgÞbú|tbú|(tbú|Htbú|tÞbú|(tÞbú|HtÞbú|tbú|8tbú|Xtbú|tbú|/tbú|Otbú|tbú|¯tbú|Ïtbý|tbý|(tbý|Htbý|tÞbý|(tÞbý|HtÞbý|tbý|8tbý|Xtbý|tbý|/tbý|Otbý|tbý|¯tbý|Ïtbý|bý|(bý|Hbý|Þbý|(Þbý|HÞbý|bý|8bý|Xbý|bý|/bý|Obý|bý|¯bý|Ïbý|bý|(bý|Hbý|Þbý|(Þbý|HÞbý|bý|8bý|Xbý|bý|/bý|Obý|bý|¯bý|Ïbýbý(býHbýÞbý(ÞbýHÞbýbý/býObýbý¯býÏbùtbù(tbùHtbùtÞbù(tÞbùHtÞbùtbù8tbùXtbùtbù/tbùOtbùtbù¯tbùÏtbýtbý(tbýHtbýtÞbý(tÞbýHtÞbýtbý8tbýXtbýtbý/tbýOtbýtbý¯tbýÏtbýbý(býHbýÞbý(ÞbýHÞbýbý8býXbýbý/býObýbý¯býÏbýbý(býHbýÞbý(ÞbýHÞbýbý8býXbýbý/býObýbý¯býÏbýibý(ibýHibýiÞbý(iÞbýHiÞbýibý8ibýXibýibý/ibýOibýibý¯ibýÏibýkbý(kbýHkbýkÞbý(kÞbýHkÞbýkbý8kbýXkbýkbý/kbýOkbýkbý¯kbýÏkbù~tbù~(tbù~Htbù~tÞbù~(tÞbù~HtÞbù~tbù~8tbù~Xtbù~tbù~/tbù~Otbù~tbù~¯tbù~Ïtbý~tbý~(tbý~Htbý~tÞbý~(tÞbý~HtÞbý~tbý~8tbý~Xtbý~tbý~/tbý~Otbý~tbý~¯tbý~Ïtbý~bý~(bý~Hbý~Þbý~(Þbý~HÞbý~bý~8bý~Xbý~bý~/bý~Obý~bý~¯bý~Ïbý~bý~(bý~Hbý~Þbý~(Þbý~HÞbý~bý~8bý~Xbý~bý~/bý~Obý~bý~¯bý~Ïbý|ibý|(ibý|Hibý|iÞbý|(iÞbý|HiÞbý|ibý|8ibý|Xibý|ibý|/ibý|Oibý|ibý|¯ibý|Ïibý|iÞbý|8iÞbý|XiÞbý|xiÞbýxiÞbýx8iÞbýxXiÞbýxxiÞbý|kbý|(kbý|Hkbý|kÞbý|(kÞbý|HkÞbý|kbý|8kbý|Xkbý|kbý|/kbý|Okbý|kbý|¯kbý|Ïkbý|kÞbý|8kÞbý|XkÞbý|xkÞbýxkÞbýx8kÞbýxXkÞbýxxkÞbý}ibý}(ibý}Hibý}iÞbý}(iÞbý}HiÞbý}ibý}8ibý}Xibý}ibý}/ibý}Oibý}ibý}¯ibý}Ïibý}iÞbý}8iÞbý}XiÞbý}xiÞbýyiÞbýy8iÞbýyXiÞbýyxiÞbý}kbý}(kbý}Hkbý}kÞbý}(kÞbý}HkÞbý}kbý}8kbý}Xkbý}kbý}/kbý}Okbý}kbý}¯kbý}Ïkbý}kÞbý}8kÞbý}XkÞbý}xkÞbýykÞbýy8kÞbýyXkÞbýyxkÞbýhbý(hbýHhbýhÞbý(hÞbýHhÞbýhbý8hbýXhbýhbý/hbýOhbýhbý¯hbýÏhbýjbý(jbýHjbýjÞbý(jÞbýHjÞbýjbý8jbýXjbýjbý/jbýOjbýjbý¯jbýÏjbýümbýü(mbýüHmbýümÞbýü(mÞbýüHmÞbýümbýü8mbýüXmbýümbýü/mbýüOmbýümbýü¯mbýüÏmbýümÞbýü8mÞbýüXmÞbýüxmÞbýømÞbýø8mÞbýøXmÞbýøxmÞbýýmbýý(mbýýHmbýýmÞbýý(mÞbýýHmÞbýýmbýý8mbýýXmbýýmbýý/mbýýOmbýýmbýý¯mbýýÏmbýýmÞbýý8mÞbýýXmÞbýýxmÞbýùmÞbýù8mÞbýùXmÞbýùxmÞbýülbýü(lbýüHlbýülÞbýü(lÞbýüHlÞbýülbýü8lbýüXlbýülbýü/lbýüOlbýülbýü¯lbýüÏlbýülÞbýü8lÞbýüXlÞbýüxlÞbýølÞbýø8lÞbýøXlÞbýøxlÞbýýlbýý(lbýýHlbýýlÞbýý(lÞbýýHlÞbýýlbýý8lbýýXlbýýlbýý/lbýýOlbýýlbýý¯lbýýÏlbýýlÞbýý8lÞbýýXlÞbýýxlÞbýùlÞbýù8lÞbýùXlÞbýùxlÞbý|hbý|(hbý|Hhbý|hÞbý|(hÞbý|HhÞbý|hbý|8hbý|Xhbý|hbý|/hbý|Ohbý|hbý|¯hbý|Ïhbý|hÞbý|8hÞbý|XhÞbý|xhÞbýxhÞbýx8hÞbýxXhÞbýxxhÞbý|jbý|(jbý|Hjbý|jÞbý|(jÞbý|HjÞbý|jbý|8jbý|Xjbý|jbý|/jbý|Ojbý|jbý|¯jbý|Ïjbý|jÞbý|8jÞbý|XjÞbý|xjÞbýxjÞbýx8jÞbýxXjÞbýxxjÞbý|mbý|(mbý|Hmbý|mÞbý|(mÞbý|HmÞbý|mbý|8mbý|Xmbý|mbý|/mbý|Ombý|mbý|¯mbý|Ïmbý|mÞbý|8mÞbý|XmÞbý|xmÞbýxmÞbýx8mÞbýxXmÞbýxxmÞbý}hbý}(hbý}Hhbý}hÞbý}(hÞbý}HhÞbý}hbý}8hbý}Xhbý}hbý}/hbý}Ohbý}hbý}¯hbý}Ïhbý}hÞbý}8hÞbý}XhÞbý}xhÞbýyhÞbýy8hÞbýyXhÞbýyxhÞbý}jbý}(jbý}Hjbý}jÞbý}(jÞbý}HjÞbý}jbý}8jbý}Xjbý}jbý}/jbý}Ojbý}jbý}¯jbý}Ïjbý}jÞbý}8jÞbý}XjÞbý}xjÞbýyjÞbýy8jÞbýyXjÞbýyxjÞbý}mbý}(mbý}Hmbý}mÞbý}(mÞbý}HmÞbý}mbý}8mbý}Xmbý}mbý}/mbý}Ombý}mbý}¯mbý}Ïmbý}mÞbý}8mÞbý}XmÞbý}xmÞbýymÞbýy8mÞbýyXmÞbýyxmÞbý|lbý|(lbý|Hlbý|lÞbý|(lÞbý|HlÞbý|lbý|8lbý|Xlbý|lbý|/lbý|Olbý|lbý|¯lbý|Ïlbý|lÞbý|8lÞbý|XlÞbý|xlÞbýxlÞbýx8lÞbýxXlÞbýxxlÞbý}lbý}(lbý}Hlbý}lÞbý}(lÞbý}HlÞbý}lbý}8lbý}Xlbý}lbý}/lbý}Olbý}lbý}¯lbý}Ïlbý}lÞbý}8lÞbý}XlÞbý}xlÞbýylÞbýy8lÞbýyXlÞbýyxlÞbý~mbý~(mbý~Hmbýþmbýþ(mbýþHmbý~mÞbý~(mÞbý~HmÞbýþmÞbýþ(mÞbýþHmÞbý~mÞbý~8mÞbý~XmÞbý~xmÞbýþmÞbýþ8mÞbýþXmÞbýþxmÞbýzmÞbýz8mÞbýzXmÞbýzxmÞbýúmÞbýú8mÞbýúXmÞbýúxmÞbýmbý(mbýHmbýÿmbýÿ(mbýÿHmbýmÞbý(mÞbýHmÞbýÿmÞbýÿ(mÞbýÿHmÞbýmÞbý8mÞbýXmÞbýxmÞbýÿmÞbýÿ8mÞbýÿXmÞbýÿxmÞbý{mÞbý{8mÞbý{XmÞbý{xmÞbýûmÞbýû8mÞbýûXmÞbýûxmÞbýlbý(lbýHlbýÿlbýÿ(lbýÿHlbýlÞbý(lÞbýHlÞbýÿlÞbýÿ(lÞbýÿHlÞbýlÞbý8lÞbýXlÞbýxlÞbýÿlÞbýÿ8lÞbýÿXlÞbýÿxlÞbý{lÞbý{8lÞbý{XlÞbý{xlÞbýûlÞbýû8lÞbýûXlÞbýûxlÞbý~lbý~(lbý~Hlbýþlbýþ(lbýþHlbý~lÞbý~(lÞbý~HlÞbýþlÞbýþ(lÞbýþHlÞbý~lÞbý~8lÞbý~XlÞbý~xlÞbýþlÞbýþ8lÞbýþXlÞbýþxlÞbýzlÞbýz8lÞbýzXlÞbýzxlÞbýúlÞbýú8lÞbýúXlÞbýúxlÞbý}^bý}(^bý}H^bý}^Þbý}(^Þbý}H^Þbý}^bý}8^bý}X^bý}^bý}/^bý}O^bý}^bý}¯^bý}Ï^bú|Rbú|(Rbú|HRbú|RÞbú|(RÞbú|HRÞbú|Rbú|8Rbú|XRbú|Rbú|/Rbú|ORbú|Rbú|¯Rbú|ÏRbþ|˜bþ|(˜bþ|H˜bþ|˜Þbþ|(˜Þbþ|H˜Þbþ|˜bþ|8˜bþ|X˜bþ|˜bþ|/˜bþ|O˜bþ|˜bþ|¯˜bþ|Ϙbþ|¨bþ|(¨bþ|H¨bþ|¨Þbþ|(¨Þbþ|H¨Þbþ|¨bþ|8¨bþ|X¨bþ|¨bþ|/¨bþ|O¨bþ|¨bþ|¯¨bþ|Ϩbþ|¸bþ|(¸bþ|H¸bþ|¸Þbþ|(¸Þbþ|H¸Þbþ|¸bþ|8¸bþ|X¸bþ|¸bþ|/¸bþ|O¸bþ|¸bþ|¯¸bþ|ϸbþ|šbþ|(šbþ|Hšbþ|šÞbþ|(šÞbþ|HšÞbþ|šbþ|8šbþ|Xšbþ|šbþ|/šbþ|Ošbþ|šbþ|¯šbþ|Ïšbþ|ªbþ|(ªbþ|Hªbþ|ªÞbþ|(ªÞbþ|HªÞbþ|ªbþ|8ªbþ|Xªbþ|ªbþ|/ªbþ|Oªbþ|ªbþ|¯ªbþ|Ϫbþ|ºbþ|(ºbþ|Hºbþ|ºÞbþ|(ºÞbþ|HºÞbþ|ºbþ|8ºbþ|Xºbþ|ºbþ|/ºbþ|Oºbþ|ºbþ|¯ºbþ|Ϻbþ|œbþ|(œbþ|Hœbþ|œÞbþ|(œÞbþ|HœÞbþ|œbþ|8œbþ|Xœbþ|œbþ|/œbþ|Oœbþ|œbþ|¯œbþ|Ïœbþ|¬bþ|(¬bþ|H¬bþ|¬Þbþ|(¬Þbþ|H¬Þbþ|¬bþ|8¬bþ|X¬bþ|¬bþ|/¬bþ|O¬bþ|¬bþ|¯¬bþ|Ϭbþ|¼bþ|(¼bþ|H¼bþ|¼Þbþ|(¼Þbþ|H¼Þbþ|¼bþ|8¼bþ|X¼bþ|¼bþ|/¼bþ|O¼bþ|¼bþ|¯¼bþ|ϼbþ|žbþ|(žbþ|Hžbþ|žÞbþ|(žÞbþ|HžÞbþ|žbþ|8žbþ|Xžbþ|žbþ|/žbþ|Ožbþ|žbþ|¯žbþ|Ïžbþ|®bþ|(®bþ|H®bþ|®Þbþ|(®Þbþ|H®Þbþ|®bþ|8®bþ|X®bþ|®bþ|/®bþ|O®bþ|®bþ|¯®bþ|Ï®bþ|¾bþ|(¾bþ|H¾bþ|¾Þbþ|(¾Þbþ|H¾Þbþ|¾bþ|8¾bþ|X¾bþ|¾bþ|/¾bþ|O¾bþ|¾bþ|¯¾bþ|Ͼbûf½bû(f½bûHf½bûfÞ½bû(fÞ½bûHfÞ½bûf½bû8f½bûXf½bûf½bû/f½bûOf½bý}Bbý}(Bbý}HBbý}BÞbý}(BÞbý}HBÞbý}Bbý}8Bbý}XBbý}Bbý}/Bbý}OBbý}Bbý}¯Bbý}ÏBbû&½bû(&½bûH&½bû&Þ½bû(&Þ½bûH&Þ½bû&½bû8&½bûX&½bû&½bû/&½bûO&½bû&½bû¯&½bûÏ&½bý}_bý}(_bý}H_bý}_Þbý}(_Þbý}H_Þbý}_bý}8_bý}X_bý}_bý}/_bý}O_bý}_bý}¯_bý}Ï_bûR½bû(R½bûHR½bûRÞ½bû(RÞ½bûHRÞ½bûR½bû8R½bûXR½bûR½bû/R½bûOR½bûR½bû¯R½bûÏR½bûýR½bûý(R½bûýHR½bûýRÞ½bûý(RÞ½bûýHRÞ½bûýR½bûý8R½bûýXR½bûýR½bûý/R½bûýOR½bûýR½bûý¯R½bûýÏR½bûýRÞ½bûý8RÞ½bûýXRÞ½bûýxRÞ½bûùRÞ½bûù8RÞ½bûùXRÞ½bûùxRÞ½bû|R½bû|(R½bû|HR½bû|RÞ½bû|(RÞ½bû|HRÞ½bû|R½bû|8R½bû|XR½bû|R½bû|/R½bû|OR½bû|R½bû|¯R½bû|ÏR½bû|RÞ½bû|8RÞ½bû|XRÞ½bû|xRÞ½bûxRÞ½bûx8RÞ½bûxXRÞ½bûxxRÞ½bû}R½bû}(R½bû}HR½bû}RÞ½bû}(RÞ½bû}HRÞ½bû}R½bû}8R½bû}XR½bû}R½bû}/R½bû}OR½bû}R½bû}¯R½bû}ÏR½bû}RÞ½bû}8RÞ½bû}XRÞ½bû}xRÞ½bûyRÞ½bûy8RÞ½bûyXRÞ½bûyxRÞ½bûýS½bûý(S½bûýHS½bûýSÞ½bûý(SÞ½bûýHSÞ½bûýS½bûý/S½bûýOS½bûýS½bûý¯S½bûýÏS½bûýSÞ½bûý8SÞ½bûýXSÞ½bûýxSÞ½bûùSÞ½bûù8SÞ½bûùXSÞ½bûùxSÞ½bû|S½bû|(S½bû|HS½bû|SÞ½bû|(SÞ½bû|HSÞ½bû|S½bû|/S½bû|OS½bû|S½bû|¯S½bû|ÏS½bû|SÞ½bû|8SÞ½bû|XSÞ½bû|xSÞ½bûxSÞ½bûx8SÞ½bûxXSÞ½bûxxSÞ½bû}S½bû}(S½bû}HS½bû}SÞ½bû}(SÞ½bû}HSÞ½bû}S½bû}/S½bû}OS½bû}S½bû}¯S½bû}ÏS½bû}SÞ½bû}8SÞ½bû}XSÞ½bû}xSÞ½bûySÞ½bûy8SÞ½bûyXSÞ½bûyxSÞ½bý}]bý}(]bý}H]bý}]Þbý}(]Þbý}H]Þbý}]bý}8]bý}X]bý}]bý}/]bý}O]bý}]bý}¯]bý}Ï]bù~~bù~~Þbù}Öbù}ÖÞbý~nbý~nÞbý~~bý~~Þbû~B½bû~(B½bû~HB½bû~BÞ½bû~(BÞ½bû~HBÞ½bû~B½bû~/B½bû~OB½bû~B½bû~¯B½bû~ÏB½bý}Ybý}(Ybý}HYbý}YÞbý}(YÞbý}HYÞbý}Ybý}8Ybý}XYbý}Ybý}/Ybý}OYbý}Ybý}¯Ybý}ÏYbúPbú(PbúHPbúPÞbú(PÞbúHPÞbúPbú8PbúXPbúPbú/PbúOPbúPbú¯PbúÏPbúQbú(QbúHQbúQÞbú(QÞbúHQÞbúQbú8QbúXQbúQbú/QbúOQbúQbú¯QbúÏQbú~Pbú~(Pbú~HPbú~PÞbú~(PÞbú~HPÞbú~Pbú~8Pbú~XPbú~Pbú~/Pbú~OPbú~Pbú~¯Pbú~ÏPbú~Qbú~(Qbú~HQbú~QÞbú~(QÞbú~HQÞbú~Qbú~8Qbú~XQbú~Qbú~/Qbú~OQbú~Qbú~¯Qbú~ÏQbú|Pbú|(Pbú|HPbú|PÞbú|(PÞbú|HPÞbú|Pbú|8Pbú|XPbú|Pbú|/Pbú|OPbú|Pbú|¯Pbú|ÏPbú|Qbú|(Qbú|HQbú|QÞbú|(QÞbú|HQÞbú|Qbú|8Qbú|XQbú|Qbú|/Qbú|OQbú|Qbú|¯Qbú|ÏQbú~Òbú~(Òbú~HÒbú~ÒÞbú~(ÒÞbú~HÒÞbú~Òbú~8Òbú~XÒbú~Òbú~/Òbú~OÒbú~Òbú~¯Òbú~ÏÒbú~Óbú~(Óbú~HÓbú~ÓÞbú~(ÓÞbú~HÓÞbú~Óbú~8Óbú~XÓbú~Óbú~/Óbú~OÓbú~Óbú~¯Óbú~ÏÓbú}Òbú}(Òbú}HÒbú}ÒÞbú}(ÒÞbú}HÒÞbú}Òbú}8Òbú}XÒbú}Òbú}/Òbú}OÒbú}Òbú}¯Òbú}ÏÒbú}Óbú}(Óbú}HÓbú}ÓÞbú}(ÓÞbú}HÓÞbú}Óbú}8Óbú}XÓbú}Óbú}/Óbú}OÓbú}Óbú}¯Óbú}ÏÓbú|Òbú|(Òbú|HÒbú|ÒÞbú|(ÒÞbú|HÒÞbú|Òbú|8Òbú|XÒbú|Òbú|/Òbú|OÒbú|Òbú|¯Òbú|ÏÒbú|Óbú|(Óbú|HÓbú|ÓÞbú|(ÓÞbú|HÓÞbú|Óbú|8Óbú|XÓbú|Óbú|/Óbú|OÓbú|Óbú|¯Óbú|ÏÓbþ|Lbþ|(Lbþ|HLbþ|LÞbþ|(LÞbþ|HLÞbþ|Lbþ|8Lbþ|XLbþ|Lbþ|/Lbþ|OLbþ|Lbþ|¯Lbþ|ÏLbûV½bû(V½bûHV½bûVÞ½bû(VÞ½bûHVÞ½bûV½bû8V½bûXV½bûV½bû/V½bûOV½bûV½bû¯V½bûÏV½bû½bû(½bûH½bûÞ½bû(Þ½bûHÞ½bû½bû8½bûX½bû½bû/½bûO½bû½bû¯½bûϽbþ|Nbþ|(Nbþ|HNbþ|NÞbþ|(NÞbþ|HNÞbþ|Nbþ|8Nbþ|XNbþ|Nbþ|/Nbþ|ONbþ|Nbþ|¯Nbþ|ÏNbþ|,bþ|(,bþ|H,bþ|,Þbþ|(,Þbþ|H,Þbþ|,bþ|8,bþ|X,bþ|,bþ|/,bþ|O,bþ|,bþ|¯,bþ|Ï,bý}Qbý}(Qbý}HQbý}QÞbý}(QÞbý}HQÞbý}Qbý}8Qbý}XQbý}Qbý}/Qbý}OQbý}Qbý}¯Qbý}ÏQbý}\bý}(\bý}H\bý}\Þbý}(\Þbý}H\Þbý}\bý}8\bý}X\bý}\bý}/\bý}O\bý}\bý}¯\bý}Ï\bùþ.bùþ.Þbùþ.Þbùú.Þbý.bý.Þbý.Þbý{.Þbù.bù.Þbù.Þbù{.Þ \ No newline at end of file +bý}Xbý}(Xbý}HXbý}XÞbý}(XÞbý}HXÞbý}Xbý}8Xbý}XXbý}Xbý}/Xbý}OXbý}Xbý}¯Xbý}ÏXbû½bû(½bûH½bûÂÞ½bû(ÂÞ½bûHÂÞ½bû½bû8½bûX½bû½bû/½bûO½bý}/bý}(/bý}H/bý}/Þbý}(/Þbý}H/Þbùÿ/bùÿ(/bùÿH/bùÿ/Þbùÿ(/ÞbùÿH/Þbùÿ/Þbùÿ8/ÞbùÿX/Þbùÿx/Þbùû/Þbùû8/ÞbùûX/Þbùûx/Þbý~/bý~(/bý~H/bý~/Þbý~(/Þbý~H/Þbý~/Þbý~8/Þbý~X/Þbý~x/Þbýz/Þbýz8/ÞbýzX/Þbýzx/Þbù~/bù~(/bù~H/bù~/Þbù~(/Þbù~H/Þbù~/Þbù~8/Þbù~X/Þbù~x/Þbùz/Þbùz8/ÞbùzX/Þbùzx/Þbú}gbú}(gbú}Hgbú}gÞbú}(gÞbú}HgÞbú}gbú}8gbú}Xgbú}gbú}/gbú}Ogbú}gbú}¯gbú}Ïgbú}gÞbú}8gÞbú}XgÞbú}xgÞbúygÞbúy8gÞbúyXgÞbúyxgÞbú|tbú|(tbú|Htbú|tÞbú|(tÞbú|HtÞbú|tbú|8tbú|Xtbú|tbú|/tbú|Otbú|tbú|¯tbú|Ïtbý|tbý|(tbý|Htbý|tÞbý|(tÞbý|HtÞbý|tbý|8tbý|Xtbý|tbý|/tbý|Otbý|tbý|¯tbý|Ïtbý|bý|(bý|Hbý|Þbý|(Þbý|HÞbý|bý|8bý|Xbý|bý|/bý|Obý|bý|¯bý|Ïbý|bý|(bý|Hbý|Þbý|(Þbý|HÞbý|bý|8bý|Xbý|bý|/bý|Obý|bý|¯bý|Ïbýbý(býHbýÞbý(ÞbýHÞbýbý/býObýbý¯býÏbútbú(tbúHtbútÞbú(tÞbúHtÞbútbú8tbúXtbútbú/tbúOtbútbú¯tbúÏtbýtbý(tbýHtbýtÞbý(tÞbýHtÞbýtbý8tbýXtbýtbý/tbýOtbýtbý¯tbýÏtbýbý(býHbýÞbý(ÞbýHÞbýbý8býXbýbý/býObýbý¯býÏbýbý(býHbýÞbý(ÞbýHÞbýbý8býXbýbý/býObýbý¯býÏbýibý(ibýHibýiÞbý(iÞbýHiÞbýibý8ibýXibýibý/ibýOibýibý¯ibýÏibýkbý(kbýHkbýkÞbý(kÞbýHkÞbýkbý8kbýXkbýkbý/kbýOkbýkbý¯kbýÏkbú~tbú~(tbú~Htbú~tÞbú~(tÞbú~HtÞbú~tbú~8tbú~Xtbú~tbú~/tbú~Otbú~tbú~¯tbú~Ïtbý~tbý~(tbý~Htbý~tÞbý~(tÞbý~HtÞbý~tbý~8tbý~Xtbý~tbý~/tbý~Otbý~tbý~¯tbý~Ïtbý~bý~(bý~Hbý~Þbý~(Þbý~HÞbý~bý~8bý~Xbý~bý~/bý~Obý~bý~¯bý~Ïbý~bý~(bý~Hbý~Þbý~(Þbý~HÞbý~bý~8bý~Xbý~bý~/bý~Obý~bý~¯bý~Ïbý|ibý|(ibý|Hibý|iÞbý|(iÞbý|HiÞbý|ibý|8ibý|Xibý|ibý|/ibý|Oibý|ibý|¯ibý|Ïibý|iÞbý|8iÞbý|XiÞbý|xiÞbýxiÞbýx8iÞbýxXiÞbýxxiÞbý|kbý|(kbý|Hkbý|kÞbý|(kÞbý|HkÞbý|kbý|8kbý|Xkbý|kbý|/kbý|Okbý|kbý|¯kbý|Ïkbý|kÞbý|8kÞbý|XkÞbý|xkÞbýxkÞbýx8kÞbýxXkÞbýxxkÞbý}ibý}(ibý}Hibý}iÞbý}(iÞbý}HiÞbý}ibý}8ibý}Xibý}ibý}/ibý}Oibý}ibý}¯ibý}Ïibý}iÞbý}8iÞbý}XiÞbý}xiÞbýyiÞbýy8iÞbýyXiÞbýyxiÞbý}kbý}(kbý}Hkbý}kÞbý}(kÞbý}HkÞbý}kbý}8kbý}Xkbý}kbý}/kbý}Okbý}kbý}¯kbý}Ïkbý}kÞbý}8kÞbý}XkÞbý}xkÞbýykÞbýy8kÞbýyXkÞbýyxkÞbýhbý(hbýHhbýhÞbý(hÞbýHhÞbýhbý8hbýXhbýhbý/hbýOhbýhbý¯hbýÏhbýjbý(jbýHjbýjÞbý(jÞbýHjÞbýjbý8jbýXjbýjbý/jbýOjbýjbý¯jbýÏjbýümbýü(mbýüHmbýümÞbýü(mÞbýüHmÞbýümbýü8mbýüXmbýümbýü/mbýüOmbýümbýü¯mbýüÏmbýümÞbýü8mÞbýüXmÞbýüxmÞbýømÞbýø8mÞbýøXmÞbýøxmÞbýýmbýý(mbýýHmbýýmÞbýý(mÞbýýHmÞbýýmbýý8mbýýXmbýýmbýý/mbýýOmbýýmbýý¯mbýýÏmbýýmÞbýý8mÞbýýXmÞbýýxmÞbýùmÞbýù8mÞbýùXmÞbýùxmÞbýülbýü(lbýüHlbýülÞbýü(lÞbýüHlÞbýülbýü8lbýüXlbýülbýü/lbýüOlbýülbýü¯lbýüÏlbýülÞbýü8lÞbýüXlÞbýüxlÞbýølÞbýø8lÞbýøXlÞbýøxlÞbýýlbýý(lbýýHlbýýlÞbýý(lÞbýýHlÞbýýlbýý8lbýýXlbýýlbýý/lbýýOlbýýlbýý¯lbýýÏlbýýlÞbýý8lÞbýýXlÞbýýxlÞbýùlÞbýù8lÞbýùXlÞbýùxlÞbý|hbý|(hbý|Hhbý|hÞbý|(hÞbý|HhÞbý|hbý|8hbý|Xhbý|hbý|/hbý|Ohbý|hbý|¯hbý|Ïhbý|hÞbý|8hÞbý|XhÞbý|xhÞbýxhÞbýx8hÞbýxXhÞbýxxhÞbý|jbý|(jbý|Hjbý|jÞbý|(jÞbý|HjÞbý|jbý|8jbý|Xjbý|jbý|/jbý|Ojbý|jbý|¯jbý|Ïjbý|jÞbý|8jÞbý|XjÞbý|xjÞbýxjÞbýx8jÞbýxXjÞbýxxjÞbý|mbý|(mbý|Hmbý|mÞbý|(mÞbý|HmÞbý|mbý|8mbý|Xmbý|mbý|/mbý|Ombý|mbý|¯mbý|Ïmbý|mÞbý|8mÞbý|XmÞbý|xmÞbýxmÞbýx8mÞbýxXmÞbýxxmÞbý}hbý}(hbý}Hhbý}hÞbý}(hÞbý}HhÞbý}hbý}8hbý}Xhbý}hbý}/hbý}Ohbý}hbý}¯hbý}Ïhbý}hÞbý}8hÞbý}XhÞbý}xhÞbýyhÞbýy8hÞbýyXhÞbýyxhÞbý}jbý}(jbý}Hjbý}jÞbý}(jÞbý}HjÞbý}jbý}8jbý}Xjbý}jbý}/jbý}Ojbý}jbý}¯jbý}Ïjbý}jÞbý}8jÞbý}XjÞbý}xjÞbýyjÞbýy8jÞbýyXjÞbýyxjÞbý}mbý}(mbý}Hmbý}mÞbý}(mÞbý}HmÞbý}mbý}8mbý}Xmbý}mbý}/mbý}Ombý}mbý}¯mbý}Ïmbý}mÞbý}8mÞbý}XmÞbý}xmÞbýymÞbýy8mÞbýyXmÞbýyxmÞbý|lbý|(lbý|Hlbý|lÞbý|(lÞbý|HlÞbý|lbý|8lbý|Xlbý|lbý|/lbý|Olbý|lbý|¯lbý|Ïlbý|lÞbý|8lÞbý|XlÞbý|xlÞbýxlÞbýx8lÞbýxXlÞbýxxlÞbý}lbý}(lbý}Hlbý}lÞbý}(lÞbý}HlÞbý}lbý}8lbý}Xlbý}lbý}/lbý}Olbý}lbý}¯lbý}Ïlbý}lÞbý}8lÞbý}XlÞbý}xlÞbýylÞbýy8lÞbýyXlÞbýyxlÞbýmbý(mbýHmbýÿmbýÿ(mbýÿHmbýmÞbý(mÞbýHmÞbýÿmÞbýÿ(mÞbýÿHmÞbýmÞbý8mÞbýXmÞbýxmÞbýÿmÞbýÿ8mÞbýÿXmÞbýÿxmÞbý{mÞbý{8mÞbý{XmÞbý{xmÞbýûmÞbýû8mÞbýûXmÞbýûxmÞbýlbý(lbýHlbýÿlbýÿ(lbýÿHlbýlÞbý(lÞbýHlÞbýÿlÞbýÿ(lÞbýÿHlÞbýlÞbý8lÞbýXlÞbýxlÞbýÿlÞbýÿ8lÞbýÿXlÞbýÿxlÞbý{lÞbý{8lÞbý{XlÞbý{xlÞbýûlÞbýû8lÞbýûXlÞbýûxlÞbý~mbý~(mbý~Hmbýþmbýþ(mbýþHmbý~mÞbý~(mÞbý~HmÞbýþmÞbýþ(mÞbýþHmÞbý~mÞbý~8mÞbý~XmÞbý~xmÞbýþmÞbýþ8mÞbýþXmÞbýþxmÞbýzmÞbýz8mÞbýzXmÞbýzxmÞbýúmÞbýú8mÞbýúXmÞbýúxmÞbý~lbý~(lbý~Hlbýþlbýþ(lbýþHlbý~lÞbý~(lÞbý~HlÞbýþlÞbýþ(lÞbýþHlÞbý~lÞbý~8lÞbý~XlÞbý~xlÞbýþlÞbýþ8lÞbýþXlÞbýþxlÞbýzlÞbýz8lÞbýzXlÞbýzxlÞbýúlÞbýú8lÞbýúXlÞbýúxlÞbý}^bý}(^bý}H^bý}^Þbý}(^Þbý}H^Þbý}^bý}8^bý}X^bý}^bý}/^bý}O^bý}^bý}¯^bý}Ï^bú|Rbú|(Rbú|HRbú|RÞbú|(RÞbú|HRÞbú|Rbú|8Rbú|XRbú|Rbú|/Rbú|ORbú|Rbú|¯Rbú|ÏRbþ|˜bþ|(˜bþ|H˜bþ|˜Þbþ|(˜Þbþ|H˜Þbþ|˜bþ|8˜bþ|X˜bþ|˜bþ|/˜bþ|O˜bþ|˜bþ|¯˜bþ|Ϙbþ|¨bþ|(¨bþ|H¨bþ|¨Þbþ|(¨Þbþ|H¨Þbþ|¨bþ|8¨bþ|X¨bþ|¨bþ|/¨bþ|O¨bþ|¨bþ|¯¨bþ|Ϩbþ|¸bþ|(¸bþ|H¸bþ|¸Þbþ|(¸Þbþ|H¸Þbþ|¸bþ|8¸bþ|X¸bþ|¸bþ|/¸bþ|O¸bþ|¸bþ|¯¸bþ|ϸbþ|šbþ|(šbþ|Hšbþ|šÞbþ|(šÞbþ|HšÞbþ|šbþ|8šbþ|Xšbþ|šbþ|/šbþ|Ošbþ|šbþ|¯šbþ|Ïšbþ|ªbþ|(ªbþ|Hªbþ|ªÞbþ|(ªÞbþ|HªÞbþ|ªbþ|8ªbþ|Xªbþ|ªbþ|/ªbþ|Oªbþ|ªbþ|¯ªbþ|Ϫbþ|ºbþ|(ºbþ|Hºbþ|ºÞbþ|(ºÞbþ|HºÞbþ|ºbþ|8ºbþ|Xºbþ|ºbþ|/ºbþ|Oºbþ|ºbþ|¯ºbþ|Ϻbþ|œbþ|(œbþ|Hœbþ|œÞbþ|(œÞbþ|HœÞbþ|œbþ|8œbþ|Xœbþ|œbþ|/œbþ|Oœbþ|œbþ|¯œbþ|Ïœbþ|¬bþ|(¬bþ|H¬bþ|¬Þbþ|(¬Þbþ|H¬Þbþ|¬bþ|8¬bþ|X¬bþ|¬bþ|/¬bþ|O¬bþ|¬bþ|¯¬bþ|Ϭbþ|¼bþ|(¼bþ|H¼bþ|¼Þbþ|(¼Þbþ|H¼Þbþ|¼bþ|8¼bþ|X¼bþ|¼bþ|/¼bþ|O¼bþ|¼bþ|¯¼bþ|ϼbþ|žbþ|(žbþ|Hžbþ|žÞbþ|(žÞbþ|HžÞbþ|žbþ|8žbþ|Xžbþ|žbþ|/žbþ|Ožbþ|žbþ|¯žbþ|Ïžbþ|®bþ|(®bþ|H®bþ|®Þbþ|(®Þbþ|H®Þbþ|®bþ|8®bþ|X®bþ|®bþ|/®bþ|O®bþ|®bþ|¯®bþ|Ï®bþ|¾bþ|(¾bþ|H¾bþ|¾Þbþ|(¾Þbþ|H¾Þbþ|¾bþ|8¾bþ|X¾bþ|¾bþ|/¾bþ|O¾bþ|¾bþ|¯¾bþ|Ͼbûf½bû(f½bûHf½bûfÞ½bû(fÞ½bûHfÞ½bûf½bû8f½bûXf½bûf½bû/f½bûOf½bþ|Bbþ|(Bbþ|HBbþ|BÞbþ|(BÞbþ|HBÞbþ|Bbþ|8Bbþ|XBbþ|Bbþ|/Bbþ|OBbþ|Bbþ|¯Bbþ|ÏBbû&½bû(&½bûH&½bû&Þ½bû(&Þ½bûH&Þ½bû&½bû8&½bûX&½bû&½bû/&½bûO&½bû&½bû¯&½bûÏ&½bý}_bý}(_bý}H_bý}_Þbý}(_Þbý}H_Þbý}_bý}8_bý}X_bý}_bý}/_bý}O_bý}_bý}¯_bý}Ï_bûR½bû(R½bûHR½bûRÞ½bû(RÞ½bûHRÞ½bûR½bû8R½bûXR½bûR½bû/R½bûOR½bûR½bû¯R½bûÏR½bûýR½bûý(R½bûýHR½bûýRÞ½bûý(RÞ½bûýHRÞ½bûýR½bûý8R½bûýXR½bûýR½bûý/R½bûýOR½bûýR½bûý¯R½bûýÏR½bûýRÞ½bûý8RÞ½bûýXRÞ½bûýxRÞ½bûùRÞ½bûù8RÞ½bûùXRÞ½bûùxRÞ½bû|R½bû|(R½bû|HR½bû|RÞ½bû|(RÞ½bû|HRÞ½bû|R½bû|8R½bû|XR½bû|R½bû|/R½bû|OR½bû|R½bû|¯R½bû|ÏR½bû|RÞ½bû|8RÞ½bû|XRÞ½bû|xRÞ½bûxRÞ½bûx8RÞ½bûxXRÞ½bûxxRÞ½bû}R½bû}(R½bû}HR½bû}RÞ½bû}(RÞ½bû}HRÞ½bû}R½bû}8R½bû}XR½bû}R½bû}/R½bû}OR½bû}R½bû}¯R½bû}ÏR½bû}RÞ½bû}8RÞ½bû}XRÞ½bû}xRÞ½bûyRÞ½bûy8RÞ½bûyXRÞ½bûyxRÞ½bûýS½bûý(S½bûýHS½bûýSÞ½bûý(SÞ½bûýHSÞ½bûýS½bûý/S½bûýOS½bûýS½bûý¯S½bûýÏS½bûýSÞ½bûý8SÞ½bûýXSÞ½bûýxSÞ½bûùSÞ½bûù8SÞ½bûùXSÞ½bûùxSÞ½bû|S½bû|(S½bû|HS½bû|SÞ½bû|(SÞ½bû|HSÞ½bû|S½bû|/S½bû|OS½bû|S½bû|¯S½bû|ÏS½bû|SÞ½bû|8SÞ½bû|XSÞ½bû|xSÞ½bûxSÞ½bûx8SÞ½bûxXSÞ½bûxxSÞ½bû}S½bû}(S½bû}HS½bû}SÞ½bû}(SÞ½bû}HSÞ½bû}S½bû}/S½bû}OS½bû}S½bû}¯S½bû}ÏS½bû}SÞ½bû}8SÞ½bû}XSÞ½bû}xSÞ½bûySÞ½bûy8SÞ½bûyXSÞ½bûyxSÞ½bý}]bý}(]bý}H]bý}]Þbý}(]Þbý}H]Þbý}]bý}8]bý}X]bý}]bý}/]bý}O]bý}]bý}¯]bý}Ï]bù~~bù~~Þbù}Öbù}ÖÞbý~nbý~nÞbý~~bý~~Þbû~B½bû~(B½bû~HB½bû~BÞ½bû~(BÞ½bû~HBÞ½bû~B½bû~/B½bû~OB½bû~B½bû~¯B½bû~ÏB½bý}Ybý}(Ybý}HYbý}YÞbý}(YÞbý}HYÞbý}Ybý}8Ybý}XYbý}Ybý}/Ybý}OYbý}Ybý}¯Ybý}ÏYbúPbú(PbúHPbúPÞbú(PÞbúHPÞbúPbú8PbúXPbúPbú/PbúOPbúPbú¯PbúÏPbúQbú(QbúHQbúQÞbú(QÞbúHQÞbúQbú8QbúXQbúQbú/QbúOQbúQbú¯QbúÏQbú~Pbú~(Pbú~HPbú~PÞbú~(PÞbú~HPÞbú~Pbú~8Pbú~XPbú~Pbú~/Pbú~OPbú~Pbú~¯Pbú~ÏPbú~Qbú~(Qbú~HQbú~QÞbú~(QÞbú~HQÞbú~Qbú~8Qbú~XQbú~Qbú~/Qbú~OQbú~Qbú~¯Qbú~ÏQbú|Pbú|(Pbú|HPbú|PÞbú|(PÞbú|HPÞbú|Pbú|8Pbú|XPbú|Pbú|/Pbú|OPbú|Pbú|¯Pbú|ÏPbú|Qbú|(Qbú|HQbú|QÞbú|(QÞbú|HQÞbú|Qbú|8Qbú|XQbú|Qbú|/Qbú|OQbú|Qbú|¯Qbú|ÏQbú~Òbú~(Òbú~HÒbú~ÒÞbú~(ÒÞbú~HÒÞbú~Òbú~8Òbú~XÒbú~Òbú~/Òbú~OÒbú~Òbú~¯Òbú~ÏÒbú~Óbú~(Óbú~HÓbú~ÓÞbú~(ÓÞbú~HÓÞbú~Óbú~8Óbú~XÓbú~Óbú~/Óbú~OÓbú~Óbú~¯Óbú~ÏÓbú}Òbú}(Òbú}HÒbú}ÒÞbú}(ÒÞbú}HÒÞbú}Òbú}8Òbú}XÒbú}Òbú}/Òbú}OÒbú}Òbú}¯Òbú}ÏÒbú}Óbú}(Óbú}HÓbú}ÓÞbú}(ÓÞbú}HÓÞbú}Óbú}8Óbú}XÓbú}Óbú}/Óbú}OÓbú}Óbú}¯Óbú}ÏÓbú|Òbú|(Òbú|HÒbú|ÒÞbú|(ÒÞbú|HÒÞbú|Òbú|8Òbú|XÒbú|Òbú|/Òbú|OÒbú|Òbú|¯Òbú|ÏÒbú|Óbú|(Óbú|HÓbú|ÓÞbú|(ÓÞbú|HÓÞbú|Óbú|8Óbú|XÓbú|Óbú|/Óbú|OÓbú|Óbú|¯Óbú|ÏÓbþ|Lbþ|(Lbþ|HLbþ|LÞbþ|(LÞbþ|HLÞbþ|Lbþ|8Lbþ|XLbþ|Lbþ|/Lbþ|OLbþ|Lbþ|¯Lbþ|ÏLbûV½bû(V½bûHV½bûVÞ½bû(VÞ½bûHVÞ½bûV½bû8V½bûXV½bûV½bû/V½bûOV½bûV½bû¯V½bûÏV½bû½bû(½bûH½bûÞ½bû(Þ½bûHÞ½bû½bû8½bûX½bû½bû/½bûO½bû½bû¯½bûϽbþ|Nbþ|(Nbþ|HNbþ|NÞbþ|(NÞbþ|HNÞbþ|Nbþ|8Nbþ|XNbþ|Nbþ|/Nbþ|ONbþ|Nbþ|¯Nbþ|ÏNbþ|,bþ|(,bþ|H,bþ|,Þbþ|(,Þbþ|H,Þbþ|,bþ|8,bþ|X,bþ|,bþ|/,bþ|O,bþ|,bþ|¯,bþ|Ï,bý}Qbý}(Qbý}HQbý}QÞbý}(QÞbý}HQÞbý}Qbý}8Qbý}XQbý}Qbý}/Qbý}OQbý}Qbý}¯Qbý}ÏQbý}\bý}(\bý}H\bý}\Þbý}(\Þbý}H\Þbý}\bý}8\bý}X\bý}\bý}/\bý}O\bý}\bý}¯\bý}Ï\bùÿ.bùÿ(.bùÿH.bùÿ.Þbùÿ(.ÞbùÿH.Þbùÿ.Þbùÿ8.ÞbùÿX.Þbùÿx.Þbùû.Þbùû8.ÞbùûX.Þbùûx.Þbý~.bý~(.bý~H.bý~.Þbý~(.Þbý~H.Þbý~.Þbý~8.Þbý~X.Þbý~x.Þbýz.Þbýz8.ÞbýzX.Þbýzx.Þbù~.bù~(.bù~H.bù~.Þbù~(.Þbù~H.Þbù~.Þbù~8.Þbù~X.Þbù~x.Þbùz.Þbùz8.ÞbùzX.Þbùzx.Þ \ No newline at end of file diff --git a/bddisasm_test/x86/avx512/avx512dq_64.result b/bddisasm_test/x86/avx512/avx512dq_64.result index 4d5a808..a19607b 100644 --- a/bddisasm_test/x86/avx512/avx512dq_64.result +++ b/bddisasm_test/x86/avx512/avx512dq_64.result @@ -6721,6 +6721,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6740,6 +6741,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6760,6 +6762,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6781,6 +6784,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6801,6 +6805,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6821,6 +6826,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6841,6 +6847,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6862,6 +6869,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6884,6 +6892,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6905,6 +6914,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6926,6 +6936,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6947,6 +6958,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6969,6 +6981,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6992,6 +7005,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7014,6 +7028,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7036,6 +7051,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7055,6 +7071,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7075,6 +7092,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7096,6 +7114,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7116,6 +7135,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7136,6 +7156,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7156,6 +7177,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7177,6 +7199,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7199,6 +7222,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7220,6 +7244,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7241,6 +7266,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7262,6 +7288,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7284,6 +7311,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7307,6 +7335,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7329,6 +7358,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7351,6 +7381,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7370,6 +7401,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7389,6 +7421,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7409,6 +7442,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7430,6 +7464,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7450,6 +7485,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7470,6 +7506,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7490,6 +7527,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7510,6 +7548,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7531,6 +7570,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7553,6 +7593,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7574,6 +7615,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7595,6 +7637,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7616,6 +7659,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7637,6 +7681,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7659,6 +7704,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7682,6 +7728,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7704,6 +7751,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7726,6 +7774,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7745,6 +7794,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7765,6 +7815,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7786,6 +7837,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7806,6 +7858,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7826,6 +7879,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7846,6 +7900,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7867,6 +7922,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7889,6 +7945,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7910,6 +7967,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7931,6 +7989,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7952,6 +8011,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7974,6 +8034,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7997,6 +8058,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8019,6 +8081,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8041,6 +8104,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8060,6 +8124,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8080,6 +8145,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8101,6 +8167,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8121,6 +8188,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8141,6 +8209,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8161,6 +8230,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8182,6 +8252,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8204,6 +8275,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8225,6 +8297,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8246,6 +8319,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8267,6 +8341,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8289,6 +8364,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8312,6 +8388,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8334,6 +8411,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8356,6 +8434,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8375,6 +8454,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8394,6 +8474,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8414,6 +8495,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8435,6 +8517,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8455,6 +8538,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8475,6 +8559,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8495,6 +8580,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8515,6 +8601,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8536,6 +8623,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8558,6 +8646,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8579,6 +8668,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8600,6 +8690,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8621,6 +8712,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8642,6 +8734,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8664,6 +8757,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8687,6 +8781,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8709,6 +8804,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8731,6 +8827,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8750,6 +8847,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8770,6 +8868,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8791,6 +8890,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8811,6 +8911,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8831,6 +8932,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8851,6 +8953,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8872,6 +8975,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8894,6 +8998,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8915,6 +9020,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8936,6 +9042,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8957,6 +9064,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8979,6 +9087,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9002,6 +9111,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9024,6 +9134,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9046,6 +9157,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9065,6 +9177,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9085,6 +9198,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9106,6 +9220,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9126,6 +9241,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9146,6 +9262,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9166,6 +9283,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9187,6 +9305,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9209,6 +9328,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9230,6 +9350,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9251,6 +9372,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9272,6 +9394,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9294,6 +9417,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9317,6 +9441,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9339,6 +9464,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9361,6 +9487,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9380,6 +9507,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9399,6 +9527,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9419,6 +9548,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9440,6 +9570,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9460,6 +9591,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9480,6 +9612,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9500,6 +9633,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9520,6 +9654,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9541,6 +9676,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9563,6 +9699,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9584,6 +9721,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9605,6 +9743,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9626,6 +9765,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9647,6 +9787,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9669,6 +9810,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9692,6 +9834,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9714,6 +9857,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9736,6 +9880,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9755,6 +9900,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9775,6 +9921,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9796,6 +9943,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9816,6 +9964,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9836,6 +9985,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9856,6 +10006,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9877,6 +10028,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9899,6 +10051,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9920,6 +10073,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9941,6 +10095,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9962,6 +10117,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9984,6 +10140,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10007,6 +10164,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10029,6 +10187,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10051,6 +10210,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10070,6 +10230,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10090,6 +10251,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10111,6 +10273,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10131,6 +10294,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10151,6 +10315,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10171,6 +10336,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10192,6 +10358,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10214,6 +10381,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10235,6 +10403,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10256,6 +10425,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10277,6 +10447,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10299,6 +10470,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10322,6 +10494,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10344,6 +10517,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10366,6 +10540,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10385,6 +10560,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10404,6 +10580,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10424,6 +10601,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10445,6 +10623,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10465,6 +10644,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10485,6 +10665,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10505,6 +10686,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10525,6 +10707,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10546,6 +10729,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10568,6 +10752,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10589,6 +10774,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10610,6 +10796,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10631,6 +10818,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10652,6 +10840,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10674,6 +10863,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10697,6 +10887,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10719,6 +10910,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10741,6 +10933,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10760,6 +10953,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10780,6 +10974,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10801,6 +10996,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10821,6 +11017,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10841,6 +11038,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10861,6 +11059,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10882,6 +11081,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10904,6 +11104,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10925,6 +11126,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10946,6 +11148,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10967,6 +11170,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10989,6 +11193,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11012,6 +11217,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11034,6 +11240,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11056,6 +11263,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11075,6 +11283,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11095,6 +11304,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11116,6 +11326,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11136,6 +11347,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11156,6 +11368,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11176,6 +11389,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11197,6 +11411,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11219,6 +11434,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11240,6 +11456,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11261,6 +11478,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11282,6 +11500,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11304,6 +11523,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11327,6 +11547,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11349,6 +11570,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11371,6 +11593,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11390,6 +11613,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11409,6 +11633,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11429,6 +11654,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11450,6 +11676,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11470,6 +11697,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11490,6 +11718,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11510,6 +11739,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11530,6 +11760,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11551,6 +11782,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11573,6 +11805,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11594,6 +11827,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11615,6 +11849,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11636,6 +11871,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11657,6 +11893,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11679,6 +11916,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11702,6 +11940,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11724,6 +11963,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11746,6 +11986,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11765,6 +12006,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11784,6 +12026,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11805,6 +12048,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11826,6 +12070,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11846,6 +12091,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11866,6 +12112,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11888,6 +12135,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11910,6 +12158,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11931,6 +12180,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11952,6 +12202,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11975,6 +12226,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11998,6 +12250,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12017,6 +12270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12036,6 +12290,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12056,6 +12311,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12077,6 +12333,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12097,6 +12354,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12117,6 +12375,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12137,6 +12396,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12157,6 +12417,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12178,6 +12439,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12200,6 +12462,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12221,6 +12484,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12242,6 +12506,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12263,6 +12528,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12284,6 +12550,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12306,6 +12573,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12329,6 +12597,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12351,6 +12620,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12373,6 +12643,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12392,6 +12663,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12412,6 +12684,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12433,6 +12706,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12453,6 +12727,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12473,6 +12748,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12493,6 +12769,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12514,6 +12791,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12536,6 +12814,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12557,6 +12836,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12578,6 +12858,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12599,6 +12880,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12621,6 +12903,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12644,6 +12927,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12666,6 +12950,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12688,6 +12973,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12707,6 +12993,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12727,6 +13014,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12748,6 +13036,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12768,6 +13057,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12788,6 +13078,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12808,6 +13099,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12829,6 +13121,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12851,6 +13144,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12872,6 +13166,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12893,6 +13188,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12914,6 +13210,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12936,6 +13233,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12959,6 +13257,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12981,6 +13280,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13003,6 +13303,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13022,6 +13323,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13041,6 +13343,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13061,6 +13364,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13082,6 +13386,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13102,6 +13407,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13122,6 +13428,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13142,6 +13449,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13162,6 +13470,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13183,6 +13492,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13205,6 +13515,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13226,6 +13537,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13247,6 +13559,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13268,6 +13581,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13289,6 +13603,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13311,6 +13626,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13334,6 +13650,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13356,6 +13673,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13378,6 +13696,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13397,6 +13716,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13417,6 +13737,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13438,6 +13759,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13458,6 +13780,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13478,6 +13801,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13498,6 +13822,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13519,6 +13844,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13541,6 +13867,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13562,6 +13889,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13583,6 +13911,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13604,6 +13933,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13626,6 +13956,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13649,6 +13980,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13671,6 +14003,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13693,6 +14026,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13712,6 +14046,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13732,6 +14067,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13753,6 +14089,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13773,6 +14110,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13793,6 +14131,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13813,6 +14152,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13834,6 +14174,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13856,6 +14197,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13877,6 +14219,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13898,6 +14241,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13919,6 +14263,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13941,6 +14286,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13964,6 +14310,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13986,6 +14333,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14008,6 +14356,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14027,6 +14376,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14046,6 +14396,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14066,6 +14417,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14087,6 +14439,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14107,6 +14460,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14127,6 +14481,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14147,6 +14502,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14167,6 +14523,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14188,6 +14545,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14210,6 +14568,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14231,6 +14590,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14252,6 +14612,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14273,6 +14634,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14294,6 +14656,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14316,6 +14679,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14339,6 +14703,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14361,6 +14726,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14383,6 +14749,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14402,6 +14769,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14422,6 +14790,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14443,6 +14812,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14463,6 +14833,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14483,6 +14854,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14503,6 +14875,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14524,6 +14897,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14546,6 +14920,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14567,6 +14942,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14588,6 +14964,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14609,6 +14986,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14631,6 +15009,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14654,6 +15033,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14676,6 +15056,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14698,6 +15079,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14717,6 +15099,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14737,6 +15120,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14758,6 +15142,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14778,6 +15163,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14798,6 +15184,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14818,6 +15205,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14839,6 +15227,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14861,6 +15250,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14882,6 +15272,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14903,6 +15294,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14924,6 +15316,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14946,6 +15339,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14969,6 +15363,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14991,6 +15386,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15013,6 +15409,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15032,6 +15429,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15051,6 +15449,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15071,6 +15470,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15092,6 +15492,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15112,6 +15513,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15132,6 +15534,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15152,6 +15555,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15172,6 +15576,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15193,6 +15598,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15215,6 +15621,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15236,6 +15643,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15257,6 +15665,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15278,6 +15687,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15299,6 +15709,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15321,6 +15732,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15344,6 +15756,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15366,6 +15779,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15388,6 +15802,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15407,6 +15822,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15427,6 +15843,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15448,6 +15865,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15468,6 +15886,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15488,6 +15907,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15508,6 +15928,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15529,6 +15950,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15551,6 +15973,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15572,6 +15995,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15593,6 +16017,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15614,6 +16039,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15636,6 +16062,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15659,6 +16086,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15681,6 +16109,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15703,6 +16132,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15722,6 +16152,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15742,6 +16173,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15763,6 +16195,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15783,6 +16216,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15803,6 +16237,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15823,6 +16258,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15844,6 +16280,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15866,6 +16303,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15887,6 +16325,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15908,6 +16347,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15929,6 +16369,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15951,6 +16392,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15974,6 +16416,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15996,6 +16439,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16018,6 +16462,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16037,6 +16482,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16056,6 +16502,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16076,6 +16523,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16097,6 +16545,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16117,6 +16566,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16137,6 +16587,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16157,6 +16608,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16177,6 +16629,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16198,6 +16651,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16220,6 +16674,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16241,6 +16696,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16262,6 +16718,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16283,6 +16740,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16304,6 +16762,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16326,6 +16785,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16349,6 +16809,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16371,6 +16832,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16393,6 +16855,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16412,6 +16875,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16432,6 +16896,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16453,6 +16918,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16473,6 +16939,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16493,6 +16960,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16513,6 +16981,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16534,6 +17003,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16556,6 +17026,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16577,6 +17048,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16598,6 +17070,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16619,6 +17092,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16641,6 +17115,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16664,6 +17139,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16686,6 +17162,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16708,6 +17185,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16727,6 +17205,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16747,6 +17226,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16768,6 +17248,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16788,6 +17269,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16808,6 +17290,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16828,6 +17311,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16849,6 +17333,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16871,6 +17356,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16892,6 +17378,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16913,6 +17400,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16934,6 +17422,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16956,6 +17445,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16979,6 +17469,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17001,6 +17492,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17023,6 +17515,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17042,6 +17535,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17061,6 +17555,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17081,6 +17576,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17102,6 +17598,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17122,6 +17619,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17142,6 +17640,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17162,6 +17661,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17182,6 +17682,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17203,6 +17704,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17225,6 +17727,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17246,6 +17749,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17267,6 +17771,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17288,6 +17793,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17309,6 +17815,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17331,6 +17838,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17354,6 +17862,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17376,6 +17885,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17398,6 +17908,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17417,6 +17928,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17436,6 +17948,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17457,6 +17970,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17478,6 +17992,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17498,6 +18013,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17518,6 +18034,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17540,6 +18057,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17562,6 +18080,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17583,6 +18102,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17604,6 +18124,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17627,6 +18148,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17650,6 +18172,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17669,6 +18192,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17688,6 +18212,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17708,6 +18233,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17729,6 +18255,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17749,6 +18276,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17769,6 +18297,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17789,6 +18318,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17809,6 +18339,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17830,6 +18361,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17852,6 +18384,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17873,6 +18406,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17894,6 +18428,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17915,6 +18450,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17936,6 +18472,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17958,6 +18495,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17981,6 +18519,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18003,6 +18542,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24435,6 +24975,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24456,6 +24997,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24478,6 +25020,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24501,6 +25044,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24523,6 +25067,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24545,6 +25090,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24567,6 +25113,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24590,6 +25137,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24614,6 +25162,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24637,6 +25186,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24660,6 +25210,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24683,6 +25234,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24707,6 +25259,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24732,6 +25285,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24756,6 +25310,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24780,6 +25335,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24801,6 +25357,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24823,6 +25380,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24846,6 +25404,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24868,6 +25427,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24890,6 +25450,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24912,6 +25473,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24935,6 +25497,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24959,6 +25522,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24982,6 +25546,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25005,6 +25570,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25028,6 +25594,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25052,6 +25619,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25077,6 +25645,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25101,6 +25670,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25125,6 +25695,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25146,6 +25717,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25168,6 +25740,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25191,6 +25764,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25213,6 +25787,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25235,6 +25810,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25257,6 +25833,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25280,6 +25857,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25304,6 +25882,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25327,6 +25906,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25350,6 +25930,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25373,6 +25954,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25397,6 +25979,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25422,6 +26005,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25446,6 +26030,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25470,6 +26055,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25491,6 +26077,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25513,6 +26100,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25536,6 +26124,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25558,6 +26147,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25580,6 +26170,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25602,6 +26193,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25625,6 +26217,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25649,6 +26242,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25672,6 +26266,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25695,6 +26290,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25718,6 +26314,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25742,6 +26339,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25767,6 +26365,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25791,6 +26390,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25815,6 +26415,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25836,6 +26437,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25858,6 +26460,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25881,6 +26484,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25903,6 +26507,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25925,6 +26530,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25947,6 +26553,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25970,6 +26577,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25994,6 +26602,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26017,6 +26626,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26040,6 +26650,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26063,6 +26674,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26087,6 +26699,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26112,6 +26725,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26136,6 +26750,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26160,6 +26775,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26181,6 +26797,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26203,6 +26820,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26226,6 +26844,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26248,6 +26867,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26270,6 +26890,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26292,6 +26913,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26315,6 +26937,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26339,6 +26962,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26362,6 +26986,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26385,6 +27010,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26408,6 +27034,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26432,6 +27059,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26457,6 +27085,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26481,6 +27110,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26505,6 +27135,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26526,6 +27157,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26548,6 +27180,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26570,6 +27203,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26592,6 +27226,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26614,6 +27249,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26637,6 +27273,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26660,6 +27297,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26683,6 +27321,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26706,6 +27345,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26730,6 +27370,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26754,6 +27395,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26778,6 +27420,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26799,6 +27442,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26821,6 +27465,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26843,6 +27488,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26865,6 +27511,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26887,6 +27534,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26910,6 +27558,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26933,6 +27582,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26956,6 +27606,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26979,6 +27630,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27003,6 +27655,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27027,6 +27680,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27051,6 +27705,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27071,6 +27726,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27092,6 +27748,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27114,6 +27771,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27135,6 +27793,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27156,6 +27815,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27177,6 +27837,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27199,6 +27860,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27222,6 +27884,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27244,6 +27907,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27266,6 +27930,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27288,6 +27953,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27311,6 +27977,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27335,6 +28002,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27358,6 +28026,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27381,6 +28050,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27401,6 +28071,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27422,6 +28093,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27444,6 +28116,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27465,6 +28138,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27486,6 +28160,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27507,6 +28182,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27529,6 +28205,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27552,6 +28229,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27574,6 +28252,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27596,6 +28275,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27618,6 +28298,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27641,6 +28322,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27665,6 +28347,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27688,6 +28371,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27711,6 +28395,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27731,6 +28416,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27752,6 +28438,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27774,6 +28461,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27795,6 +28483,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27816,6 +28505,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27837,6 +28527,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27859,6 +28550,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27882,6 +28574,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27904,6 +28597,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27926,6 +28620,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27948,6 +28643,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27971,6 +28667,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27995,6 +28692,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28018,6 +28716,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28041,6 +28740,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28061,6 +28761,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28082,6 +28783,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28104,6 +28806,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28125,6 +28828,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28146,6 +28850,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28167,6 +28872,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28189,6 +28895,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28212,6 +28919,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28234,6 +28942,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28256,6 +28965,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28278,6 +28988,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28301,6 +29012,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28325,6 +29037,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28348,6 +29061,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28371,6 +29085,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28391,6 +29106,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28412,6 +29128,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28434,6 +29151,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28455,6 +29173,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28476,6 +29195,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28497,6 +29217,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28519,6 +29240,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28542,6 +29264,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28564,6 +29287,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28586,6 +29310,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28608,6 +29333,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28631,6 +29357,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28655,6 +29382,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28678,6 +29406,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28701,6 +29430,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28721,6 +29451,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28742,6 +29473,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28764,6 +29496,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28785,6 +29518,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28806,6 +29540,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28827,6 +29562,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28849,6 +29585,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28872,6 +29609,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28894,6 +29632,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28916,6 +29655,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28938,6 +29678,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28961,6 +29702,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28985,6 +29727,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29008,6 +29751,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29031,6 +29775,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29052,6 +29797,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29074,6 +29820,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29096,6 +29843,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29118,6 +29866,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29140,6 +29889,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29163,6 +29913,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29186,6 +29937,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29209,6 +29961,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29232,6 +29985,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29256,6 +30010,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29280,6 +30035,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29304,6 +30060,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29325,6 +30082,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29347,6 +30105,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29369,6 +30128,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29391,6 +30151,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29413,6 +30174,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29436,6 +30198,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29459,6 +30222,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29482,6 +30246,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29505,6 +30270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29529,6 +30295,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29553,6 +30320,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 17 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes diff --git a/bddisasm_test/x86/avx512/avx512er_64.result b/bddisasm_test/x86/avx512/avx512er_64.result index 1779ab7..29405ed 100644 --- a/bddisasm_test/x86/avx512/avx512er_64.result +++ b/bddisasm_test/x86/avx512/avx512er_64.result @@ -4,6 +4,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IO Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23,6 +24,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IO Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42,6 +44,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IO Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62,6 +65,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IO Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83,6 +87,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IO Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103,6 +108,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IO Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123,6 +129,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IO Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143,6 +150,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IO Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163,6 +171,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IO Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184,6 +193,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IO Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206,6 +216,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IO Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227,6 +238,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IO Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -248,6 +260,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IO Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -269,6 +282,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IO Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -290,6 +304,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IO Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -312,6 +327,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IO Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -335,6 +351,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IO Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -357,6 +374,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IO Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -379,6 +397,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IO Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -398,6 +417,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IO Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -417,6 +437,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IO Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -437,6 +458,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IO Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -458,6 +480,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IO Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -478,6 +501,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IO Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -498,6 +522,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IO Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -518,6 +543,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IO Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -538,6 +564,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IO Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -559,6 +586,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IO Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -581,6 +609,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IO Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -602,6 +631,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IO Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -623,6 +653,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IO Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -644,6 +675,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IO Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -665,6 +697,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IO Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -687,6 +720,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IO Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -710,6 +744,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IO Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -732,6 +767,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IO Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -754,6 +790,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -773,6 +810,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -792,6 +830,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -812,6 +851,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -833,6 +873,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -853,6 +894,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -873,6 +915,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -893,6 +936,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -913,6 +957,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -934,6 +979,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -956,6 +1002,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -977,6 +1024,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -998,6 +1046,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1019,6 +1068,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1040,6 +1090,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1062,6 +1113,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1085,6 +1137,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1107,6 +1160,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1129,6 +1183,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1148,6 +1203,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1167,6 +1223,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1187,6 +1244,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1208,6 +1266,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1228,6 +1287,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1248,6 +1308,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1268,6 +1329,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1288,6 +1350,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1309,6 +1372,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1331,6 +1395,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1352,6 +1417,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1373,6 +1439,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1394,6 +1461,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1415,6 +1483,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1437,6 +1506,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1460,6 +1530,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1482,6 +1553,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1504,6 +1576,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1524,6 +1597,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1544,6 +1618,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1565,6 +1640,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1586,6 +1662,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1607,6 +1684,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1628,6 +1706,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1649,6 +1728,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1671,6 +1751,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1693,6 +1774,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1715,6 +1797,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1737,6 +1820,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1759,6 +1843,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1782,6 +1867,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1805,6 +1891,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1828,6 +1915,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1848,6 +1936,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1868,6 +1957,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1889,6 +1979,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1910,6 +2001,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1931,6 +2023,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1952,6 +2045,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1973,6 +2067,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1995,6 +2090,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2017,6 +2113,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2039,6 +2136,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2061,6 +2159,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2083,6 +2182,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2106,6 +2206,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2129,6 +2230,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2152,6 +2254,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2171,6 +2274,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2190,6 +2294,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2210,6 +2315,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2231,6 +2337,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2251,6 +2358,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2271,6 +2379,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2291,6 +2400,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2311,6 +2421,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2332,6 +2443,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2354,6 +2466,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2375,6 +2488,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2396,6 +2510,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2417,6 +2532,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2438,6 +2554,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2460,6 +2577,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2483,6 +2601,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2505,6 +2624,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2527,6 +2647,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2546,6 +2667,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2565,6 +2687,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2585,6 +2708,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2606,6 +2730,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2626,6 +2751,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2646,6 +2772,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2666,6 +2793,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2686,6 +2814,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2707,6 +2836,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2729,6 +2859,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2750,6 +2881,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2771,6 +2903,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2792,6 +2925,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2813,6 +2947,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2835,6 +2970,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2858,6 +2994,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2880,6 +3017,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2902,6 +3040,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2922,6 +3061,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2942,6 +3082,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2963,6 +3104,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2984,6 +3126,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3005,6 +3148,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3026,6 +3170,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3047,6 +3192,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3069,6 +3215,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3091,6 +3238,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3113,6 +3261,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3135,6 +3284,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3157,6 +3307,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3180,6 +3331,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3203,6 +3355,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3226,6 +3379,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3246,6 +3400,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3266,6 +3421,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3287,6 +3443,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3308,6 +3465,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3329,6 +3487,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3350,6 +3509,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3371,6 +3531,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3393,6 +3554,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3415,6 +3577,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3437,6 +3600,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3459,6 +3623,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3481,6 +3646,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3504,6 +3670,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3527,6 +3694,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 27 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes diff --git a/bddisasm_test/x86/avx512/avx512f_64.result b/bddisasm_test/x86/avx512/avx512f_64.result index 7434a70..a4204f1 100644 --- a/bddisasm_test/x86/avx512/avx512f_64.result +++ b/bddisasm_test/x86/avx512/avx512f_64.result @@ -361,6 +361,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -379,6 +380,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -399,6 +401,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -420,6 +423,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -439,6 +443,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -459,6 +464,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -480,6 +486,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -502,6 +509,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -525,6 +533,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -547,6 +556,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -569,6 +579,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -591,6 +602,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -614,6 +626,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -638,6 +651,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -661,6 +675,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -684,6 +699,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -704,6 +720,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -725,6 +742,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -747,6 +765,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -768,6 +787,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -789,6 +809,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -810,6 +831,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -832,6 +854,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -855,6 +878,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -877,6 +901,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -899,6 +924,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -921,6 +947,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -944,6 +971,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -968,6 +996,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -991,6 +1020,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1014,6 +1044,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1034,6 +1065,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1054,6 +1086,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1075,6 +1108,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1097,6 +1131,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1118,6 +1153,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1139,6 +1175,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1160,6 +1197,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1181,6 +1219,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1203,6 +1242,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1226,6 +1266,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1248,6 +1289,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1270,6 +1312,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1292,6 +1335,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1314,6 +1358,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1337,6 +1382,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1361,6 +1407,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1384,6 +1431,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1406,6 +1454,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1424,6 +1473,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1444,6 +1494,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1465,6 +1516,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1484,6 +1536,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1504,6 +1557,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1525,6 +1579,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1547,6 +1602,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1570,6 +1626,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1592,6 +1649,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1614,6 +1672,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1636,6 +1695,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1659,6 +1719,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1683,6 +1744,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1706,6 +1768,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1729,6 +1792,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1749,6 +1813,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1770,6 +1835,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1792,6 +1858,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1813,6 +1880,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1834,6 +1902,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1855,6 +1924,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1877,6 +1947,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1900,6 +1971,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1922,6 +1994,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1944,6 +2017,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1966,6 +2040,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -1989,6 +2064,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2013,6 +2089,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2036,6 +2113,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2059,6 +2137,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2079,6 +2158,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2099,6 +2179,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2120,6 +2201,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2142,6 +2224,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2163,6 +2246,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2184,6 +2268,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2205,6 +2290,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2226,6 +2312,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2248,6 +2335,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2271,6 +2359,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2293,6 +2382,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2315,6 +2405,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2337,6 +2428,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2359,6 +2451,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2382,6 +2475,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2406,6 +2500,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2429,6 +2524,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2451,6 +2547,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2470,6 +2567,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2489,6 +2587,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2508,6 +2607,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2527,6 +2627,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2547,6 +2648,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2568,6 +2670,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2589,6 +2692,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2611,6 +2715,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2633,6 +2738,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2655,6 +2761,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2677,6 +2784,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2699,6 +2807,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2722,6 +2831,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2745,6 +2855,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2767,6 +2878,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2786,6 +2898,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2805,6 +2918,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2824,6 +2938,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2843,6 +2958,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2863,6 +2979,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2884,6 +3001,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2905,6 +3023,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2927,6 +3046,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2949,6 +3069,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2971,6 +3092,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2993,6 +3115,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3015,6 +3138,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3038,6 +3162,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3061,6 +3186,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9505,6 +9631,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9526,6 +9653,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9548,6 +9676,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9571,6 +9700,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9593,6 +9723,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9615,6 +9746,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9636,6 +9768,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9658,6 +9791,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9681,6 +9815,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9703,6 +9838,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9725,6 +9861,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9746,6 +9883,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9768,6 +9906,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9791,6 +9930,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9813,6 +9953,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9835,6 +9976,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9857,6 +9999,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9880,6 +10023,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9904,6 +10048,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9927,6 +10072,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9950,6 +10096,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9972,6 +10119,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9995,6 +10143,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10019,6 +10168,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10042,6 +10192,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10065,6 +10216,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10087,6 +10239,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10110,6 +10263,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10134,6 +10288,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10157,6 +10312,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10180,6 +10336,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10201,6 +10358,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10223,6 +10381,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10246,6 +10405,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10268,6 +10428,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10290,6 +10451,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10311,6 +10473,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10333,6 +10496,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10356,6 +10520,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10378,6 +10543,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10400,6 +10566,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10421,6 +10588,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10443,6 +10611,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10466,6 +10635,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10488,6 +10658,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10510,6 +10681,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10532,6 +10704,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10555,6 +10728,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10579,6 +10753,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10602,6 +10777,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10625,6 +10801,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10647,6 +10824,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10670,6 +10848,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10694,6 +10873,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10717,6 +10897,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10740,6 +10921,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10762,6 +10944,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10785,6 +10968,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10809,6 +10993,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10832,6 +11017,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10855,6 +11041,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10876,6 +11063,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10898,6 +11086,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10920,6 +11109,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10942,6 +11132,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10964,6 +11155,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10987,6 +11179,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11010,6 +11203,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11033,6 +11227,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11054,6 +11249,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11076,6 +11272,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11098,6 +11295,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11120,6 +11318,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11142,6 +11341,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11165,6 +11365,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11188,6 +11389,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11210,6 +11412,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID FLAGS access CF: m, PF: m, ZF: m, Valid modes @@ -11231,6 +11434,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID FLAGS access CF: m, PF: m, ZF: m, Valid modes @@ -11251,6 +11455,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID FLAGS access CF: m, PF: m, ZF: m, Valid modes @@ -11272,6 +11477,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID FLAGS access CF: m, PF: m, ZF: m, Valid modes @@ -11293,6 +11499,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID FLAGS access CF: m, PF: m, ZF: m, Valid modes @@ -11314,6 +11521,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID FLAGS access CF: m, PF: m, ZF: m, Valid modes @@ -11335,6 +11543,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID FLAGS access CF: m, PF: m, ZF: m, Valid modes @@ -11355,6 +11564,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID FLAGS access CF: m, PF: m, ZF: m, Valid modes @@ -11376,6 +11586,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID FLAGS access CF: m, PF: m, ZF: m, Valid modes @@ -11397,6 +11608,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID FLAGS access CF: m, PF: m, ZF: m, Valid modes @@ -12829,6 +13041,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12846,6 +13059,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12865,6 +13079,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12885,6 +13100,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12903,6 +13119,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12922,6 +13139,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12942,6 +13160,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12963,6 +13182,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12985,6 +13205,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13006,6 +13227,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13027,6 +13249,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13048,6 +13271,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13070,6 +13294,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13093,6 +13318,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13115,6 +13341,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13137,6 +13364,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13156,6 +13384,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13176,6 +13405,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13197,6 +13427,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13217,6 +13448,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13237,6 +13469,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13257,6 +13490,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13278,6 +13512,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13300,6 +13535,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13321,6 +13557,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13342,6 +13579,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13363,6 +13601,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13385,6 +13624,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13408,6 +13648,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13430,6 +13671,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13452,6 +13694,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13471,6 +13714,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13490,6 +13734,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13510,6 +13755,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13531,6 +13777,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13551,6 +13798,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13571,6 +13819,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13591,6 +13840,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13611,6 +13861,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13632,6 +13883,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13654,6 +13906,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13675,6 +13928,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13696,6 +13950,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13717,6 +13972,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13738,6 +13994,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13760,6 +14017,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13783,6 +14041,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13805,6 +14064,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13826,6 +14086,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13843,6 +14104,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13860,6 +14122,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13879,6 +14142,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13900,6 +14164,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13920,6 +14185,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13938,6 +14204,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13957,6 +14224,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13977,6 +14245,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13997,6 +14266,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14019,6 +14289,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14041,6 +14312,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14062,6 +14334,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14083,6 +14356,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14106,6 +14380,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14129,6 +14404,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14148,6 +14424,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14167,6 +14444,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14187,6 +14465,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14208,6 +14487,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14228,6 +14508,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14248,6 +14529,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14268,6 +14550,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14288,6 +14571,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14309,6 +14593,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14331,6 +14616,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14352,6 +14638,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14373,6 +14660,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14394,6 +14682,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14415,6 +14704,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14437,6 +14727,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14460,6 +14751,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14482,6 +14774,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14503,6 +14796,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14520,6 +14814,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14537,6 +14832,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14556,6 +14852,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14577,6 +14874,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14597,6 +14895,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14615,6 +14914,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14634,6 +14934,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14654,6 +14955,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14674,6 +14976,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14696,6 +14999,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14718,6 +15022,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14739,6 +15044,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14760,6 +15066,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14783,6 +15090,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14806,6 +15114,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14825,6 +15134,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14844,6 +15154,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14864,6 +15175,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14885,6 +15197,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14905,6 +15218,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14925,6 +15239,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14945,6 +15260,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14965,6 +15281,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14986,6 +15303,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15008,6 +15326,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15029,6 +15348,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15050,6 +15370,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15071,6 +15392,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15092,6 +15414,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15114,6 +15437,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15137,6 +15461,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15159,6 +15484,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15181,6 +15507,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15200,6 +15527,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15219,6 +15547,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15240,6 +15569,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15261,6 +15591,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15281,6 +15612,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15301,6 +15633,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15323,6 +15656,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15345,6 +15679,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15366,6 +15701,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15387,6 +15723,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15410,6 +15747,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15433,6 +15771,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15452,6 +15791,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15471,6 +15811,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15491,6 +15832,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15512,6 +15854,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15532,6 +15875,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15552,6 +15896,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15572,6 +15917,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15592,6 +15938,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15613,6 +15960,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15635,6 +15983,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15656,6 +16005,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15677,6 +16027,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15698,6 +16049,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15719,6 +16071,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15741,6 +16094,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15764,6 +16118,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15786,6 +16141,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15807,6 +16163,7 @@ ISA Set: F16C, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 29 Exception class: SSE/VEX, exception type: 11 + SIMD Exceptions: I Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15824,6 +16181,7 @@ ISA Set: F16C, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 29 Exception class: SSE/VEX, exception type: 11 + SIMD Exceptions: I Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15842,6 +16200,7 @@ ISA Set: F16C, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 29 Exception class: SSE/VEX, exception type: 11 + SIMD Exceptions: I Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15860,6 +16219,7 @@ ISA Set: F16C, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 29 Exception class: SSE/VEX, exception type: 11 + SIMD Exceptions: I Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15879,6 +16239,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Mem Exception class: EVEX, exception type: E11 + SIMD Exceptions: I Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15899,6 +16260,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Mem Exception class: EVEX, exception type: E11 + SIMD Exceptions: I Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15920,6 +16282,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Mem Exception class: EVEX, exception type: E11 + SIMD Exceptions: I Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15941,6 +16304,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Mem Exception class: EVEX, exception type: E11 + SIMD Exceptions: I Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15962,6 +16326,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Mem Exception class: EVEX, exception type: E11 + SIMD Exceptions: I Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15983,6 +16348,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Mem Exception class: EVEX, exception type: E11 + SIMD Exceptions: I Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16005,6 +16371,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Mem Exception class: EVEX, exception type: E11 + SIMD Exceptions: I Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16027,6 +16394,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Mem Exception class: EVEX, exception type: E11 + SIMD Exceptions: I Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16049,6 +16417,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Mem Exception class: EVEX, exception type: E11 + SIMD Exceptions: I Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16068,6 +16437,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Mem Exception class: EVEX, exception type: E11 + SIMD Exceptions: I Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16088,6 +16458,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Mem Exception class: EVEX, exception type: E11 + SIMD Exceptions: I Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16108,6 +16479,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Mem Exception class: EVEX, exception type: E11 + SIMD Exceptions: I Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16128,6 +16500,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Mem Exception class: EVEX, exception type: E11 + SIMD Exceptions: I Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16148,6 +16521,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Mem Exception class: EVEX, exception type: E11 + SIMD Exceptions: I Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16169,6 +16543,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Mem Exception class: EVEX, exception type: E11 + SIMD Exceptions: I Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16190,6 +16565,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Mem Exception class: EVEX, exception type: E11 + SIMD Exceptions: I Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16211,6 +16587,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Mem Exception class: EVEX, exception type: E11 + SIMD Exceptions: I Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16232,6 +16609,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Mem Exception class: EVEX, exception type: E11 + SIMD Exceptions: I Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16254,6 +16632,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Mem Exception class: EVEX, exception type: E11 + SIMD Exceptions: I Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16276,6 +16655,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Mem Exception class: EVEX, exception type: E11 + SIMD Exceptions: I Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16298,6 +16678,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Mem Exception class: EVEX, exception type: E11 + SIMD Exceptions: I Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16317,6 +16698,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Mem Exception class: EVEX, exception type: E11 + SIMD Exceptions: I Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16336,6 +16718,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Mem Exception class: EVEX, exception type: E11 + SIMD Exceptions: I Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16356,6 +16739,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Mem Exception class: EVEX, exception type: E11 + SIMD Exceptions: I Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16376,6 +16760,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Mem Exception class: EVEX, exception type: E11 + SIMD Exceptions: I Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16396,6 +16781,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Mem Exception class: EVEX, exception type: E11 + SIMD Exceptions: I Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16416,6 +16802,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Mem Exception class: EVEX, exception type: E11 + SIMD Exceptions: I Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16436,6 +16823,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Mem Exception class: EVEX, exception type: E11 + SIMD Exceptions: I Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16457,6 +16845,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Mem Exception class: EVEX, exception type: E11 + SIMD Exceptions: I Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16478,6 +16867,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Mem Exception class: EVEX, exception type: E11 + SIMD Exceptions: I Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16499,6 +16889,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Mem Exception class: EVEX, exception type: E11 + SIMD Exceptions: I Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16520,6 +16911,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Mem Exception class: EVEX, exception type: E11 + SIMD Exceptions: I Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16541,6 +16933,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Mem Exception class: EVEX, exception type: E11 + SIMD Exceptions: I Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16563,6 +16956,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Mem Exception class: EVEX, exception type: E11 + SIMD Exceptions: I Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16585,6 +16979,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Mem Exception class: EVEX, exception type: E11 + SIMD Exceptions: I Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16606,6 +17001,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16623,6 +17019,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16642,6 +17039,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16662,6 +17060,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16680,6 +17079,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16699,6 +17099,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16719,6 +17120,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16740,6 +17142,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16762,6 +17165,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16783,6 +17187,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16804,6 +17209,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16825,6 +17231,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16847,6 +17254,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16870,6 +17278,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16892,6 +17301,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16914,6 +17324,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16933,6 +17344,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16953,6 +17365,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16974,6 +17387,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16994,6 +17408,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17014,6 +17429,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17034,6 +17450,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17055,6 +17472,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17077,6 +17495,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17098,6 +17517,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17119,6 +17539,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17140,6 +17561,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17162,6 +17584,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17185,6 +17608,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17207,6 +17631,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17229,6 +17654,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17248,6 +17674,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17267,6 +17694,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17287,6 +17715,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17308,6 +17737,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17328,6 +17758,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17348,6 +17779,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17368,6 +17800,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17388,6 +17821,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17409,6 +17843,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17431,6 +17866,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17452,6 +17888,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17473,6 +17910,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17494,6 +17932,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17515,6 +17954,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17537,6 +17977,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17560,6 +18001,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17582,6 +18024,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17603,6 +18046,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17620,6 +18064,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17639,6 +18084,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17659,6 +18105,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17677,6 +18124,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17696,6 +18144,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17716,6 +18165,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17737,6 +18187,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17759,6 +18210,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17780,6 +18232,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17801,6 +18254,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17822,6 +18276,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17844,6 +18299,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17867,6 +18323,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17889,6 +18346,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17911,6 +18369,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17930,6 +18389,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17950,6 +18410,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17971,6 +18432,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17991,6 +18453,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18011,6 +18474,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18031,6 +18495,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18052,6 +18517,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18074,6 +18540,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18095,6 +18562,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18116,6 +18584,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18137,6 +18606,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18159,6 +18629,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18182,6 +18653,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18204,6 +18676,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18226,6 +18699,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18245,6 +18719,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18264,6 +18739,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18284,6 +18760,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18305,6 +18782,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18325,6 +18803,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18345,6 +18824,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18365,6 +18845,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18385,6 +18866,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18406,6 +18888,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18428,6 +18911,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18449,6 +18933,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18470,6 +18955,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18491,6 +18977,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18512,6 +18999,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18534,6 +19022,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18557,6 +19046,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18579,6 +19069,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18600,6 +19091,7 @@ ISA Set: F16C, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 29 Exception class: SSE/VEX, exception type: 11 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18619,6 +19111,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Mem Exception class: EVEX, exception type: E11 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18639,6 +19132,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Mem Exception class: EVEX, exception type: E11 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18658,6 +19152,7 @@ ISA Set: F16C, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 29 Exception class: SSE/VEX, exception type: 11 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18678,6 +19173,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Mem Exception class: EVEX, exception type: E11 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18699,6 +19195,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Mem Exception class: EVEX, exception type: E11 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18719,6 +19216,7 @@ ISA Set: F16C, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 29 Exception class: SSE/VEX, exception type: 11 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18739,6 +19237,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Mem Exception class: EVEX, exception type: E11 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18760,6 +19259,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Mem Exception class: EVEX, exception type: E11 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18780,6 +19280,7 @@ ISA Set: F16C, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 29 Exception class: SSE/VEX, exception type: 11 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18800,6 +19301,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Mem Exception class: EVEX, exception type: E11 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18821,6 +19323,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Half Mem Exception class: EVEX, exception type: E11 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18842,6 +19345,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18861,6 +19365,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18881,6 +19386,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18902,6 +19408,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18922,6 +19429,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18942,6 +19450,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18962,6 +19471,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18983,6 +19493,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19005,6 +19516,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19026,6 +19538,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19047,6 +19560,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19068,6 +19582,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19090,6 +19605,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19113,6 +19629,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19135,6 +19652,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19157,6 +19675,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19176,6 +19695,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19196,6 +19716,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19217,6 +19738,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19237,6 +19759,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19257,6 +19780,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19277,6 +19801,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19298,6 +19823,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19320,6 +19846,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19341,6 +19868,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19362,6 +19890,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19383,6 +19912,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19405,6 +19935,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19428,6 +19959,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19450,6 +19982,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19472,6 +20005,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19491,6 +20025,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19510,6 +20045,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19530,6 +20066,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19551,6 +20088,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19571,6 +20109,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19591,6 +20130,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19611,6 +20151,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19631,6 +20172,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19652,6 +20194,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19674,6 +20217,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19695,6 +20239,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19716,6 +20261,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19737,6 +20283,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19758,6 +20305,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19780,6 +20328,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19803,6 +20352,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19825,6 +20375,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19846,6 +20397,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19864,6 +20416,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Fixes Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19881,6 +20434,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19899,6 +20453,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19917,6 +20472,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19935,6 +20491,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19953,6 +20510,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Fixes Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19970,6 +20528,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19988,6 +20547,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20006,6 +20566,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20024,6 +20585,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20043,6 +20605,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20062,6 +20625,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20081,6 +20645,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20100,6 +20665,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20120,6 +20686,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20141,6 +20708,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20162,6 +20730,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20184,6 +20753,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20206,6 +20776,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20228,6 +20799,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20250,6 +20822,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20272,6 +20845,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20295,6 +20869,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20318,6 +20893,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20341,6 +20917,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Fixes Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20359,6 +20936,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Fixes Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20377,6 +20955,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Fixes Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20396,6 +20975,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Fixes Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20415,6 +20995,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Fixes Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20434,6 +21015,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Fixes Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20452,6 +21034,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Fixes Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20470,6 +21053,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Fixes Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20489,6 +21073,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Fixes Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20508,6 +21093,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Fixes Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20526,6 +21112,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20544,6 +21131,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20562,6 +21150,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20581,6 +21170,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20600,6 +21190,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20618,6 +21209,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20636,6 +21228,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20655,6 +21248,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20674,6 +21268,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20692,6 +21287,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20710,6 +21306,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20729,6 +21326,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20748,6 +21346,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20767,6 +21366,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20786,6 +21386,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20805,6 +21406,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20824,6 +21426,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20844,6 +21447,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20865,6 +21469,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20886,6 +21491,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20908,6 +21514,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20930,6 +21537,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20952,6 +21560,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20974,6 +21583,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20996,6 +21606,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21019,6 +21630,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21042,6 +21654,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21064,6 +21677,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21082,6 +21696,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Fixes Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21099,6 +21714,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21117,6 +21733,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21135,6 +21752,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21153,6 +21771,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21171,6 +21790,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Fixes Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21188,6 +21808,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21206,6 +21827,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21224,6 +21846,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21243,6 +21866,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Fixes Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21261,6 +21885,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Fixes Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21279,6 +21904,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Fixes Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21298,6 +21924,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Fixes Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21317,6 +21944,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Fixes Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21336,6 +21964,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Fixes Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21354,6 +21983,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Fixes Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21372,6 +22002,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Fixes Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21391,6 +22022,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Fixes Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21410,6 +22042,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Fixes Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21428,6 +22061,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21445,6 +22079,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21462,6 +22097,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21481,6 +22117,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21502,6 +22139,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21522,6 +22160,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21540,6 +22179,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21559,6 +22199,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21579,6 +22220,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21599,6 +22241,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21621,6 +22264,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21643,6 +22287,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21664,6 +22309,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21685,6 +22331,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21708,6 +22355,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21731,6 +22379,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21750,6 +22399,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21769,6 +22419,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21789,6 +22440,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21810,6 +22462,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21830,6 +22483,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21850,6 +22504,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21870,6 +22525,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21890,6 +22546,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21911,6 +22568,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21933,6 +22591,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21954,6 +22613,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21975,6 +22635,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21996,6 +22657,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22017,6 +22679,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22039,6 +22702,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22062,6 +22726,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22084,6 +22749,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22106,6 +22772,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22125,6 +22792,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22144,6 +22812,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22165,6 +22834,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22186,6 +22856,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22206,6 +22877,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22226,6 +22898,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22248,6 +22921,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22270,6 +22944,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22291,6 +22966,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22312,6 +22988,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22335,6 +23012,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22358,6 +23036,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22377,6 +23056,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22396,6 +23076,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22416,6 +23097,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22437,6 +23119,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22457,6 +23140,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22477,6 +23161,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22497,6 +23182,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22517,6 +23203,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22538,6 +23225,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22560,6 +23248,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22581,6 +23270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22602,6 +23292,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22623,6 +23314,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22644,6 +23336,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22666,6 +23359,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22689,6 +23383,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22711,6 +23406,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22732,6 +23428,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22749,6 +23446,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22768,6 +23466,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22788,6 +23487,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22806,6 +23506,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22825,6 +23526,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22845,6 +23547,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22866,6 +23569,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22888,6 +23592,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22909,6 +23614,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22930,6 +23636,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22951,6 +23658,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22973,6 +23681,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22996,6 +23705,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23018,6 +23728,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23040,6 +23751,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23059,6 +23771,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23079,6 +23792,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23100,6 +23814,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23120,6 +23835,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23140,6 +23856,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23160,6 +23877,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23181,6 +23899,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23203,6 +23922,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23224,6 +23944,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23245,6 +23966,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23266,6 +23988,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23288,6 +24011,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23311,6 +24035,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23333,6 +24058,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23355,6 +24081,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23374,6 +24101,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23393,6 +24121,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23413,6 +24142,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23434,6 +24164,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23454,6 +24185,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23474,6 +24206,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23494,6 +24227,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23514,6 +24248,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23535,6 +24270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23557,6 +24293,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23578,6 +24315,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23599,6 +24337,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23620,6 +24359,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23641,6 +24381,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23663,6 +24404,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23686,6 +24428,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23708,6 +24451,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23730,6 +24474,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23749,6 +24494,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23769,6 +24515,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23790,6 +24537,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23810,6 +24558,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23830,6 +24579,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23850,6 +24600,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23871,6 +24622,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23893,6 +24645,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23914,6 +24667,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23935,6 +24689,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23956,6 +24711,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23978,6 +24734,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24001,6 +24758,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24023,6 +24781,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24045,6 +24804,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24064,6 +24824,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24084,6 +24845,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24105,6 +24867,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24125,6 +24888,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24145,6 +24909,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24165,6 +24930,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24186,6 +24952,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24208,6 +24975,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24229,6 +24997,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24250,6 +25019,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24271,6 +25041,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24293,6 +25064,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24316,6 +25088,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24338,6 +25111,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24360,6 +25134,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24379,6 +25154,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24398,6 +25174,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24418,6 +25195,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24439,6 +25217,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24459,6 +25238,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24479,6 +25259,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24499,6 +25280,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24519,6 +25301,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24540,6 +25323,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24562,6 +25346,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24583,6 +25368,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24604,6 +25390,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24625,6 +25412,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24646,6 +25434,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24668,6 +25457,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24691,6 +25481,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24713,6 +25504,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24734,6 +25526,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24752,6 +25545,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Fixes Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24769,6 +25563,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24787,6 +25582,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24805,6 +25601,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24823,6 +25620,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24841,6 +25639,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Fixes Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24858,6 +25657,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24876,6 +25676,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24894,6 +25695,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24913,6 +25715,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Fixes Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24931,6 +25734,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Fixes Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24949,6 +25753,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Fixes Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24968,6 +25773,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Fixes Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24987,6 +25793,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Fixes Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25006,6 +25813,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Fixes Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25024,6 +25832,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Fixes Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25042,6 +25851,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Fixes Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25061,6 +25871,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Fixes Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25080,6 +25891,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Fixes Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25098,6 +25910,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25116,6 +25929,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Fixes Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25133,6 +25947,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25151,6 +25966,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25169,6 +25985,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25187,6 +26004,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25205,6 +26023,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Fixes Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25222,6 +26041,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25240,6 +26060,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25258,6 +26079,7 @@ ISA Set: AVX, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25277,6 +26099,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Fixes Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25295,6 +26118,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Fixes Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25313,6 +26137,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Fixes Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25332,6 +26157,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Fixes Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25351,6 +26177,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Fixes Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25370,6 +26197,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Fixes Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25388,6 +26216,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Fixes Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25406,6 +26235,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Fixes Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25425,6 +26255,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Fixes Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25444,6 +26275,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Fixes Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26408,6 +27240,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26427,6 +27260,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26447,6 +27281,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26468,6 +27303,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26488,6 +27324,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26508,6 +27345,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26528,6 +27366,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26549,6 +27388,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26571,6 +27411,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26592,6 +27433,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26613,6 +27455,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26634,6 +27477,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26656,6 +27500,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26679,6 +27524,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26701,6 +27547,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26723,6 +27570,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26742,6 +27590,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26762,6 +27611,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26783,6 +27633,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26803,6 +27654,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26823,6 +27675,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26843,6 +27696,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26864,6 +27718,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26886,6 +27741,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26907,6 +27763,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26928,6 +27785,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26949,6 +27807,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26971,6 +27830,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26994,6 +27854,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27016,6 +27877,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27038,6 +27900,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27057,6 +27920,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27076,6 +27940,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27096,6 +27961,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27117,6 +27983,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27137,6 +28004,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27157,6 +28025,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27177,6 +28046,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27197,6 +28067,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27218,6 +28089,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27240,6 +28112,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27261,6 +28134,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27282,6 +28156,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27303,6 +28178,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27324,6 +28200,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27346,6 +28223,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27369,6 +28247,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27391,6 +28270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27413,6 +28293,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E10NF + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27451,6 +28332,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E10NF + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27489,6 +28371,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27508,6 +28391,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27526,6 +28410,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27544,6 +28429,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27564,6 +28450,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27585,6 +28472,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27604,6 +28492,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27624,6 +28513,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27645,6 +28535,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27667,6 +28558,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27690,6 +28582,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27712,6 +28605,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27734,6 +28628,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27756,6 +28651,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27779,6 +28675,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27803,6 +28700,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27826,6 +28724,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27849,6 +28748,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27869,6 +28769,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27890,6 +28791,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27912,6 +28814,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27933,6 +28836,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27954,6 +28858,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27975,6 +28880,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27997,6 +28903,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28020,6 +28927,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28042,6 +28950,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28064,6 +28973,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28086,6 +28996,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28109,6 +29020,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28133,6 +29045,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28156,6 +29069,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28179,6 +29093,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28199,6 +29114,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28219,6 +29135,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28240,6 +29157,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28262,6 +29180,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28283,6 +29202,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28304,6 +29224,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28325,6 +29246,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28346,6 +29268,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28368,6 +29291,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28391,6 +29315,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28413,6 +29338,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28435,6 +29361,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28457,6 +29384,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28479,6 +29407,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28502,6 +29431,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28526,6 +29456,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28549,6 +29480,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28571,6 +29503,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28589,6 +29522,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28609,6 +29543,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28630,6 +29565,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28649,6 +29585,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28669,6 +29606,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28690,6 +29628,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28712,6 +29651,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28735,6 +29675,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28757,6 +29698,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28779,6 +29721,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28801,6 +29744,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28824,6 +29768,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28848,6 +29793,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28871,6 +29817,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28894,6 +29841,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28914,6 +29862,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28935,6 +29884,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28957,6 +29907,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28978,6 +29929,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28999,6 +29951,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29020,6 +29973,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29042,6 +29996,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29065,6 +30020,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29087,6 +30043,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29109,6 +30066,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29131,6 +30089,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29154,6 +30113,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29178,6 +30138,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29201,6 +30162,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29224,6 +30186,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29244,6 +30207,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29264,6 +30228,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29285,6 +30250,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29307,6 +30273,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29328,6 +30295,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29349,6 +30317,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29370,6 +30339,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29391,6 +30361,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29413,6 +30384,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29436,6 +30408,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29458,6 +30431,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29480,6 +30454,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29502,6 +30477,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29524,6 +30500,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29547,6 +30524,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29571,6 +30549,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29594,6 +30573,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29616,6 +30596,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29635,6 +30616,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29654,6 +30636,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29673,6 +30656,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29692,6 +30676,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29712,6 +30697,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29733,6 +30719,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29754,6 +30741,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29776,6 +30764,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29798,6 +30787,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29820,6 +30810,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29842,6 +30833,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29864,6 +30856,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29887,6 +30880,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29910,6 +30904,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29932,6 +30927,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29951,6 +30947,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29970,6 +30967,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29989,6 +30987,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30008,6 +31007,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30028,6 +31028,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30049,6 +31050,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30070,6 +31072,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30092,6 +31095,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30114,6 +31118,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30136,6 +31141,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30158,6 +31164,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30180,6 +31187,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30203,6 +31211,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30226,6 +31235,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32335,6 +33345,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32356,6 +33367,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32378,6 +33390,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32401,6 +33414,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32423,6 +33437,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32445,6 +33460,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32467,6 +33483,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32490,6 +33507,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32514,6 +33532,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32537,6 +33556,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32560,6 +33580,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32583,6 +33604,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32607,6 +33629,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32632,6 +33655,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32656,6 +33680,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32680,6 +33705,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32701,6 +33727,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32723,6 +33750,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32746,6 +33774,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32768,6 +33797,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32790,6 +33820,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32812,6 +33843,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32835,6 +33867,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32859,6 +33892,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32882,6 +33916,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32905,6 +33940,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32928,6 +33964,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32952,6 +33989,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32977,6 +34015,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33001,6 +34040,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33025,6 +34065,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33046,6 +34087,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33068,6 +34110,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33091,6 +34134,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33113,6 +34157,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33135,6 +34180,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33157,6 +34203,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33180,6 +34227,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33204,6 +34252,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33227,6 +34276,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33250,6 +34300,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33273,6 +34324,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33297,6 +34349,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33322,6 +34375,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33346,6 +34400,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33370,6 +34425,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33391,6 +34447,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33413,6 +34470,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33436,6 +34494,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33458,6 +34517,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33480,6 +34540,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33502,6 +34563,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33525,6 +34587,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33549,6 +34612,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33572,6 +34636,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33595,6 +34660,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33618,6 +34684,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33642,6 +34709,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33667,6 +34735,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33691,6 +34760,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33715,6 +34785,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33736,6 +34807,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33758,6 +34830,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33781,6 +34854,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33803,6 +34877,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33825,6 +34900,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33847,6 +34923,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33870,6 +34947,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33894,6 +34972,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33917,6 +34996,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33940,6 +35020,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33963,6 +35044,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33987,6 +35069,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34012,6 +35095,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34036,6 +35120,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34060,6 +35145,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34081,6 +35167,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34103,6 +35190,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34126,6 +35214,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34148,6 +35237,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34170,6 +35260,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34192,6 +35283,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34215,6 +35307,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34239,6 +35332,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34262,6 +35356,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34285,6 +35380,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34308,6 +35404,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34332,6 +35429,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34357,6 +35455,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34381,6 +35480,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34405,6 +35505,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34426,6 +35527,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34448,6 +35550,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34470,6 +35573,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34492,6 +35596,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34514,6 +35619,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34537,6 +35643,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34560,6 +35667,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34583,6 +35691,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34606,6 +35715,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34630,6 +35740,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34654,6 +35765,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34678,6 +35790,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34699,6 +35812,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34721,6 +35835,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34743,6 +35858,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34765,6 +35881,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34787,6 +35904,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34810,6 +35928,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34833,6 +35952,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34856,6 +35976,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34879,6 +36000,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34903,6 +36025,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34927,6 +36050,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IZ Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34950,6 +36074,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34968,6 +36093,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34988,6 +36114,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35009,6 +36136,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35028,6 +36156,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35048,6 +36177,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35069,6 +36199,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35091,6 +36222,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35114,6 +36246,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35136,6 +36269,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35158,6 +36292,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35180,6 +36315,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35203,6 +36339,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35227,6 +36364,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35250,6 +36388,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35273,6 +36412,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35293,6 +36433,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35314,6 +36455,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35336,6 +36478,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35357,6 +36500,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35378,6 +36522,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35399,6 +36544,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35421,6 +36567,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35444,6 +36591,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35466,6 +36614,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35488,6 +36637,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35510,6 +36660,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35533,6 +36684,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35557,6 +36709,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35580,6 +36733,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35603,6 +36757,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35623,6 +36778,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35643,6 +36799,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35664,6 +36821,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35686,6 +36844,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35707,6 +36866,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35728,6 +36888,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35749,6 +36910,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35770,6 +36932,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35792,6 +36955,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35815,6 +36979,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35837,6 +37002,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35859,6 +37025,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35881,6 +37048,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35903,6 +37071,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35926,6 +37095,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35950,6 +37120,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35973,6 +37144,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35995,6 +37167,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36013,6 +37186,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36033,6 +37207,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36054,6 +37229,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36073,6 +37249,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36093,6 +37270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36114,6 +37292,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36136,6 +37315,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36159,6 +37339,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36181,6 +37362,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36203,6 +37385,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36225,6 +37408,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36248,6 +37432,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36272,6 +37457,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36295,6 +37481,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36318,6 +37505,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36338,6 +37526,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36359,6 +37548,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36381,6 +37571,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36402,6 +37593,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36423,6 +37615,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36444,6 +37637,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36466,6 +37660,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36489,6 +37684,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36511,6 +37707,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36533,6 +37730,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36555,6 +37753,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36578,6 +37777,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36602,6 +37802,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36625,6 +37826,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36648,6 +37850,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36668,6 +37871,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36688,6 +37892,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36709,6 +37914,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36731,6 +37937,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36752,6 +37959,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36773,6 +37981,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36794,6 +38003,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36815,6 +38025,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36837,6 +38048,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36860,6 +38072,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36882,6 +38095,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36904,6 +38118,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36926,6 +38141,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36948,6 +38164,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36971,6 +38188,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36995,6 +38213,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37018,6 +38237,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37040,6 +38260,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37059,6 +38280,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37078,6 +38300,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37097,6 +38320,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37116,6 +38340,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37136,6 +38361,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37157,6 +38383,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37178,6 +38405,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37200,6 +38428,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37222,6 +38451,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37244,6 +38474,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37266,6 +38497,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37288,6 +38520,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37311,6 +38544,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37334,6 +38568,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37356,6 +38591,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37375,6 +38611,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37394,6 +38631,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37413,6 +38651,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37432,6 +38671,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37452,6 +38692,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37473,6 +38714,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37494,6 +38736,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37516,6 +38759,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37538,6 +38782,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37560,6 +38805,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37582,6 +38828,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37604,6 +38851,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37627,6 +38875,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37650,6 +38899,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37672,6 +38922,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37690,6 +38941,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37710,6 +38962,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37731,6 +38984,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37750,6 +39004,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37770,6 +39025,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37791,6 +39047,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37813,6 +39070,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37836,6 +39094,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37858,6 +39117,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37880,6 +39140,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37902,6 +39163,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37925,6 +39187,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37949,6 +39212,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37972,6 +39236,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37995,6 +39260,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38015,6 +39281,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38036,6 +39303,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38058,6 +39326,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38079,6 +39348,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38100,6 +39370,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38121,6 +39392,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38143,6 +39415,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38166,6 +39439,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38188,6 +39462,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38210,6 +39485,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38232,6 +39508,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38255,6 +39532,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38279,6 +39557,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38302,6 +39581,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38325,6 +39605,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38345,6 +39626,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38365,6 +39647,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38386,6 +39669,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38408,6 +39692,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38429,6 +39714,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38450,6 +39736,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38471,6 +39758,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38492,6 +39780,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38514,6 +39803,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38537,6 +39827,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38559,6 +39850,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38581,6 +39873,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38603,6 +39896,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38625,6 +39919,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38648,6 +39943,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38672,6 +39968,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38695,6 +39992,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38717,6 +40015,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38735,6 +40034,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38755,6 +40055,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38776,6 +40077,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38795,6 +40097,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38815,6 +40118,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38836,6 +40140,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38858,6 +40163,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38881,6 +40187,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38903,6 +40210,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38925,6 +40233,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38947,6 +40256,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38970,6 +40280,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38994,6 +40305,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39017,6 +40329,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39040,6 +40353,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39060,6 +40374,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39081,6 +40396,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39103,6 +40419,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39124,6 +40441,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39145,6 +40463,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39166,6 +40485,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39188,6 +40508,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39211,6 +40532,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39233,6 +40555,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39255,6 +40578,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39277,6 +40601,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39300,6 +40625,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39324,6 +40650,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39347,6 +40674,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39370,6 +40698,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39390,6 +40719,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39410,6 +40740,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39431,6 +40762,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39453,6 +40785,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39474,6 +40807,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39495,6 +40829,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39516,6 +40851,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39537,6 +40873,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39559,6 +40896,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39582,6 +40920,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39604,6 +40943,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39626,6 +40966,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39648,6 +40989,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39670,6 +41012,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39693,6 +41036,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39717,6 +41061,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39740,6 +41085,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39762,6 +41108,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39781,6 +41128,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39800,6 +41148,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39819,6 +41168,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39838,6 +41188,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39858,6 +41209,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39879,6 +41231,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39900,6 +41253,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39922,6 +41276,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39944,6 +41299,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39966,6 +41322,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39988,6 +41345,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40010,6 +41368,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40033,6 +41392,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40056,6 +41416,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40078,6 +41439,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40097,6 +41459,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40116,6 +41479,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40135,6 +41499,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40154,6 +41519,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40174,6 +41540,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40195,6 +41562,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40216,6 +41584,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40238,6 +41607,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40260,6 +41630,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40282,6 +41653,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40304,6 +41676,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40326,6 +41699,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40349,6 +41723,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40372,6 +41747,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40394,6 +41770,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40412,6 +41789,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40432,6 +41810,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40453,6 +41832,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40472,6 +41852,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40492,6 +41873,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40513,6 +41895,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40535,6 +41918,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40558,6 +41942,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40580,6 +41965,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40602,6 +41988,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40624,6 +42011,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40647,6 +42035,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40671,6 +42060,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40694,6 +42084,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40717,6 +42108,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40737,6 +42129,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40758,6 +42151,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40780,6 +42174,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40801,6 +42196,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40822,6 +42218,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40843,6 +42240,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40865,6 +42263,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40888,6 +42287,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40910,6 +42310,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40932,6 +42333,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40954,6 +42356,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40977,6 +42380,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41001,6 +42405,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41024,6 +42429,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41047,6 +42453,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41067,6 +42474,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41087,6 +42495,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41108,6 +42517,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41130,6 +42540,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41151,6 +42562,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41172,6 +42584,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41193,6 +42606,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41214,6 +42628,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41236,6 +42651,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41259,6 +42675,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41281,6 +42698,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41303,6 +42721,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41325,6 +42744,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41347,6 +42767,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41370,6 +42791,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41394,6 +42816,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41417,6 +42840,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41439,6 +42863,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41457,6 +42882,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41477,6 +42903,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41498,6 +42925,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41517,6 +42945,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41537,6 +42966,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41558,6 +42988,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41580,6 +43011,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41603,6 +43035,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41625,6 +43058,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41647,6 +43081,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41669,6 +43104,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41692,6 +43128,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41716,6 +43153,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41739,6 +43177,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41762,6 +43201,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41782,6 +43222,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41803,6 +43244,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41825,6 +43267,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41846,6 +43289,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41867,6 +43311,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41888,6 +43333,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41910,6 +43356,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41933,6 +43380,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41955,6 +43403,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41977,6 +43426,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41999,6 +43449,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42022,6 +43473,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42046,6 +43498,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42069,6 +43522,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42092,6 +43546,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42112,6 +43567,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42132,6 +43588,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42153,6 +43610,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42175,6 +43633,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42196,6 +43655,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42217,6 +43677,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42238,6 +43699,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42259,6 +43721,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42281,6 +43744,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42304,6 +43768,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42326,6 +43791,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42348,6 +43814,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42370,6 +43837,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42392,6 +43860,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42415,6 +43884,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42439,6 +43909,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42462,6 +43933,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42484,6 +43956,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42503,6 +43976,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42522,6 +43996,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42541,6 +44016,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42560,6 +44036,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42580,6 +44057,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42601,6 +44079,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42622,6 +44101,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42644,6 +44124,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42666,6 +44147,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42688,6 +44170,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42710,6 +44193,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42732,6 +44216,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42755,6 +44240,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42778,6 +44264,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42800,6 +44287,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42819,6 +44307,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42838,6 +44327,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42857,6 +44347,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42876,6 +44367,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42896,6 +44388,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42917,6 +44410,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42938,6 +44432,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42960,6 +44455,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42982,6 +44478,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43004,6 +44501,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43026,6 +44524,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43048,6 +44547,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43071,6 +44571,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43094,6 +44595,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43116,6 +44618,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43134,6 +44637,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43154,6 +44658,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43175,6 +44680,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43194,6 +44700,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43214,6 +44721,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43235,6 +44743,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43257,6 +44766,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43280,6 +44790,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43302,6 +44813,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43324,6 +44836,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43346,6 +44859,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43369,6 +44883,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43393,6 +44908,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43416,6 +44932,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43439,6 +44956,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43459,6 +44977,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43480,6 +44999,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43502,6 +45022,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43523,6 +45044,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43544,6 +45066,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43565,6 +45088,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43587,6 +45111,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43610,6 +45135,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43632,6 +45158,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43654,6 +45181,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43676,6 +45204,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43699,6 +45228,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43723,6 +45253,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43746,6 +45277,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43769,6 +45301,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43789,6 +45322,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43809,6 +45343,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43830,6 +45365,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43852,6 +45388,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43873,6 +45410,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43894,6 +45432,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43915,6 +45454,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43936,6 +45476,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43958,6 +45499,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43981,6 +45523,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44003,6 +45546,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44025,6 +45569,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44047,6 +45592,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44069,6 +45615,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44092,6 +45639,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44116,6 +45664,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44139,6 +45688,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44161,6 +45711,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44179,6 +45730,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44199,6 +45751,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44220,6 +45773,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44239,6 +45793,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44259,6 +45814,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44280,6 +45836,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44302,6 +45859,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44325,6 +45883,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44347,6 +45906,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44369,6 +45929,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44391,6 +45952,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44414,6 +45976,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44438,6 +46001,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44461,6 +46025,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44484,6 +46049,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44504,6 +46070,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44525,6 +46092,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44547,6 +46115,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44568,6 +46137,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44589,6 +46159,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44610,6 +46181,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44632,6 +46204,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44655,6 +46228,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44677,6 +46251,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44699,6 +46274,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44721,6 +46297,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44744,6 +46321,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44768,6 +46346,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44791,6 +46370,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44814,6 +46394,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44834,6 +46415,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44854,6 +46436,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44875,6 +46458,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44897,6 +46481,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44918,6 +46503,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44939,6 +46525,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44960,6 +46547,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44981,6 +46569,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45003,6 +46592,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45026,6 +46616,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45048,6 +46639,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45070,6 +46662,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45092,6 +46685,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45114,6 +46708,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45137,6 +46732,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45161,6 +46757,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45184,6 +46781,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45206,6 +46804,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45224,6 +46823,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45244,6 +46844,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45265,6 +46866,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45284,6 +46886,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45304,6 +46907,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45325,6 +46929,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45347,6 +46952,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45370,6 +46976,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45392,6 +46999,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45414,6 +47022,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45436,6 +47045,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45459,6 +47069,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45483,6 +47094,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45506,6 +47118,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45529,6 +47142,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45549,6 +47163,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45570,6 +47185,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45592,6 +47208,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45613,6 +47230,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45634,6 +47252,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45655,6 +47274,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45677,6 +47297,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45700,6 +47321,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45722,6 +47344,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45744,6 +47367,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45766,6 +47390,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45789,6 +47414,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45813,6 +47439,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45836,6 +47463,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45859,6 +47487,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45879,6 +47508,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45899,6 +47529,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45920,6 +47551,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45942,6 +47574,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45963,6 +47596,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45984,6 +47618,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46005,6 +47640,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46026,6 +47662,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46048,6 +47685,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46071,6 +47709,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46093,6 +47732,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46115,6 +47755,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46137,6 +47778,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46159,6 +47801,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46182,6 +47825,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46206,6 +47850,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46229,6 +47874,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46251,6 +47897,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46269,6 +47916,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46289,6 +47937,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46310,6 +47959,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46329,6 +47979,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46349,6 +48000,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46370,6 +48022,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46392,6 +48045,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46415,6 +48069,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46437,6 +48092,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46459,6 +48115,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46481,6 +48138,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46504,6 +48162,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46528,6 +48187,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46551,6 +48211,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46574,6 +48235,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46594,6 +48256,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46615,6 +48278,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46637,6 +48301,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46658,6 +48323,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46679,6 +48345,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46700,6 +48367,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46722,6 +48390,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46745,6 +48414,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46767,6 +48437,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46789,6 +48460,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46811,6 +48483,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46834,6 +48507,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46858,6 +48532,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46881,6 +48556,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46904,6 +48580,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46924,6 +48601,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46944,6 +48622,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46965,6 +48644,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46987,6 +48667,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47008,6 +48689,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47029,6 +48711,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47050,6 +48733,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47071,6 +48755,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47093,6 +48778,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47116,6 +48802,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47138,6 +48825,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47160,6 +48848,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47182,6 +48871,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47204,6 +48894,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47227,6 +48918,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47251,6 +48943,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47274,6 +48967,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47296,6 +48990,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47314,6 +49009,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47334,6 +49030,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47355,6 +49052,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47374,6 +49072,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47394,6 +49093,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47415,6 +49115,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47437,6 +49138,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47460,6 +49162,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47482,6 +49185,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47504,6 +49208,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47526,6 +49231,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47549,6 +49255,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47573,6 +49280,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47596,6 +49304,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47619,6 +49328,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47639,6 +49349,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47660,6 +49371,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47682,6 +49394,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47703,6 +49416,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47724,6 +49438,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47745,6 +49460,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47767,6 +49483,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47790,6 +49507,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47812,6 +49530,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47834,6 +49553,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47856,6 +49576,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47879,6 +49600,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47903,6 +49625,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47926,6 +49649,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47949,6 +49673,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47969,6 +49694,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47989,6 +49715,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48010,6 +49737,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48032,6 +49760,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48053,6 +49782,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48074,6 +49804,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48095,6 +49826,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48116,6 +49848,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48138,6 +49871,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48161,6 +49895,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48183,6 +49918,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48205,6 +49941,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48227,6 +49964,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48249,6 +49987,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48272,6 +50011,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48296,6 +50036,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48319,6 +50060,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48341,6 +50083,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48359,6 +50102,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48379,6 +50123,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48400,6 +50145,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48419,6 +50165,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48439,6 +50186,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48460,6 +50208,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48482,6 +50231,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48505,6 +50255,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48527,6 +50278,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48549,6 +50301,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48571,6 +50324,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48594,6 +50348,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48618,6 +50373,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48641,6 +50397,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48664,6 +50421,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48684,6 +50442,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48705,6 +50464,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48727,6 +50487,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48748,6 +50509,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48769,6 +50531,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48790,6 +50553,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48812,6 +50576,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48835,6 +50600,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48857,6 +50623,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48879,6 +50646,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48901,6 +50669,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48924,6 +50693,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48948,6 +50718,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48971,6 +50742,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48994,6 +50766,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49014,6 +50787,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49034,6 +50808,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49055,6 +50830,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49077,6 +50853,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49098,6 +50875,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49119,6 +50897,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49140,6 +50919,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49161,6 +50941,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49183,6 +50964,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49206,6 +50988,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49228,6 +51011,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49250,6 +51034,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49272,6 +51057,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49294,6 +51080,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49317,6 +51104,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49341,6 +51129,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49364,6 +51153,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49386,6 +51176,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49404,6 +51195,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49424,6 +51216,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49445,6 +51238,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49464,6 +51258,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49484,6 +51279,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49505,6 +51301,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49527,6 +51324,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49550,6 +51348,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49572,6 +51371,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49594,6 +51394,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49616,6 +51417,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49639,6 +51441,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49663,6 +51466,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49686,6 +51490,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49709,6 +51514,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49729,6 +51535,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49750,6 +51557,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49772,6 +51580,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49793,6 +51602,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49814,6 +51624,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49835,6 +51646,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49857,6 +51669,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49880,6 +51693,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49902,6 +51716,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49924,6 +51739,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49946,6 +51762,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49969,6 +51786,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49993,6 +51811,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50016,6 +51835,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50039,6 +51859,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50059,6 +51880,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50079,6 +51901,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50100,6 +51923,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50122,6 +51946,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50143,6 +51968,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50164,6 +51990,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50185,6 +52012,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50206,6 +52034,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50228,6 +52057,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50251,6 +52081,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50273,6 +52104,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50295,6 +52127,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50317,6 +52150,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50339,6 +52173,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50362,6 +52197,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50386,6 +52222,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50409,6 +52246,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50431,6 +52269,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50449,6 +52288,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50469,6 +52309,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50490,6 +52331,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50509,6 +52351,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50529,6 +52372,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50550,6 +52394,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50572,6 +52417,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50595,6 +52441,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50617,6 +52464,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50639,6 +52487,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50661,6 +52510,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50684,6 +52534,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50708,6 +52559,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50731,6 +52583,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50754,6 +52607,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50774,6 +52628,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50795,6 +52650,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50817,6 +52673,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50838,6 +52695,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50859,6 +52717,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50880,6 +52739,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50902,6 +52762,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50925,6 +52786,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50947,6 +52809,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50969,6 +52832,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50991,6 +52855,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51014,6 +52879,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51038,6 +52904,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51061,6 +52928,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51084,6 +52952,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51104,6 +52973,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51124,6 +52994,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51145,6 +53016,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51167,6 +53039,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51188,6 +53061,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51209,6 +53083,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51230,6 +53105,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51251,6 +53127,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51273,6 +53150,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51296,6 +53174,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51318,6 +53197,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51340,6 +53220,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51362,6 +53243,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51384,6 +53266,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51407,6 +53290,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51431,6 +53315,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51454,6 +53339,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51476,6 +53362,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51495,6 +53382,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51514,6 +53402,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51533,6 +53422,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51552,6 +53442,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51572,6 +53463,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51593,6 +53485,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51614,6 +53507,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51636,6 +53530,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51658,6 +53553,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51680,6 +53576,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51702,6 +53599,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51724,6 +53622,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51747,6 +53646,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51770,6 +53670,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51792,6 +53693,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51811,6 +53713,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51830,6 +53733,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51849,6 +53753,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51868,6 +53773,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51888,6 +53794,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51909,6 +53816,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51930,6 +53838,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51952,6 +53861,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51974,6 +53884,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51996,6 +53907,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52018,6 +53930,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52040,6 +53953,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52063,6 +53977,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52086,6 +54001,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52108,6 +54024,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52126,6 +54043,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52146,6 +54064,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52167,6 +54086,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52186,6 +54106,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52206,6 +54127,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52227,6 +54149,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52249,6 +54172,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52272,6 +54196,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52294,6 +54219,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52316,6 +54242,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52338,6 +54265,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52361,6 +54289,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52385,6 +54314,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52408,6 +54338,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52431,6 +54362,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52451,6 +54383,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52472,6 +54405,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52494,6 +54428,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52515,6 +54450,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52536,6 +54472,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52557,6 +54494,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52579,6 +54517,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52602,6 +54541,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52624,6 +54564,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52646,6 +54587,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52668,6 +54610,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52691,6 +54634,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52715,6 +54659,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52738,6 +54683,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52761,6 +54707,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52781,6 +54728,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52801,6 +54749,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52822,6 +54771,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52844,6 +54794,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52865,6 +54816,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52886,6 +54838,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52907,6 +54860,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52928,6 +54882,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52950,6 +54905,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52973,6 +54929,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52995,6 +54952,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53017,6 +54975,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53039,6 +54998,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53061,6 +55021,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53084,6 +55045,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53108,6 +55070,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53131,6 +55094,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53153,6 +55117,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53171,6 +55136,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53191,6 +55157,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53212,6 +55179,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53231,6 +55199,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53251,6 +55220,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53272,6 +55242,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53294,6 +55265,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53317,6 +55289,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53339,6 +55312,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53361,6 +55335,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53383,6 +55358,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53406,6 +55382,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53430,6 +55407,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53453,6 +55431,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53476,6 +55455,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53496,6 +55476,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53517,6 +55498,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53539,6 +55521,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53560,6 +55543,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53581,6 +55565,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53602,6 +55587,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53624,6 +55610,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53647,6 +55634,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53669,6 +55657,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53691,6 +55680,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53713,6 +55703,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53736,6 +55727,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53760,6 +55752,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53783,6 +55776,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53806,6 +55800,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53826,6 +55821,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53846,6 +55842,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53867,6 +55864,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53889,6 +55887,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53910,6 +55909,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53931,6 +55931,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53952,6 +55953,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53973,6 +55975,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53995,6 +55998,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54018,6 +56022,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54040,6 +56045,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54062,6 +56068,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54084,6 +56091,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54106,6 +56114,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54129,6 +56138,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54153,6 +56163,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54176,6 +56187,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54198,6 +56210,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54217,6 +56230,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54236,6 +56250,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54255,6 +56270,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54274,6 +56290,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54294,6 +56311,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54315,6 +56333,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54336,6 +56355,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54358,6 +56378,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54380,6 +56401,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54402,6 +56424,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54424,6 +56447,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54446,6 +56470,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54469,6 +56494,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54492,6 +56518,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54514,6 +56541,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54533,6 +56561,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54552,6 +56581,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54571,6 +56601,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54590,6 +56621,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54610,6 +56642,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54631,6 +56664,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54652,6 +56686,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54674,6 +56709,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54696,6 +56732,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54718,6 +56755,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54740,6 +56778,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54762,6 +56801,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54785,6 +56825,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54808,6 +56849,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54830,6 +56872,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54848,6 +56891,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54868,6 +56912,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54889,6 +56934,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54908,6 +56954,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54928,6 +56975,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54949,6 +56997,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54971,6 +57020,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54994,6 +57044,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55016,6 +57067,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55038,6 +57090,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55060,6 +57113,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55083,6 +57137,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55107,6 +57162,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55130,6 +57186,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55153,6 +57210,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55173,6 +57231,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55194,6 +57253,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55216,6 +57276,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55237,6 +57298,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55258,6 +57320,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55279,6 +57342,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55301,6 +57365,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55324,6 +57389,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55346,6 +57412,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55368,6 +57435,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55390,6 +57458,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55413,6 +57482,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55437,6 +57507,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55460,6 +57531,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55483,6 +57555,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55503,6 +57576,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55523,6 +57597,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55544,6 +57619,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55566,6 +57642,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55587,6 +57664,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55608,6 +57686,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55629,6 +57708,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55650,6 +57730,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55672,6 +57753,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55695,6 +57777,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55717,6 +57800,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55739,6 +57823,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55761,6 +57846,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55783,6 +57869,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55806,6 +57893,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55830,6 +57918,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55853,6 +57942,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55875,6 +57965,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55893,6 +57984,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55913,6 +58005,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55934,6 +58027,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55953,6 +58047,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55973,6 +58068,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55994,6 +58090,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56016,6 +58113,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56039,6 +58137,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56061,6 +58160,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56083,6 +58183,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56105,6 +58206,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56128,6 +58230,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56152,6 +58255,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56175,6 +58279,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56198,6 +58303,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56218,6 +58324,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56239,6 +58346,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56261,6 +58369,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56282,6 +58391,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56303,6 +58413,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56324,6 +58435,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56346,6 +58458,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56369,6 +58482,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56391,6 +58505,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56413,6 +58528,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56435,6 +58551,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56458,6 +58575,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56482,6 +58600,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56505,6 +58624,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56528,6 +58648,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56548,6 +58669,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56568,6 +58690,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56589,6 +58712,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56611,6 +58735,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56632,6 +58757,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56653,6 +58779,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56674,6 +58801,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56695,6 +58823,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56717,6 +58846,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56740,6 +58870,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56762,6 +58893,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56784,6 +58916,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56806,6 +58939,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56828,6 +58962,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56851,6 +58986,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56875,6 +59011,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56898,6 +59035,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56920,6 +59058,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56939,6 +59078,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56958,6 +59098,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56977,6 +59118,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56996,6 +59138,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57016,6 +59159,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57037,6 +59181,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57058,6 +59203,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57080,6 +59226,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57102,6 +59249,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57124,6 +59272,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57146,6 +59295,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57168,6 +59318,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57191,6 +59342,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57214,6 +59366,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57236,6 +59389,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57255,6 +59409,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57274,6 +59429,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57293,6 +59449,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57312,6 +59469,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57332,6 +59490,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57353,6 +59512,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57374,6 +59534,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57396,6 +59557,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57418,6 +59580,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57440,6 +59603,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57462,6 +59626,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57484,6 +59649,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57507,6 +59673,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57530,6 +59697,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57552,6 +59720,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57570,6 +59739,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57590,6 +59760,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57611,6 +59782,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57630,6 +59802,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57650,6 +59823,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57671,6 +59845,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57693,6 +59868,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57716,6 +59892,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57738,6 +59915,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57760,6 +59938,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57782,6 +59961,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57805,6 +59985,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57829,6 +60010,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57852,6 +60034,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57875,6 +60058,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57895,6 +60079,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57916,6 +60101,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57938,6 +60124,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57959,6 +60146,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57980,6 +60168,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58001,6 +60190,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58023,6 +60213,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58046,6 +60237,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58068,6 +60260,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58090,6 +60283,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58112,6 +60306,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58135,6 +60330,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58159,6 +60355,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58182,6 +60379,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58205,6 +60403,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58225,6 +60424,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58245,6 +60445,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58266,6 +60467,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58288,6 +60490,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58309,6 +60512,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58330,6 +60534,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58351,6 +60556,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58372,6 +60578,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58394,6 +60601,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58417,6 +60625,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58439,6 +60648,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58461,6 +60671,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58483,6 +60694,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58505,6 +60717,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58528,6 +60741,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58552,6 +60766,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58575,6 +60790,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58597,6 +60813,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58615,6 +60832,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58635,6 +60853,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58656,6 +60875,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58675,6 +60895,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58695,6 +60916,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58716,6 +60938,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58738,6 +60961,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58761,6 +60985,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58783,6 +61008,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58805,6 +61031,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58827,6 +61054,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58850,6 +61078,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58874,6 +61103,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58897,6 +61127,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58920,6 +61151,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58940,6 +61172,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58961,6 +61194,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58983,6 +61217,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59004,6 +61239,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59025,6 +61261,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59046,6 +61283,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59068,6 +61306,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59091,6 +61330,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59113,6 +61353,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59135,6 +61376,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59157,6 +61399,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59180,6 +61423,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59204,6 +61448,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59227,6 +61472,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59250,6 +61496,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59270,6 +61517,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59290,6 +61538,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59311,6 +61560,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59333,6 +61583,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59354,6 +61605,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59375,6 +61627,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59396,6 +61649,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59417,6 +61671,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59439,6 +61694,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59462,6 +61718,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59484,6 +61741,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59506,6 +61764,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59528,6 +61787,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59550,6 +61810,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59573,6 +61834,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59597,6 +61859,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59620,6 +61883,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59642,6 +61906,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59660,6 +61925,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59680,6 +61946,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59701,6 +61968,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59720,6 +61988,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59740,6 +62009,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59761,6 +62031,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59783,6 +62054,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59806,6 +62078,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59828,6 +62101,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59850,6 +62124,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59872,6 +62147,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59895,6 +62171,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59919,6 +62196,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59942,6 +62220,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59965,6 +62244,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59985,6 +62265,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60006,6 +62287,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60028,6 +62310,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60049,6 +62332,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60070,6 +62354,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60091,6 +62376,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60113,6 +62399,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60136,6 +62423,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60158,6 +62446,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60180,6 +62469,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60202,6 +62492,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60225,6 +62516,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60249,6 +62541,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60272,6 +62565,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60295,6 +62589,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60315,6 +62610,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60335,6 +62631,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60356,6 +62653,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60378,6 +62676,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60399,6 +62698,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60420,6 +62720,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60441,6 +62742,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60462,6 +62764,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60484,6 +62787,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60507,6 +62811,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60529,6 +62834,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60551,6 +62857,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60573,6 +62880,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60595,6 +62903,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60618,6 +62927,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60642,6 +62952,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60665,6 +62976,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60687,6 +62999,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60705,6 +63018,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60725,6 +63039,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60746,6 +63061,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60765,6 +63081,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60785,6 +63102,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60806,6 +63124,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60828,6 +63147,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60851,6 +63171,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60873,6 +63194,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60895,6 +63217,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60917,6 +63240,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60940,6 +63264,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60964,6 +63289,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60987,6 +63313,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61010,6 +63337,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61030,6 +63358,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61051,6 +63380,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61073,6 +63403,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61094,6 +63425,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61115,6 +63447,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61136,6 +63469,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61158,6 +63492,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61181,6 +63516,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61203,6 +63539,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61225,6 +63562,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61247,6 +63585,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61270,6 +63609,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61294,6 +63634,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61317,6 +63658,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61340,6 +63682,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61360,6 +63703,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61380,6 +63724,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61401,6 +63746,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61423,6 +63769,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61444,6 +63791,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61465,6 +63813,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61486,6 +63835,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61507,6 +63857,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61529,6 +63880,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61552,6 +63904,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61574,6 +63927,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61596,6 +63950,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61618,6 +63973,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61640,6 +63996,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61663,6 +64020,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61687,6 +64045,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61710,6 +64069,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61732,6 +64092,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61750,6 +64111,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61770,6 +64132,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61791,6 +64154,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61810,6 +64174,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61830,6 +64195,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61851,6 +64217,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61873,6 +64240,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61896,6 +64264,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61918,6 +64287,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61940,6 +64310,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61962,6 +64333,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61985,6 +64357,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62009,6 +64382,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62032,6 +64406,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62055,6 +64430,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62075,6 +64451,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62096,6 +64473,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62118,6 +64496,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62139,6 +64518,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62160,6 +64540,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62181,6 +64562,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62203,6 +64585,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62226,6 +64609,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62248,6 +64632,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62270,6 +64655,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62292,6 +64678,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62315,6 +64702,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62339,6 +64727,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62362,6 +64751,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62385,6 +64775,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62405,6 +64796,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62425,6 +64817,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62446,6 +64839,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62468,6 +64862,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62489,6 +64884,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62510,6 +64906,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62531,6 +64928,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62552,6 +64950,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62574,6 +64973,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62597,6 +64997,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62619,6 +65020,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62641,6 +65043,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62663,6 +65066,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62685,6 +65089,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62708,6 +65113,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62732,6 +65138,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62755,6 +65162,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62777,6 +65185,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62795,6 +65204,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62815,6 +65225,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62836,6 +65247,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62855,6 +65267,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62875,6 +65288,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62896,6 +65310,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62918,6 +65333,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62941,6 +65357,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62963,6 +65380,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62985,6 +65403,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63007,6 +65426,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63030,6 +65450,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63054,6 +65475,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63077,6 +65499,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63100,6 +65523,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63120,6 +65544,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63141,6 +65566,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63163,6 +65589,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63184,6 +65611,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63205,6 +65633,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63226,6 +65655,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63248,6 +65678,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63271,6 +65702,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63293,6 +65725,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63315,6 +65748,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63337,6 +65771,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63360,6 +65795,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63384,6 +65820,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63407,6 +65844,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63430,6 +65868,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63450,6 +65889,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63470,6 +65910,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63491,6 +65932,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63513,6 +65955,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63534,6 +65977,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63555,6 +65999,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63576,6 +66021,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63597,6 +66043,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63619,6 +66066,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63642,6 +66090,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63664,6 +66113,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63686,6 +66136,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63708,6 +66159,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63730,6 +66182,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63753,6 +66206,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63777,6 +66231,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63800,6 +66255,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63822,6 +66278,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63840,6 +66297,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63860,6 +66318,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63881,6 +66340,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63900,6 +66360,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63920,6 +66381,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63941,6 +66403,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63963,6 +66426,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63986,6 +66450,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64008,6 +66473,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64030,6 +66496,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64052,6 +66519,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64075,6 +66543,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64099,6 +66568,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64122,6 +66592,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64145,6 +66616,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64165,6 +66637,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64186,6 +66659,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64208,6 +66682,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64229,6 +66704,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64250,6 +66726,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64271,6 +66748,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64293,6 +66771,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64316,6 +66795,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64338,6 +66818,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64360,6 +66841,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64382,6 +66864,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64405,6 +66888,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64429,6 +66913,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64452,6 +66937,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64475,6 +66961,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64495,6 +66982,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64515,6 +67003,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64536,6 +67025,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64558,6 +67048,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64579,6 +67070,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64600,6 +67092,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64621,6 +67114,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64642,6 +67136,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64664,6 +67159,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64687,6 +67183,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64709,6 +67206,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64731,6 +67229,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64753,6 +67252,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64775,6 +67275,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64798,6 +67299,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64822,6 +67324,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64845,6 +67348,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64867,6 +67371,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64885,6 +67390,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64905,6 +67411,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64926,6 +67433,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64945,6 +67453,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64965,6 +67474,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64986,6 +67496,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65008,6 +67519,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65031,6 +67543,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65053,6 +67566,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65075,6 +67589,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65097,6 +67612,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65120,6 +67636,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65144,6 +67661,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65167,6 +67685,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65190,6 +67709,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65210,6 +67730,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65231,6 +67752,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65253,6 +67775,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65274,6 +67797,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65295,6 +67819,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65316,6 +67841,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65338,6 +67864,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65361,6 +67888,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65383,6 +67911,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65405,6 +67934,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65427,6 +67957,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65450,6 +67981,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65474,6 +68006,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65497,6 +68030,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65520,6 +68054,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65540,6 +68075,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65560,6 +68096,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65581,6 +68118,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65603,6 +68141,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65624,6 +68163,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65645,6 +68185,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65666,6 +68207,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65687,6 +68229,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65709,6 +68252,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65732,6 +68276,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65754,6 +68299,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65776,6 +68322,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65798,6 +68345,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65820,6 +68368,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65843,6 +68392,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65867,6 +68417,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65890,6 +68441,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65912,6 +68464,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65931,6 +68484,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65950,6 +68504,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65969,6 +68524,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65988,6 +68544,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66008,6 +68565,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66029,6 +68587,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66050,6 +68609,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66072,6 +68632,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66094,6 +68655,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66116,6 +68678,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66138,6 +68701,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66160,6 +68724,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66183,6 +68748,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66206,6 +68772,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66228,6 +68795,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66247,6 +68815,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66266,6 +68835,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66285,6 +68855,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66304,6 +68875,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66324,6 +68896,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66345,6 +68918,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66366,6 +68940,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66388,6 +68963,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66410,6 +68986,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66432,6 +69009,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66454,6 +69032,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66476,6 +69055,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66499,6 +69079,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66522,6 +69103,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66544,6 +69126,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66562,6 +69145,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66582,6 +69166,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66603,6 +69188,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66622,6 +69208,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66642,6 +69229,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66663,6 +69251,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66685,6 +69274,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66708,6 +69298,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66730,6 +69321,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66752,6 +69344,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66774,6 +69367,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66797,6 +69391,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66821,6 +69416,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66844,6 +69440,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66867,6 +69464,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66887,6 +69485,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66908,6 +69507,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66930,6 +69530,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66951,6 +69552,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66972,6 +69574,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66993,6 +69596,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67015,6 +69619,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67038,6 +69643,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67060,6 +69666,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67082,6 +69689,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67104,6 +69712,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67127,6 +69736,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67151,6 +69761,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67174,6 +69785,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67197,6 +69809,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67217,6 +69830,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67237,6 +69851,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67258,6 +69873,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67280,6 +69896,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67301,6 +69918,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67322,6 +69940,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67343,6 +69962,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67364,6 +69984,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67386,6 +70007,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67409,6 +70031,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67431,6 +70054,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67453,6 +70077,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67475,6 +70100,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67497,6 +70123,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67520,6 +70147,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67544,6 +70172,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67567,6 +70196,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67589,6 +70219,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67607,6 +70238,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67627,6 +70259,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67648,6 +70281,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67667,6 +70301,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67687,6 +70322,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67708,6 +70344,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67730,6 +70367,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67753,6 +70391,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67775,6 +70414,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67797,6 +70437,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67819,6 +70460,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67842,6 +70484,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67866,6 +70509,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67889,6 +70533,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67912,6 +70557,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67932,6 +70578,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67953,6 +70600,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67975,6 +70623,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67996,6 +70645,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68017,6 +70667,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68038,6 +70689,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68060,6 +70712,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68083,6 +70736,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68105,6 +70759,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68127,6 +70782,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68149,6 +70805,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68172,6 +70829,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68196,6 +70854,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68219,6 +70878,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68242,6 +70902,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68262,6 +70923,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68282,6 +70944,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68303,6 +70966,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68325,6 +70989,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68346,6 +71011,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68367,6 +71033,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68388,6 +71055,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68409,6 +71077,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68431,6 +71100,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68454,6 +71124,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68476,6 +71147,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68498,6 +71170,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68520,6 +71193,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68542,6 +71216,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68565,6 +71240,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68589,6 +71265,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68612,6 +71289,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68634,6 +71312,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68653,6 +71332,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68672,6 +71352,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68691,6 +71372,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68710,6 +71392,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68730,6 +71413,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68751,6 +71435,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68772,6 +71457,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68794,6 +71480,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68816,6 +71503,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68838,6 +71526,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68860,6 +71549,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68882,6 +71572,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68905,6 +71596,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68928,6 +71620,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68950,6 +71643,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68969,6 +71663,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68988,6 +71683,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69007,6 +71703,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69026,6 +71723,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69046,6 +71744,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69067,6 +71766,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69088,6 +71788,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69110,6 +71811,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69132,6 +71834,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69154,6 +71857,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69176,6 +71880,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69198,6 +71903,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69221,6 +71927,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69244,6 +71951,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69266,6 +71974,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69284,6 +71993,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69304,6 +72014,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69325,6 +72036,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69344,6 +72056,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69364,6 +72077,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69385,6 +72099,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69407,6 +72122,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69430,6 +72146,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69452,6 +72169,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69474,6 +72192,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69496,6 +72215,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69519,6 +72239,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69543,6 +72264,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69566,6 +72288,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69589,6 +72312,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69609,6 +72333,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69630,6 +72355,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69652,6 +72378,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69673,6 +72400,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69694,6 +72422,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69715,6 +72444,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69737,6 +72467,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69760,6 +72491,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69782,6 +72514,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69804,6 +72537,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69826,6 +72560,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69849,6 +72584,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69873,6 +72609,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69896,6 +72633,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69919,6 +72657,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69939,6 +72678,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69959,6 +72699,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69980,6 +72721,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70002,6 +72744,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70023,6 +72766,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70044,6 +72788,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70065,6 +72810,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70086,6 +72832,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70108,6 +72855,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70131,6 +72879,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70153,6 +72902,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70175,6 +72925,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70197,6 +72948,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70219,6 +72971,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70242,6 +72995,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70266,6 +73020,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70289,6 +73044,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70311,6 +73067,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70329,6 +73086,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70349,6 +73107,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70370,6 +73129,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70389,6 +73149,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70409,6 +73170,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70430,6 +73192,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70452,6 +73215,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70475,6 +73239,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70497,6 +73262,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70519,6 +73285,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70541,6 +73308,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70564,6 +73332,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70588,6 +73357,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70611,6 +73381,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70634,6 +73405,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70654,6 +73426,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70675,6 +73448,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70697,6 +73471,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70718,6 +73493,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70739,6 +73515,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70760,6 +73537,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70782,6 +73560,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70805,6 +73584,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70827,6 +73607,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70849,6 +73630,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70871,6 +73653,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70894,6 +73677,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70918,6 +73702,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70941,6 +73726,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70964,6 +73750,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70984,6 +73771,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71004,6 +73792,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71025,6 +73814,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71047,6 +73837,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71068,6 +73859,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71089,6 +73881,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71110,6 +73903,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71131,6 +73925,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71153,6 +73948,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71176,6 +73972,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71198,6 +73995,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71220,6 +74018,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71242,6 +74041,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71264,6 +74064,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71287,6 +74088,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71311,6 +74113,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71334,6 +74137,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71356,6 +74160,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71375,6 +74180,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71394,6 +74200,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71413,6 +74220,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71432,6 +74240,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71452,6 +74261,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71473,6 +74283,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71494,6 +74305,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71516,6 +74328,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71538,6 +74351,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71560,6 +74374,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71582,6 +74397,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71604,6 +74420,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71627,6 +74444,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71650,6 +74468,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71672,6 +74491,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71691,6 +74511,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71710,6 +74531,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71729,6 +74551,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71748,6 +74571,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71768,6 +74592,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71789,6 +74614,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71810,6 +74636,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71832,6 +74659,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71854,6 +74682,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71876,6 +74705,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71898,6 +74728,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71920,6 +74751,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71943,6 +74775,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71966,6 +74799,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71988,6 +74822,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72006,6 +74841,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72026,6 +74862,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72047,6 +74884,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72066,6 +74904,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72086,6 +74925,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72107,6 +74947,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72129,6 +74970,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72152,6 +74994,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72174,6 +75017,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72196,6 +75040,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72218,6 +75063,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72241,6 +75087,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72265,6 +75112,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72288,6 +75136,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72311,6 +75160,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72331,6 +75181,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72352,6 +75203,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72374,6 +75226,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72395,6 +75248,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72416,6 +75270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72437,6 +75292,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72459,6 +75315,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72482,6 +75339,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72504,6 +75362,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72526,6 +75385,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72548,6 +75408,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72571,6 +75432,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72595,6 +75457,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72618,6 +75481,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72641,6 +75505,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72661,6 +75526,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72681,6 +75547,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72702,6 +75569,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72724,6 +75592,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72745,6 +75614,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72766,6 +75636,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72787,6 +75658,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72808,6 +75680,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72830,6 +75703,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72853,6 +75727,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72875,6 +75750,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72897,6 +75773,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72919,6 +75796,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72941,6 +75819,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72964,6 +75843,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72988,6 +75868,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73011,6 +75892,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73033,6 +75915,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73051,6 +75934,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73071,6 +75955,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73092,6 +75977,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73111,6 +75997,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73131,6 +76018,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73152,6 +76040,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73174,6 +76063,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73197,6 +76087,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73219,6 +76110,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73241,6 +76133,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73263,6 +76156,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73286,6 +76180,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73310,6 +76205,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73333,6 +76229,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73356,6 +76253,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73376,6 +76274,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73397,6 +76296,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73419,6 +76319,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73440,6 +76341,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73461,6 +76363,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73482,6 +76385,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73504,6 +76408,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73527,6 +76432,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73549,6 +76455,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73571,6 +76478,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73593,6 +76501,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73616,6 +76525,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73640,6 +76550,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73663,6 +76574,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73686,6 +76598,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73706,6 +76619,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73726,6 +76640,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73747,6 +76662,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73769,6 +76685,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73790,6 +76707,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73811,6 +76729,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73832,6 +76751,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73853,6 +76773,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73875,6 +76796,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73898,6 +76820,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73920,6 +76843,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73942,6 +76866,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73964,6 +76889,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73986,6 +76912,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74009,6 +76936,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74033,6 +76961,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74056,6 +76985,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74078,6 +77008,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74097,6 +77028,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74116,6 +77048,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74135,6 +77068,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74154,6 +77088,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74174,6 +77109,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74195,6 +77131,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74216,6 +77153,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74238,6 +77176,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74260,6 +77199,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74282,6 +77222,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74304,6 +77245,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74326,6 +77268,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74349,6 +77292,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74372,6 +77316,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74394,6 +77339,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74413,6 +77359,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74432,6 +77379,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74451,6 +77399,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74470,6 +77419,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74490,6 +77440,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74511,6 +77462,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74532,6 +77484,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74554,6 +77507,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74576,6 +77530,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74598,6 +77553,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74620,6 +77576,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74642,6 +77599,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74665,6 +77623,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74688,6 +77647,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74710,6 +77670,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74728,6 +77689,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74748,6 +77710,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74769,6 +77732,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74788,6 +77752,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74808,6 +77773,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74829,6 +77795,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74851,6 +77818,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74874,6 +77842,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74896,6 +77865,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74918,6 +77888,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74940,6 +77911,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74963,6 +77935,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74987,6 +77960,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75010,6 +77984,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75033,6 +78008,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75053,6 +78029,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75074,6 +78051,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75096,6 +78074,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75117,6 +78096,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75138,6 +78118,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75159,6 +78140,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75181,6 +78163,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75204,6 +78187,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75226,6 +78210,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75248,6 +78233,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75270,6 +78256,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75293,6 +78280,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75317,6 +78305,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75340,6 +78329,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75363,6 +78353,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75383,6 +78374,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75403,6 +78395,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75424,6 +78417,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75446,6 +78440,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75467,6 +78462,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75488,6 +78484,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75509,6 +78506,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75530,6 +78528,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75552,6 +78551,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75575,6 +78575,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75597,6 +78598,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75619,6 +78621,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75641,6 +78644,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75663,6 +78667,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75686,6 +78691,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75710,6 +78716,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75733,6 +78740,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75755,6 +78763,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75773,6 +78782,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75793,6 +78803,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75814,6 +78825,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75833,6 +78845,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75853,6 +78866,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75874,6 +78888,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75896,6 +78911,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75919,6 +78935,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75941,6 +78958,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75963,6 +78981,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75985,6 +79004,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76008,6 +79028,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76032,6 +79053,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76055,6 +79077,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76078,6 +79101,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76098,6 +79122,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76119,6 +79144,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76141,6 +79167,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76162,6 +79189,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76183,6 +79211,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76204,6 +79233,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76226,6 +79256,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76249,6 +79280,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76271,6 +79303,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76293,6 +79326,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76315,6 +79349,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76338,6 +79373,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76362,6 +79398,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76385,6 +79422,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76408,6 +79446,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76428,6 +79467,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76448,6 +79488,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76469,6 +79510,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76491,6 +79533,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76512,6 +79555,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76533,6 +79577,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76554,6 +79599,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76575,6 +79621,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76597,6 +79644,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76620,6 +79668,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76642,6 +79691,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76664,6 +79714,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76686,6 +79737,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76708,6 +79760,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76731,6 +79784,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76755,6 +79809,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76778,6 +79833,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76800,6 +79856,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76819,6 +79876,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76838,6 +79896,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76857,6 +79916,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76876,6 +79936,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76896,6 +79957,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76917,6 +79979,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76938,6 +80001,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76960,6 +80024,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76982,6 +80047,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77004,6 +80070,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77026,6 +80093,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77048,6 +80116,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77071,6 +80140,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77094,6 +80164,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77116,6 +80187,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77135,6 +80207,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77154,6 +80227,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77173,6 +80247,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77192,6 +80267,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77212,6 +80288,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77233,6 +80310,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77254,6 +80332,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77276,6 +80355,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77298,6 +80378,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77320,6 +80401,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77342,6 +80424,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77364,6 +80447,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77387,6 +80471,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77410,6 +80495,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77432,6 +80518,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77450,6 +80537,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77470,6 +80558,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77491,6 +80580,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77510,6 +80600,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77530,6 +80621,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77551,6 +80643,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77573,6 +80666,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77596,6 +80690,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77618,6 +80713,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77640,6 +80736,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77662,6 +80759,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77685,6 +80783,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77709,6 +80808,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77732,6 +80832,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77755,6 +80856,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77775,6 +80877,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77796,6 +80899,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77818,6 +80922,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77839,6 +80944,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77860,6 +80966,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77881,6 +80988,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77903,6 +81011,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77926,6 +81035,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77948,6 +81058,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77970,6 +81081,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77992,6 +81104,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78015,6 +81128,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78039,6 +81153,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78062,6 +81177,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78085,6 +81201,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78105,6 +81222,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78125,6 +81243,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78146,6 +81265,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78168,6 +81288,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78189,6 +81310,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78210,6 +81332,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78231,6 +81354,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78252,6 +81376,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78274,6 +81399,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78297,6 +81423,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78319,6 +81446,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78341,6 +81469,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78363,6 +81492,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78385,6 +81515,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78408,6 +81539,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78432,6 +81564,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78455,6 +81588,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78477,6 +81611,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78495,6 +81630,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78515,6 +81651,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78536,6 +81673,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78555,6 +81693,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78575,6 +81714,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78596,6 +81736,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78618,6 +81759,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78641,6 +81783,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78663,6 +81806,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78685,6 +81829,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78707,6 +81852,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78730,6 +81876,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78754,6 +81901,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78777,6 +81925,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78800,6 +81949,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78820,6 +81970,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78841,6 +81992,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78863,6 +82015,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78884,6 +82037,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78905,6 +82059,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78926,6 +82081,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78948,6 +82104,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78971,6 +82128,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78993,6 +82151,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79015,6 +82174,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79037,6 +82197,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79060,6 +82221,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79084,6 +82246,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79107,6 +82270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79130,6 +82294,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79150,6 +82315,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79170,6 +82336,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79191,6 +82358,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79213,6 +82381,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79234,6 +82403,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79255,6 +82425,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79276,6 +82447,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79297,6 +82469,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79319,6 +82492,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79342,6 +82516,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79364,6 +82539,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79386,6 +82562,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79408,6 +82585,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79430,6 +82608,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79453,6 +82632,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79477,6 +82657,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79500,6 +82681,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79522,6 +82704,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79541,6 +82724,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79560,6 +82744,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79579,6 +82764,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79598,6 +82784,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79618,6 +82805,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79639,6 +82827,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79660,6 +82849,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79682,6 +82872,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79704,6 +82895,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79726,6 +82918,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79748,6 +82941,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79770,6 +82964,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79793,6 +82988,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79816,6 +83012,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79838,6 +83035,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79857,6 +83055,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79876,6 +83075,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79895,6 +83095,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79914,6 +83115,7 @@ ISA Set: FMA, Ins cat: VFMA, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 12 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79934,6 +83136,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79955,6 +83158,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79976,6 +83180,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79998,6 +83203,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80020,6 +83226,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80042,6 +83249,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80064,6 +83272,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80086,6 +83295,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80109,6 +83319,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80132,6 +83343,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80155,6 +83367,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80174,6 +83387,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80194,6 +83408,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80215,6 +83430,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80235,6 +83451,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80255,6 +83472,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80275,6 +83493,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80296,6 +83515,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80318,6 +83538,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80339,6 +83560,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80360,6 +83582,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80381,6 +83604,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80403,6 +83627,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80426,6 +83651,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80448,6 +83674,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80470,6 +83697,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80489,6 +83717,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80509,6 +83738,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80530,6 +83760,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80550,6 +83781,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80570,6 +83802,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80590,6 +83823,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80611,6 +83845,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80633,6 +83868,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80654,6 +83890,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80675,6 +83912,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80696,6 +83934,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80718,6 +83957,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80741,6 +83981,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80763,6 +84004,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80785,6 +84027,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80804,6 +84047,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80823,6 +84067,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80843,6 +84088,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80864,6 +84110,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80884,6 +84131,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80904,6 +84152,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80924,6 +84173,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80944,6 +84194,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80965,6 +84216,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80987,6 +84239,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81008,6 +84261,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81029,6 +84283,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81050,6 +84305,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81071,6 +84327,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81093,6 +84350,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81116,6 +84374,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81138,6 +84397,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81160,6 +84420,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81179,6 +84440,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81199,6 +84461,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81220,6 +84483,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81240,6 +84504,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81260,6 +84525,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81280,6 +84546,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81301,6 +84568,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81323,6 +84591,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81344,6 +84613,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81365,6 +84635,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81386,6 +84657,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81408,6 +84680,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81431,6 +84704,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81453,6 +84727,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81475,6 +84750,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81494,6 +84770,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81514,6 +84791,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81535,6 +84813,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81555,6 +84834,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81575,6 +84855,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81595,6 +84876,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81616,6 +84898,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81638,6 +84921,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81659,6 +84943,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81680,6 +84965,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81701,6 +84987,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81723,6 +85010,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81746,6 +85034,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81768,6 +85057,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81790,6 +85080,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81809,6 +85100,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81828,6 +85120,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81848,6 +85141,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81869,6 +85163,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81889,6 +85184,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81909,6 +85205,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81929,6 +85226,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81949,6 +85247,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81970,6 +85269,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81992,6 +85292,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82013,6 +85314,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82034,6 +85336,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82055,6 +85358,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82076,6 +85380,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82098,6 +85403,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82121,6 +85427,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82143,6 +85450,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82165,6 +85473,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82185,6 +85494,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82205,6 +85515,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82226,6 +85537,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82247,6 +85559,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82268,6 +85581,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82289,6 +85603,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82310,6 +85625,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82332,6 +85648,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82354,6 +85671,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82376,6 +85694,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82398,6 +85717,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82420,6 +85740,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82443,6 +85764,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82466,6 +85788,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82489,6 +85812,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82509,6 +85833,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82529,6 +85854,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82550,6 +85876,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82571,6 +85898,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82592,6 +85920,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82613,6 +85942,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82634,6 +85964,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82656,6 +85987,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82678,6 +86010,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82700,6 +86033,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82722,6 +86056,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82744,6 +86079,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82767,6 +86103,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82790,6 +86127,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82813,6 +86151,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82833,6 +86172,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82854,6 +86194,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82876,6 +86217,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82897,6 +86239,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82918,6 +86261,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82939,6 +86283,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82961,6 +86306,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82984,6 +86330,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83006,6 +86353,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83028,6 +86376,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83050,6 +86399,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83073,6 +86423,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83097,6 +86448,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83120,6 +86472,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83143,6 +86496,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83163,6 +86517,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83184,6 +86539,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83206,6 +86562,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83227,6 +86584,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83248,6 +86606,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83269,6 +86628,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83291,6 +86651,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83314,6 +86675,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83336,6 +86698,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83358,6 +86721,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83380,6 +86744,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83403,6 +86768,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83427,6 +86793,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83450,6 +86817,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83473,6 +86841,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83493,6 +86862,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83514,6 +86884,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83536,6 +86907,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83557,6 +86929,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83578,6 +86951,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83599,6 +86973,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83621,6 +86996,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83644,6 +87020,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83666,6 +87043,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83688,6 +87066,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83710,6 +87089,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83733,6 +87113,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83757,6 +87138,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83780,6 +87162,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83803,6 +87186,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83823,6 +87207,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83844,6 +87229,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83866,6 +87252,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83887,6 +87274,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83908,6 +87296,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83929,6 +87318,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83951,6 +87341,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83974,6 +87365,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83996,6 +87388,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84018,6 +87411,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84040,6 +87434,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84063,6 +87458,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84087,6 +87483,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84110,6 +87507,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84133,6 +87531,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84153,6 +87552,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84174,6 +87574,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84196,6 +87597,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84217,6 +87619,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84238,6 +87641,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84259,6 +87663,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84281,6 +87686,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84304,6 +87710,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84326,6 +87733,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84348,6 +87756,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84370,6 +87779,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84393,6 +87803,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84417,6 +87828,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84440,6 +87852,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84463,6 +87876,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84483,6 +87897,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84504,6 +87919,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84526,6 +87942,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84547,6 +87964,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84568,6 +87986,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84589,6 +88008,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84611,6 +88031,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84634,6 +88055,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84656,6 +88078,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84678,6 +88101,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84700,6 +88124,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84723,6 +88148,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84747,6 +88173,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84770,6 +88197,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84793,6 +88221,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84814,6 +88243,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84836,6 +88266,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84858,6 +88289,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84880,6 +88312,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84902,6 +88335,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84925,6 +88359,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84948,6 +88383,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84971,6 +88407,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84994,6 +88431,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85018,6 +88456,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85042,6 +88481,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85066,6 +88506,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85087,6 +88528,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85109,6 +88551,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85131,6 +88574,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85153,6 +88597,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85175,6 +88620,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85198,6 +88644,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85221,6 +88668,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85244,6 +88692,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85267,6 +88716,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85291,6 +88741,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85315,6 +88766,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87055,6 +90507,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87073,6 +90526,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87093,6 +90547,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87114,6 +90569,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87133,6 +90589,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87153,6 +90610,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87174,6 +90632,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87196,6 +90655,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87219,6 +90679,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87241,6 +90702,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87263,6 +90725,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87285,6 +90748,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87308,6 +90772,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87332,6 +90797,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87355,6 +90821,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87378,6 +90845,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87398,6 +90866,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87419,6 +90888,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87441,6 +90911,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87462,6 +90933,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87483,6 +90955,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87504,6 +90977,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87526,6 +91000,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87549,6 +91024,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87571,6 +91047,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87593,6 +91070,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87615,6 +91093,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87638,6 +91117,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87662,6 +91142,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87685,6 +91166,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87708,6 +91190,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87728,6 +91211,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87748,6 +91232,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87769,6 +91254,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87791,6 +91277,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87812,6 +91299,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87833,6 +91321,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87854,6 +91343,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87875,6 +91365,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87897,6 +91388,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87920,6 +91412,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87942,6 +91435,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87964,6 +91458,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87986,6 +91481,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88008,6 +91504,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88031,6 +91528,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88055,6 +91553,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88078,6 +91577,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88100,6 +91600,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88118,6 +91619,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88138,6 +91640,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88159,6 +91662,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88178,6 +91682,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88198,6 +91703,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88219,6 +91725,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88241,6 +91748,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88264,6 +91772,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88286,6 +91795,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88308,6 +91818,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88330,6 +91841,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88353,6 +91865,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88377,6 +91890,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88400,6 +91914,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88423,6 +91938,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88443,6 +91959,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88464,6 +91981,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88486,6 +92004,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88507,6 +92026,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88528,6 +92048,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88549,6 +92070,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88571,6 +92093,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88594,6 +92117,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88616,6 +92140,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88638,6 +92163,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88660,6 +92186,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88683,6 +92210,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88707,6 +92235,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88730,6 +92259,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88753,6 +92283,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88773,6 +92304,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88793,6 +92325,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88814,6 +92347,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88836,6 +92370,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88857,6 +92392,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88878,6 +92414,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88899,6 +92436,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88920,6 +92458,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88942,6 +92481,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88965,6 +92505,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88987,6 +92528,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89009,6 +92551,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89031,6 +92574,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89053,6 +92597,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89076,6 +92621,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89100,6 +92646,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89123,6 +92670,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89145,6 +92693,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89164,6 +92713,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89183,6 +92733,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89202,6 +92753,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89221,6 +92773,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89241,6 +92794,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89262,6 +92816,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89283,6 +92838,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89305,6 +92861,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89327,6 +92884,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89349,6 +92907,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89371,6 +92930,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89393,6 +92953,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89416,6 +92977,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89439,6 +93001,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89461,6 +93024,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89480,6 +93044,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89499,6 +93064,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89518,6 +93084,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89537,6 +93104,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89557,6 +93125,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89578,6 +93147,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89599,6 +93169,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89621,6 +93192,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89643,6 +93215,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89665,6 +93238,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89687,6 +93261,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89709,6 +93284,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89732,6 +93308,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89755,6 +93332,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89777,6 +93355,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89795,6 +93374,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89815,6 +93395,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89836,6 +93417,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89855,6 +93437,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89875,6 +93458,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89896,6 +93480,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89918,6 +93503,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89941,6 +93527,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89963,6 +93550,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89985,6 +93573,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90007,6 +93596,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90030,6 +93620,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90054,6 +93645,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90077,6 +93669,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90100,6 +93693,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90120,6 +93714,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90141,6 +93736,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90163,6 +93759,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90184,6 +93781,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90205,6 +93803,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90226,6 +93825,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90248,6 +93848,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90271,6 +93872,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90293,6 +93895,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90315,6 +93918,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90337,6 +93941,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90360,6 +93965,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90384,6 +93990,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90407,6 +94014,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90430,6 +94038,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90450,6 +94059,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90470,6 +94080,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90491,6 +94102,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90513,6 +94125,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90534,6 +94147,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90555,6 +94169,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90576,6 +94191,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90597,6 +94213,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90619,6 +94236,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90642,6 +94260,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90664,6 +94283,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90686,6 +94306,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90708,6 +94329,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90730,6 +94352,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90753,6 +94376,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90777,6 +94401,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90800,6 +94425,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90822,6 +94448,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90840,6 +94467,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90860,6 +94488,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90881,6 +94510,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90900,6 +94530,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90920,6 +94551,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90941,6 +94573,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90963,6 +94596,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90986,6 +94620,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91008,6 +94643,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91030,6 +94666,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91052,6 +94689,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91075,6 +94713,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91099,6 +94738,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91122,6 +94762,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91145,6 +94786,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91165,6 +94807,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91186,6 +94829,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91208,6 +94852,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91229,6 +94874,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91250,6 +94896,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91271,6 +94918,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91293,6 +94941,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91316,6 +94965,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91338,6 +94988,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91360,6 +95011,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91382,6 +95034,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91405,6 +95058,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91429,6 +95083,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91452,6 +95107,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91475,6 +95131,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91495,6 +95152,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91515,6 +95173,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91536,6 +95195,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91558,6 +95218,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91579,6 +95240,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91600,6 +95262,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91621,6 +95284,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91642,6 +95306,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91664,6 +95329,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91687,6 +95353,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91709,6 +95376,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91731,6 +95399,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91753,6 +95422,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91775,6 +95445,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91798,6 +95469,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91822,6 +95494,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91845,6 +95518,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91867,6 +95541,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91886,6 +95561,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91905,6 +95581,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91924,6 +95601,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91943,6 +95621,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91963,6 +95642,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91984,6 +95664,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92005,6 +95686,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92027,6 +95709,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92049,6 +95732,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92071,6 +95755,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92093,6 +95778,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92115,6 +95801,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92138,6 +95825,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92161,6 +95849,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92183,6 +95872,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92202,6 +95892,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92221,6 +95912,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92240,6 +95932,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92259,6 +95952,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92279,6 +95973,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92300,6 +95995,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92321,6 +96017,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92343,6 +96040,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92365,6 +96063,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92387,6 +96086,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92409,6 +96109,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92431,6 +96132,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92454,6 +96156,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92477,6 +96180,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -106140,6 +109844,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -106158,6 +109863,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -106178,6 +109884,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -106199,6 +109906,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -106218,6 +109926,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -106238,6 +109947,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -106259,6 +109969,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -106281,6 +109992,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -106304,6 +110016,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -106326,6 +110039,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -106348,6 +110062,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -106370,6 +110085,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -106393,6 +110109,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -106417,6 +110134,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -106440,6 +110158,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -106463,6 +110182,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -106483,6 +110203,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -106504,6 +110225,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -106526,6 +110248,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -106547,6 +110270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -106568,6 +110292,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -106589,6 +110314,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -106611,6 +110337,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -106634,6 +110361,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -106656,6 +110384,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -106678,6 +110407,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -106700,6 +110430,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -106723,6 +110454,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -106747,6 +110479,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -106770,6 +110503,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -106793,6 +110527,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -106813,6 +110548,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -106833,6 +110569,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -106854,6 +110591,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -106876,6 +110614,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -106897,6 +110636,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -106918,6 +110658,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -106939,6 +110680,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -106960,6 +110702,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -106982,6 +110725,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -107005,6 +110749,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -107027,6 +110772,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -107049,6 +110795,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -107071,6 +110818,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -107093,6 +110841,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -107116,6 +110865,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -107140,6 +110890,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -107163,6 +110914,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -107185,6 +110937,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -107203,6 +110956,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -107223,6 +110977,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -107244,6 +110999,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -107263,6 +111019,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -107283,6 +111040,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -107304,6 +111062,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -107326,6 +111085,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -107349,6 +111109,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -107371,6 +111132,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -107393,6 +111155,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -107415,6 +111178,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -107438,6 +111202,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -107462,6 +111227,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -107485,6 +111251,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -107508,6 +111275,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -107528,6 +111296,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -107549,6 +111318,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -107571,6 +111341,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -107592,6 +111363,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -107613,6 +111385,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -107634,6 +111407,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -107656,6 +111430,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -107679,6 +111454,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -107701,6 +111477,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -107723,6 +111500,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -107745,6 +111523,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -107768,6 +111547,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -107792,6 +111572,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -107815,6 +111596,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -107838,6 +111620,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -107858,6 +111641,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -107878,6 +111662,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -107899,6 +111684,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -107921,6 +111707,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -107942,6 +111729,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -107963,6 +111751,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -107984,6 +111773,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -108005,6 +111795,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -108027,6 +111818,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -108050,6 +111842,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -108072,6 +111865,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -108094,6 +111888,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -108116,6 +111911,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -108138,6 +111934,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -108161,6 +111958,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -108185,6 +111983,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -108208,6 +112007,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -108230,6 +112030,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -108249,6 +112050,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -108268,6 +112070,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -108287,6 +112090,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -108306,6 +112110,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -108326,6 +112131,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -108347,6 +112153,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -108368,6 +112175,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -108390,6 +112198,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -108412,6 +112221,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -108434,6 +112244,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -108456,6 +112267,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -108478,6 +112290,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -108501,6 +112314,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -108524,6 +112338,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -108546,6 +112361,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -108565,6 +112381,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -108584,6 +112401,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -108603,6 +112421,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -108622,6 +112441,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -108642,6 +112462,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -108663,6 +112484,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -108684,6 +112506,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -108706,6 +112529,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -108728,6 +112552,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -108750,6 +112575,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -108772,6 +112598,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -108794,6 +112621,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -108817,6 +112645,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -108840,6 +112669,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202186,6 +206016,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202206,6 +206037,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202227,6 +206059,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202249,6 +206082,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202270,6 +206104,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202291,6 +206126,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202312,6 +206148,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202334,6 +206171,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202357,6 +206195,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202379,6 +206218,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202401,6 +206241,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202423,6 +206264,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202446,6 +206288,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202470,6 +206313,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202493,6 +206337,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202516,6 +206361,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202536,6 +206382,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202557,6 +206404,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202579,6 +206427,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202600,6 +206449,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202621,6 +206471,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202642,6 +206493,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202664,6 +206516,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202687,6 +206540,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202709,6 +206563,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202731,6 +206586,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202753,6 +206609,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202776,6 +206633,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202800,6 +206658,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202823,6 +206682,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202846,6 +206706,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202866,6 +206727,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202887,6 +206749,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202909,6 +206772,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202930,6 +206794,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202951,6 +206816,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202972,6 +206838,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202994,6 +206861,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203017,6 +206885,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203039,6 +206908,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203061,6 +206931,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203083,6 +206954,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203106,6 +206978,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203130,6 +207003,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203153,6 +207027,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203176,6 +207051,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203196,6 +207072,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203217,6 +207094,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203239,6 +207117,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203260,6 +207139,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203281,6 +207161,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203302,6 +207183,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203324,6 +207206,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203347,6 +207230,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203369,6 +207253,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203391,6 +207276,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203413,6 +207299,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203436,6 +207323,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203460,6 +207348,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203483,6 +207372,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203506,6 +207396,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203526,6 +207417,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203547,6 +207439,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203569,6 +207462,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203590,6 +207484,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203611,6 +207506,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203632,6 +207528,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203654,6 +207551,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203677,6 +207575,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203699,6 +207598,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203721,6 +207621,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203743,6 +207644,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203766,6 +207668,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203790,6 +207693,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203813,6 +207717,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203836,6 +207741,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203856,6 +207762,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203877,6 +207784,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203899,6 +207807,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203920,6 +207829,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203941,6 +207851,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203962,6 +207873,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203984,6 +207896,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204007,6 +207920,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204029,6 +207943,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204051,6 +207966,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204073,6 +207989,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204096,6 +208013,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204120,6 +208038,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204143,6 +208062,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204166,6 +208086,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204187,6 +208108,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204209,6 +208131,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204231,6 +208154,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204253,6 +208177,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204275,6 +208200,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204298,6 +208224,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204321,6 +208248,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204344,6 +208272,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204367,6 +208296,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204391,6 +208321,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204415,6 +208346,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204439,6 +208371,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204460,6 +208393,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204482,6 +208416,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204504,6 +208439,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204526,6 +208462,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204548,6 +208485,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204571,6 +208509,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204594,6 +208533,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204617,6 +208557,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204640,6 +208581,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204664,6 +208606,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204688,6 +208631,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207124,6 +211068,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207144,6 +211089,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207165,6 +211111,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207187,6 +211134,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207208,6 +211156,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207229,6 +211178,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207250,6 +211200,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207272,6 +211223,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207295,6 +211247,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207317,6 +211270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207339,6 +211293,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207361,6 +211316,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207384,6 +211340,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207408,6 +211365,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207431,6 +211389,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207454,6 +211413,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207474,6 +211434,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207495,6 +211456,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207517,6 +211479,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207538,6 +211501,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207559,6 +211523,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207580,6 +211545,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207602,6 +211568,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207625,6 +211592,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207647,6 +211615,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207669,6 +211638,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207691,6 +211661,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207714,6 +211685,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207738,6 +211710,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207761,6 +211734,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207784,6 +211758,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207804,6 +211779,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207824,6 +211800,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207845,6 +211822,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207867,6 +211845,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207888,6 +211867,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207909,6 +211889,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207930,6 +211911,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207951,6 +211933,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207973,6 +211956,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207996,6 +211980,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208018,6 +212003,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208040,6 +212026,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208062,6 +212049,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208084,6 +212072,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208107,6 +212096,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208131,6 +212121,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208154,6 +212145,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208177,6 +212169,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208197,6 +212190,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208218,6 +212212,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208240,6 +212235,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208261,6 +212257,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208282,6 +212279,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208303,6 +212301,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208325,6 +212324,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208348,6 +212348,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208370,6 +212371,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208392,6 +212394,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208414,6 +212417,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208437,6 +212441,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208461,6 +212466,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208484,6 +212490,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208507,6 +212514,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208527,6 +212535,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208548,6 +212557,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208570,6 +212580,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208591,6 +212602,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208612,6 +212624,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208633,6 +212646,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208655,6 +212669,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208678,6 +212693,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208700,6 +212716,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208722,6 +212739,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208744,6 +212762,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208767,6 +212786,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208791,6 +212811,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208814,6 +212835,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208837,6 +212859,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208857,6 +212880,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208877,6 +212901,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208898,6 +212923,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208920,6 +212946,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208941,6 +212968,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208962,6 +212990,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208983,6 +213012,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209004,6 +213034,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209026,6 +213057,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209049,6 +213081,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209071,6 +213104,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209093,6 +213127,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209115,6 +213150,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209137,6 +213173,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209160,6 +213197,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209184,6 +213222,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209207,6 +213246,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209230,6 +213270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209250,6 +213291,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209270,6 +213312,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209291,6 +213334,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209312,6 +213356,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209333,6 +213378,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209354,6 +213400,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209375,6 +213422,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209397,6 +213445,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209419,6 +213468,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209441,6 +213491,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209463,6 +213514,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209485,6 +213537,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209508,6 +213561,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209531,6 +213585,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209554,6 +213609,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209574,6 +213630,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209594,6 +213651,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209615,6 +213673,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209636,6 +213695,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209657,6 +213717,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209678,6 +213739,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209699,6 +213761,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209721,6 +213784,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209743,6 +213807,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209765,6 +213830,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209787,6 +213853,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209809,6 +213876,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209832,6 +213900,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209855,6 +213924,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214691,6 +218761,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214708,6 +218779,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214727,6 +218799,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214747,6 +218820,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214765,6 +218839,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214784,6 +218859,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214804,6 +218880,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214825,6 +218902,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214847,6 +218925,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214868,6 +218947,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214889,6 +218969,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214910,6 +218991,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214932,6 +219014,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214955,6 +219038,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214977,6 +219061,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214999,6 +219084,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215018,6 +219104,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215038,6 +219125,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215059,6 +219147,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215079,6 +219168,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215099,6 +219189,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215119,6 +219210,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215140,6 +219232,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215162,6 +219255,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215183,6 +219277,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215204,6 +219299,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215225,6 +219321,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215247,6 +219344,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215270,6 +219368,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215292,6 +219391,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215314,6 +219414,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215333,6 +219434,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215352,6 +219454,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215372,6 +219475,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215393,6 +219497,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215413,6 +219518,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215433,6 +219539,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215453,6 +219560,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215473,6 +219581,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215494,6 +219603,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215516,6 +219626,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215537,6 +219648,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215558,6 +219670,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215579,6 +219692,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215600,6 +219714,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215622,6 +219737,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215645,6 +219761,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215667,6 +219784,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215688,6 +219806,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215705,6 +219824,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215724,6 +219844,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215744,6 +219865,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215762,6 +219884,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215781,6 +219904,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215801,6 +219925,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215822,6 +219947,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215844,6 +219970,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215865,6 +219992,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215886,6 +220014,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215907,6 +220036,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215929,6 +220059,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215952,6 +220083,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215974,6 +220106,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215996,6 +220129,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216015,6 +220149,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216035,6 +220170,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216056,6 +220192,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216076,6 +220213,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216096,6 +220234,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216116,6 +220255,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216137,6 +220277,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216159,6 +220300,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216180,6 +220322,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216201,6 +220344,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216222,6 +220366,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216244,6 +220389,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216267,6 +220413,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216289,6 +220436,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216311,6 +220459,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216330,6 +220479,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216349,6 +220499,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216369,6 +220520,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216390,6 +220542,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216410,6 +220563,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216430,6 +220584,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216450,6 +220605,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216470,6 +220626,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216491,6 +220648,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216513,6 +220671,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216534,6 +220693,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216555,6 +220715,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216576,6 +220737,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216597,6 +220759,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216619,6 +220782,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216642,6 +220806,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216664,6 +220829,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216685,6 +220851,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216704,6 +220871,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216723,6 +220891,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216742,6 +220911,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216761,6 +220931,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216781,6 +220952,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216802,6 +220974,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216823,6 +220996,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216845,6 +221019,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216867,6 +221042,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216889,6 +221065,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216911,6 +221088,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216933,6 +221111,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216956,6 +221135,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216979,6 +221159,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217001,6 +221182,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217020,6 +221202,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217039,6 +221222,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217058,6 +221242,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217077,6 +221262,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217097,6 +221283,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217118,6 +221305,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217139,6 +221327,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217161,6 +221350,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217183,6 +221373,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217205,6 +221396,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217227,6 +221419,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217249,6 +221442,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217272,6 +221466,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217295,6 +221490,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217317,6 +221513,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217335,6 +221532,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217355,6 +221553,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217376,6 +221575,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217395,6 +221595,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217415,6 +221616,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217436,6 +221638,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217458,6 +221661,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217481,6 +221685,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217503,6 +221708,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217525,6 +221731,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217547,6 +221754,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217570,6 +221778,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217594,6 +221803,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217617,6 +221827,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217640,6 +221851,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217660,6 +221872,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217681,6 +221894,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217703,6 +221917,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217724,6 +221939,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217745,6 +221961,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217766,6 +221983,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217788,6 +222006,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217811,6 +222030,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217833,6 +222053,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217855,6 +222076,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217877,6 +222099,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217900,6 +222123,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217924,6 +222148,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217947,6 +222172,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217970,6 +222196,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217990,6 +222217,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218010,6 +222238,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218031,6 +222260,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218053,6 +222283,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218074,6 +222305,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218095,6 +222327,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218116,6 +222349,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218137,6 +222371,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218159,6 +222394,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218182,6 +222418,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218204,6 +222441,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218226,6 +222464,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218248,6 +222487,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218270,6 +222510,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218293,6 +222534,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218317,6 +222559,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218340,6 +222583,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218362,6 +222606,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218380,6 +222625,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218400,6 +222646,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218421,6 +222668,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218440,6 +222688,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218460,6 +222709,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218481,6 +222731,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218503,6 +222754,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218526,6 +222778,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218548,6 +222801,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218570,6 +222824,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218592,6 +222847,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218615,6 +222871,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218639,6 +222896,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218662,6 +222920,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218685,6 +222944,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218705,6 +222965,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218726,6 +222987,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218748,6 +223010,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218769,6 +223032,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218790,6 +223054,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218811,6 +223076,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218833,6 +223099,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218856,6 +223123,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218878,6 +223146,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218900,6 +223169,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218922,6 +223192,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218945,6 +223216,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218969,6 +223241,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218992,6 +223265,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219015,6 +223289,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219035,6 +223310,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219055,6 +223331,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219076,6 +223353,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219098,6 +223376,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219119,6 +223398,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219140,6 +223420,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219161,6 +223442,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219182,6 +223464,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219204,6 +223487,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219227,6 +223511,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219249,6 +223534,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219271,6 +223557,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219293,6 +223580,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219315,6 +223603,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219338,6 +223627,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219362,6 +223652,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219385,6 +223676,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219407,6 +223699,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219426,6 +223719,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219445,6 +223739,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219464,6 +223759,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219483,6 +223779,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219503,6 +223800,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219524,6 +223822,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219545,6 +223844,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219567,6 +223867,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219589,6 +223890,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219611,6 +223913,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219633,6 +223936,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219655,6 +223959,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219678,6 +223983,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219701,6 +224007,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219723,6 +224030,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219742,6 +224050,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219761,6 +224070,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219780,6 +224090,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219799,6 +224110,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219819,6 +224131,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219840,6 +224153,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219861,6 +224175,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219883,6 +224198,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219905,6 +224221,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219927,6 +224244,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219949,6 +224267,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219971,6 +224290,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219994,6 +224314,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220017,6 +224338,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220039,6 +224361,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID FLAGS access CF: m, PF: m, ZF: m, Valid modes @@ -220060,6 +224383,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID FLAGS access CF: m, PF: m, ZF: m, Valid modes @@ -220080,6 +224404,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID FLAGS access CF: m, PF: m, ZF: m, Valid modes @@ -220101,6 +224426,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID FLAGS access CF: m, PF: m, ZF: m, Valid modes @@ -220122,6 +224448,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID FLAGS access CF: m, PF: m, ZF: m, Valid modes @@ -220143,6 +224470,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID FLAGS access CF: m, PF: m, ZF: m, Valid modes @@ -220164,6 +224492,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID FLAGS access CF: m, PF: m, ZF: m, Valid modes @@ -220184,6 +224513,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID FLAGS access CF: m, PF: m, ZF: m, Valid modes @@ -220205,6 +224535,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID FLAGS access CF: m, PF: m, ZF: m, Valid modes @@ -220226,6 +224557,7 @@ ISA Set: AVX, Ins cat: AVX, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 28 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID FLAGS access CF: m, PF: m, ZF: m, Valid modes diff --git a/bddisasm_test/x86/avx512/avx512fp16_32.result b/bddisasm_test/x86/avx512/avx512fp16_32.result index 0d83a74..8c26d70 100644 --- a/bddisasm_test/x86/avx512/avx512fp16_32.result +++ b/bddisasm_test/x86/avx512/avx512fp16_32.result @@ -2140,6 +2140,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2161,6 +2162,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2182,6 +2184,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2202,6 +2205,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2222,6 +2226,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2242,6 +2247,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2262,6 +2268,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2284,6 +2291,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2306,6 +2314,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2327,6 +2336,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2348,6 +2358,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2371,6 +2382,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2394,6 +2406,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2416,6 +2429,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2438,6 +2452,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2459,6 +2474,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2480,6 +2496,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2502,6 +2519,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2524,6 +2542,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2545,6 +2564,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2566,6 +2586,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2586,6 +2607,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2606,6 +2628,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2626,6 +2649,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2646,6 +2670,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2668,6 +2693,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2690,6 +2716,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2711,6 +2738,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2732,6 +2760,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2755,6 +2784,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2778,6 +2808,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2800,6 +2831,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2822,6 +2854,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2843,6 +2876,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2864,6 +2898,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2886,6 +2921,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2908,6 +2944,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2929,6 +2966,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2950,6 +2988,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2970,6 +3009,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2990,6 +3030,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3010,6 +3051,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3030,6 +3072,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3052,6 +3095,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3074,6 +3118,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3095,6 +3140,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3116,6 +3162,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3139,6 +3186,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3162,6 +3210,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3184,6 +3233,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3206,6 +3256,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3227,6 +3278,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3248,6 +3300,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3270,6 +3323,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3292,6 +3346,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3313,6 +3368,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3334,6 +3390,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3354,6 +3411,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3374,6 +3432,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3394,6 +3453,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3414,6 +3474,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3436,6 +3497,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3458,6 +3520,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3479,6 +3542,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3500,6 +3564,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3523,6 +3588,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3546,6 +3612,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3568,6 +3635,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3590,6 +3658,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3611,6 +3680,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3632,6 +3702,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3654,6 +3725,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3676,6 +3748,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3697,6 +3770,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3718,6 +3792,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3738,6 +3813,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3758,6 +3834,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3778,6 +3855,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3798,6 +3876,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3820,6 +3899,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3842,6 +3922,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3863,6 +3944,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3884,6 +3966,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3907,6 +3990,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3930,6 +4014,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3952,6 +4037,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3974,6 +4060,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3995,6 +4082,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4016,6 +4104,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4038,6 +4127,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4060,6 +4150,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4081,6 +4172,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4102,6 +4194,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4122,6 +4215,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4142,6 +4236,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4162,6 +4257,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4182,6 +4278,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4204,6 +4301,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4226,6 +4324,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4247,6 +4346,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4268,6 +4368,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4291,6 +4392,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4314,6 +4416,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4336,6 +4439,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4358,6 +4462,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4379,6 +4484,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4400,6 +4506,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4422,6 +4529,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4444,6 +4552,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4464,6 +4573,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4484,6 +4594,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4505,6 +4616,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4526,6 +4638,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4548,6 +4661,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4570,6 +4684,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4590,6 +4705,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4610,6 +4726,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4631,6 +4748,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4652,6 +4770,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4674,6 +4793,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4696,6 +4816,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4716,6 +4837,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4736,6 +4858,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4755,6 +4878,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4774,6 +4898,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4795,6 +4920,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4816,6 +4942,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4835,6 +4962,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4854,6 +4982,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4875,6 +5004,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4896,6 +5026,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4916,6 +5047,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4936,6 +5068,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4958,6 +5091,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4980,6 +5114,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5001,6 +5136,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5022,6 +5158,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5044,6 +5181,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5066,6 +5204,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5086,6 +5225,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5106,6 +5246,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5129,6 +5270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5152,6 +5294,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5173,6 +5316,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5194,6 +5338,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5214,6 +5359,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5234,6 +5380,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5253,6 +5400,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5272,6 +5420,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5293,6 +5442,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5314,6 +5464,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5333,6 +5484,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5352,6 +5504,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5373,6 +5526,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5394,6 +5548,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5414,6 +5569,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5434,6 +5590,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5456,6 +5613,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5478,6 +5636,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5499,6 +5658,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5520,6 +5680,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5542,6 +5703,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5564,6 +5726,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5584,6 +5747,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5604,6 +5768,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5627,6 +5792,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5650,6 +5816,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5671,6 +5838,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5692,6 +5860,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5712,6 +5881,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5732,6 +5902,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5751,6 +5922,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5770,6 +5942,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5791,6 +5964,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5812,6 +5986,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5831,6 +6006,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5850,6 +6026,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5871,6 +6048,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5892,6 +6070,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5912,6 +6091,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5932,6 +6112,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5954,6 +6135,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5976,6 +6158,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5997,6 +6180,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6018,6 +6202,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6040,6 +6225,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6062,6 +6248,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6082,6 +6269,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6102,6 +6290,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6125,6 +6314,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6148,6 +6338,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6169,6 +6360,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6190,6 +6382,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6209,6 +6402,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6228,6 +6422,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6248,6 +6443,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6268,6 +6464,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6289,6 +6486,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6310,6 +6508,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6330,6 +6529,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6350,6 +6550,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6369,6 +6570,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6388,6 +6590,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6408,6 +6611,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6428,6 +6632,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6447,6 +6652,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6466,6 +6672,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6486,6 +6693,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6506,6 +6714,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6525,6 +6734,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6544,6 +6754,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6564,6 +6775,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6584,6 +6796,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6603,6 +6816,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6622,6 +6836,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6642,6 +6857,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6662,6 +6878,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6681,6 +6898,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6700,6 +6918,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6720,6 +6939,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6740,6 +6960,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6759,6 +6980,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6778,6 +7000,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6798,6 +7021,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6818,6 +7042,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6837,6 +7062,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6856,6 +7082,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6876,6 +7103,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6896,6 +7124,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6915,6 +7144,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6934,6 +7164,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6954,6 +7185,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6974,6 +7206,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6993,6 +7226,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7012,6 +7246,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7032,6 +7267,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7052,6 +7288,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7071,6 +7308,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7090,6 +7328,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7110,6 +7349,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7130,6 +7370,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7149,6 +7390,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7168,6 +7410,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7188,6 +7431,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7208,6 +7452,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7227,6 +7472,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7246,6 +7492,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7265,6 +7512,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7284,6 +7532,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7302,6 +7551,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7320,6 +7570,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7338,6 +7589,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7356,6 +7608,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7375,6 +7628,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7394,6 +7648,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7412,6 +7667,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7430,6 +7686,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7448,6 +7705,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7466,6 +7724,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7485,6 +7744,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7504,6 +7764,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7522,6 +7783,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7540,6 +7802,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7558,6 +7821,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7576,6 +7840,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7595,6 +7860,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7614,6 +7880,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7632,6 +7899,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7650,6 +7918,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7668,6 +7937,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7686,6 +7956,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7705,6 +7976,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7724,6 +7996,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7742,6 +8015,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7760,6 +8034,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7778,6 +8053,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7796,6 +8072,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7815,6 +8092,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7834,6 +8112,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7852,6 +8131,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7870,6 +8150,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7888,6 +8169,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7906,6 +8188,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7924,6 +8207,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7942,6 +8226,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7960,6 +8245,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7978,6 +8264,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7997,6 +8284,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8016,6 +8304,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8034,6 +8323,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8052,6 +8342,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8070,6 +8361,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8088,6 +8380,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8107,6 +8400,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8126,6 +8420,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8144,6 +8439,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8162,6 +8458,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8180,6 +8477,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8198,6 +8496,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8217,6 +8516,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8236,6 +8536,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8254,6 +8555,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8272,6 +8574,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8290,6 +8593,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8308,6 +8612,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8327,6 +8632,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8346,6 +8652,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8364,6 +8671,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8382,6 +8690,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8400,6 +8709,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8418,6 +8728,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8437,6 +8748,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8456,6 +8768,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8474,6 +8787,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8492,6 +8806,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8510,6 +8825,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8528,6 +8844,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8547,6 +8864,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8566,6 +8884,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8584,6 +8903,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8602,6 +8922,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8620,6 +8941,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8638,6 +8960,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8656,6 +8979,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8674,6 +8998,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8692,6 +9017,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8710,6 +9036,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -8732,6 +9059,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -8754,6 +9082,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -8775,6 +9104,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -8796,6 +9126,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -8817,6 +9148,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -8838,6 +9170,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -8860,6 +9193,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -8882,6 +9216,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -8903,6 +9238,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -8924,6 +9260,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -8945,6 +9282,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -8966,6 +9304,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -8988,6 +9327,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -9010,6 +9350,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -9031,6 +9372,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -9052,6 +9394,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -9073,6 +9416,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -9094,6 +9438,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -9115,6 +9460,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -9136,6 +9482,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -9158,6 +9505,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -9180,6 +9528,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -9201,6 +9550,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -9222,6 +9572,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -9243,6 +9594,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -9264,6 +9616,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -9286,6 +9639,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -9308,6 +9662,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -9329,6 +9684,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -9350,6 +9706,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -9371,6 +9728,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -9392,6 +9750,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -9414,6 +9773,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -9436,6 +9796,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -9457,6 +9818,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -9478,6 +9840,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -9499,6 +9862,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -9520,6 +9884,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -9541,6 +9906,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -9562,6 +9928,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9582,6 +9949,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9602,6 +9970,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9621,6 +9990,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9640,6 +10010,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9661,6 +10032,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9682,6 +10054,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9701,6 +10074,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9720,6 +10094,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9741,6 +10116,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9762,6 +10138,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9782,6 +10159,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9802,6 +10180,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9824,6 +10203,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9846,6 +10226,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9867,6 +10248,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9888,6 +10270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9910,6 +10293,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9932,6 +10316,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9952,6 +10337,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9972,6 +10358,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9995,6 +10382,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10018,6 +10406,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10039,6 +10428,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10060,6 +10450,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10080,6 +10471,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10100,6 +10492,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10119,6 +10512,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10138,6 +10532,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10159,6 +10554,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10180,6 +10576,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10199,6 +10596,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10218,6 +10616,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10239,6 +10638,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10260,6 +10660,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10280,6 +10681,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10300,6 +10702,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10322,6 +10725,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10344,6 +10748,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10365,6 +10770,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10386,6 +10792,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10408,6 +10815,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10430,6 +10838,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10450,6 +10859,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10470,6 +10880,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10493,6 +10904,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10516,6 +10928,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10537,6 +10950,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10558,6 +10972,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10578,6 +10993,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10598,6 +11014,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10617,6 +11034,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10636,6 +11054,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10657,6 +11076,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10678,6 +11098,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10697,6 +11118,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10716,6 +11138,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10737,6 +11160,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10758,6 +11182,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10778,6 +11203,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10798,6 +11224,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10820,6 +11247,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10842,6 +11270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10863,6 +11292,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10884,6 +11314,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10906,6 +11337,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10928,6 +11360,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10948,6 +11381,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10968,6 +11402,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10991,6 +11426,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11014,6 +11450,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11035,6 +11472,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11056,6 +11494,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11075,6 +11514,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11094,6 +11534,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11114,6 +11555,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11134,6 +11576,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11155,6 +11598,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11176,6 +11620,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11197,6 +11642,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11218,6 +11664,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11238,6 +11685,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11258,6 +11706,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11278,6 +11727,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11298,6 +11748,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11320,6 +11771,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11342,6 +11794,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11363,6 +11816,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11384,6 +11838,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11407,6 +11862,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11430,6 +11886,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11452,6 +11909,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11474,6 +11932,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11495,6 +11954,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11516,6 +11976,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11538,6 +11999,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11560,6 +12022,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11581,6 +12044,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11602,6 +12066,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11622,6 +12087,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11642,6 +12108,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11662,6 +12129,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11682,6 +12150,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11704,6 +12173,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11726,6 +12196,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11747,6 +12218,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11768,6 +12240,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11791,6 +12264,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11814,6 +12288,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11836,6 +12311,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11858,6 +12334,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11879,6 +12356,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11900,6 +12378,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11922,6 +12401,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11944,6 +12424,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11965,6 +12446,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11986,6 +12468,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12006,6 +12489,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12026,6 +12510,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12046,6 +12531,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12066,6 +12552,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12088,6 +12575,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12110,6 +12598,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12131,6 +12620,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12152,6 +12642,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12175,6 +12666,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12198,6 +12690,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12220,6 +12713,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12242,6 +12736,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12263,6 +12758,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12284,6 +12780,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12306,6 +12803,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12328,6 +12826,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12349,6 +12848,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12370,6 +12870,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12390,6 +12891,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12410,6 +12912,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12430,6 +12933,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12450,6 +12954,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12472,6 +12977,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12494,6 +13000,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12515,6 +13022,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12536,6 +13044,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12559,6 +13068,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12582,6 +13092,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12604,6 +13115,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12626,6 +13138,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12647,6 +13160,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12668,6 +13182,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12690,6 +13205,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12712,6 +13228,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12733,6 +13250,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12754,6 +13272,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12774,6 +13293,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12794,6 +13314,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12814,6 +13335,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12834,6 +13356,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12856,6 +13379,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12878,6 +13402,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12899,6 +13424,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12920,6 +13446,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12943,6 +13470,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12966,6 +13494,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12988,6 +13517,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13010,6 +13540,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13031,6 +13562,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13052,6 +13584,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13074,6 +13607,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13096,6 +13630,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13117,6 +13652,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13138,6 +13674,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13158,6 +13695,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13178,6 +13716,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13198,6 +13737,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13218,6 +13758,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13240,6 +13781,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13262,6 +13804,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13283,6 +13826,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13304,6 +13848,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13327,6 +13872,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13350,6 +13896,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13372,6 +13919,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13394,6 +13942,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13415,6 +13964,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13436,6 +13986,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13458,6 +14009,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13480,6 +14032,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13500,6 +14053,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13520,6 +14074,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13541,6 +14096,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13562,6 +14118,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13584,6 +14141,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13606,6 +14164,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13626,6 +14185,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13646,6 +14206,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13667,6 +14228,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13688,6 +14250,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13710,6 +14273,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13732,6 +14296,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13753,6 +14318,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13774,6 +14340,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13794,6 +14361,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13814,6 +14382,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13836,6 +14405,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13858,6 +14428,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13878,6 +14449,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13898,6 +14470,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13920,6 +14493,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13942,6 +14516,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13963,6 +14538,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13984,6 +14560,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14007,6 +14584,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14030,6 +14608,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14052,6 +14631,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14074,6 +14654,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14097,6 +14678,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14120,6 +14702,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14141,6 +14724,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14162,6 +14746,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14186,6 +14771,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14210,6 +14796,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14232,6 +14819,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14254,6 +14842,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14275,6 +14864,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14296,6 +14886,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14316,6 +14907,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14336,6 +14928,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14358,6 +14951,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14380,6 +14974,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14400,6 +14995,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14420,6 +15016,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14442,6 +15039,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14464,6 +15062,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14485,6 +15084,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14506,6 +15106,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14529,6 +15130,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14552,6 +15154,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14574,6 +15177,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14596,6 +15200,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14619,6 +15224,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14642,6 +15248,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14663,6 +15270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14684,6 +15292,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14708,6 +15317,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14732,6 +15342,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14754,6 +15365,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14776,6 +15388,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14797,6 +15410,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14818,6 +15432,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14838,6 +15453,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14858,6 +15474,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14880,6 +15497,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14902,6 +15520,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14922,6 +15541,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14942,6 +15562,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14964,6 +15585,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14986,6 +15608,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15007,6 +15630,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15028,6 +15652,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15051,6 +15676,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15074,6 +15700,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15096,6 +15723,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15118,6 +15746,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15141,6 +15770,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15164,6 +15794,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15185,6 +15816,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15206,6 +15838,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15230,6 +15863,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15254,6 +15888,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15276,6 +15911,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15298,6 +15934,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15319,6 +15956,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15340,6 +15978,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15360,6 +15999,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15380,6 +16020,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15402,6 +16043,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15424,6 +16066,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15444,6 +16087,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15464,6 +16108,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15486,6 +16131,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15508,6 +16154,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15529,6 +16176,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15550,6 +16198,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15573,6 +16222,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15596,6 +16246,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15618,6 +16269,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15640,6 +16292,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15663,6 +16316,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15686,6 +16340,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15707,6 +16362,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15728,6 +16384,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15752,6 +16409,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15776,6 +16434,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15798,6 +16457,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15820,6 +16480,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15841,6 +16502,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15862,6 +16524,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15882,6 +16545,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15902,6 +16566,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15924,6 +16589,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15946,6 +16612,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15966,6 +16633,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15986,6 +16654,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16008,6 +16677,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16030,6 +16700,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16051,6 +16722,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16072,6 +16744,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16095,6 +16768,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16118,6 +16792,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16140,6 +16815,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16162,6 +16838,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16185,6 +16862,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16208,6 +16886,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16229,6 +16908,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16250,6 +16930,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16274,6 +16955,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16298,6 +16980,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16320,6 +17003,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16342,6 +17026,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16363,6 +17048,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16384,6 +17070,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16404,6 +17091,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16424,6 +17112,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16446,6 +17135,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16468,6 +17158,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16488,6 +17179,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16508,6 +17200,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16530,6 +17223,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16552,6 +17246,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16573,6 +17268,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16594,6 +17290,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16617,6 +17314,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16640,6 +17338,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16662,6 +17361,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16684,6 +17384,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16707,6 +17408,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16730,6 +17432,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16751,6 +17454,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16772,6 +17476,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16796,6 +17501,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16820,6 +17526,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16842,6 +17549,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16864,6 +17572,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16884,6 +17593,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16904,6 +17614,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16925,6 +17636,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16946,6 +17658,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16968,6 +17681,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16990,6 +17704,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17010,6 +17725,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17030,6 +17746,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17051,6 +17768,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17072,6 +17790,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17094,6 +17813,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17116,6 +17836,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17137,6 +17858,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17158,6 +17880,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17178,6 +17901,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17198,6 +17922,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17218,6 +17943,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17238,6 +17964,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17260,6 +17987,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17282,6 +18010,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17303,6 +18032,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17324,6 +18054,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17347,6 +18078,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17370,6 +18102,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17392,6 +18125,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17414,6 +18148,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17435,6 +18170,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17456,6 +18192,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17478,6 +18215,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17500,6 +18238,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17521,6 +18260,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17542,6 +18282,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17562,6 +18303,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17582,6 +18324,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17602,6 +18345,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17622,6 +18366,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17644,6 +18389,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17666,6 +18412,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17687,6 +18434,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17708,6 +18456,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17731,6 +18480,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17754,6 +18504,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17776,6 +18527,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17798,6 +18550,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17819,6 +18572,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17840,6 +18594,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17862,6 +18617,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17884,6 +18640,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17905,6 +18662,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17926,6 +18684,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17946,6 +18705,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17966,6 +18726,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17986,6 +18747,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18006,6 +18768,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18028,6 +18791,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18050,6 +18814,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18071,6 +18836,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18092,6 +18858,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18115,6 +18882,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18138,6 +18906,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18160,6 +18929,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18182,6 +18952,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18203,6 +18974,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18224,6 +18996,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18246,6 +19019,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18268,6 +19042,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18289,6 +19064,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18310,6 +19086,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18330,6 +19107,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18350,6 +19128,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18370,6 +19149,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18390,6 +19170,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18412,6 +19193,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18434,6 +19216,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18455,6 +19238,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18476,6 +19260,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18499,6 +19284,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18522,6 +19308,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18544,6 +19331,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18566,6 +19354,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18587,6 +19376,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18608,6 +19398,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18630,6 +19421,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18652,6 +19444,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18673,6 +19466,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18694,6 +19488,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18714,6 +19509,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18734,6 +19530,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18754,6 +19551,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18774,6 +19572,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18796,6 +19595,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18818,6 +19618,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18839,6 +19640,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18860,6 +19662,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18883,6 +19686,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18906,6 +19710,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18928,6 +19733,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18950,6 +19756,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18971,6 +19778,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18992,6 +19800,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19014,6 +19823,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19036,6 +19846,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19057,6 +19868,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19078,6 +19890,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19098,6 +19911,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19118,6 +19932,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19138,6 +19953,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19158,6 +19974,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19180,6 +19997,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19202,6 +20020,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19223,6 +20042,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19244,6 +20064,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19267,6 +20088,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19290,6 +20112,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19312,6 +20135,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19334,6 +20158,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19355,6 +20180,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19376,6 +20202,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19398,6 +20225,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19420,6 +20248,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19440,6 +20269,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19460,6 +20290,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19481,6 +20312,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19502,6 +20334,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19524,6 +20357,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19546,6 +20380,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19566,6 +20401,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19586,6 +20422,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19607,6 +20444,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19628,6 +20466,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19650,6 +20489,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19672,6 +20512,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19693,6 +20534,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19714,6 +20556,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19734,6 +20577,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19754,6 +20598,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19776,6 +20621,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19798,6 +20644,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19818,6 +20665,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19838,6 +20686,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19860,6 +20709,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19882,6 +20732,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19903,6 +20754,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19924,6 +20776,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19947,6 +20800,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19970,6 +20824,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19992,6 +20847,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20014,6 +20870,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20037,6 +20894,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20060,6 +20918,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20081,6 +20940,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20102,6 +20962,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20126,6 +20987,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20150,6 +21012,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20172,6 +21035,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20194,6 +21058,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20215,6 +21080,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20236,6 +21102,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20256,6 +21123,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20276,6 +21144,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20298,6 +21167,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20320,6 +21190,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20340,6 +21211,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20360,6 +21232,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20382,6 +21255,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20404,6 +21278,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20425,6 +21300,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20446,6 +21322,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20469,6 +21346,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20492,6 +21370,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20514,6 +21393,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20536,6 +21416,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20559,6 +21440,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20582,6 +21464,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20603,6 +21486,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20624,6 +21508,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20648,6 +21533,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20672,6 +21558,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20694,6 +21581,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20716,6 +21604,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20737,6 +21626,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20758,6 +21648,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20778,6 +21669,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20798,6 +21690,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20820,6 +21713,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20842,6 +21736,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20862,6 +21757,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20882,6 +21778,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20904,6 +21801,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20926,6 +21824,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20947,6 +21846,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20968,6 +21868,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20991,6 +21892,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21014,6 +21916,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21036,6 +21939,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21058,6 +21962,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21081,6 +21986,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21104,6 +22010,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21125,6 +22032,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21146,6 +22054,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21170,6 +22079,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21194,6 +22104,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21216,6 +22127,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21238,6 +22150,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21259,6 +22172,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21280,6 +22194,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21300,6 +22215,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21320,6 +22236,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21342,6 +22259,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21364,6 +22282,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21384,6 +22303,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21404,6 +22324,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21426,6 +22347,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21448,6 +22370,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21469,6 +22392,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21490,6 +22414,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21513,6 +22438,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21536,6 +22462,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21558,6 +22485,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21580,6 +22508,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21603,6 +22532,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21626,6 +22556,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21647,6 +22578,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21668,6 +22600,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21692,6 +22625,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21716,6 +22650,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21738,6 +22673,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21760,6 +22696,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21781,6 +22718,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21802,6 +22740,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21822,6 +22761,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21842,6 +22782,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21864,6 +22805,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21886,6 +22828,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21906,6 +22849,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21926,6 +22870,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21948,6 +22893,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21970,6 +22916,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21991,6 +22938,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22012,6 +22960,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22035,6 +22984,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22058,6 +23008,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22080,6 +23031,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22102,6 +23054,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22125,6 +23078,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22148,6 +23102,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22169,6 +23124,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22190,6 +23146,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22214,6 +23171,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22238,6 +23196,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22260,6 +23219,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22282,6 +23242,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22303,6 +23264,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22324,6 +23286,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22344,6 +23307,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22364,6 +23328,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22386,6 +23351,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22408,6 +23374,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22428,6 +23395,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22448,6 +23416,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22470,6 +23439,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22492,6 +23462,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22513,6 +23484,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22534,6 +23506,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22557,6 +23530,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22580,6 +23554,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22602,6 +23577,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22624,6 +23600,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22647,6 +23624,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22670,6 +23648,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22691,6 +23670,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22712,6 +23692,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22736,6 +23717,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22760,6 +23742,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22782,6 +23765,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22804,6 +23788,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22824,6 +23809,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22844,6 +23830,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22865,6 +23852,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22886,6 +23874,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22908,6 +23897,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22930,6 +23920,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22950,6 +23941,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22970,6 +23962,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22991,6 +23984,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23012,6 +24006,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23034,6 +24029,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23056,6 +24052,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23077,6 +24074,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23098,6 +24096,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23118,6 +24117,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23138,6 +24138,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23158,6 +24159,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23178,6 +24180,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23200,6 +24203,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23222,6 +24226,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23243,6 +24248,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23264,6 +24270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23287,6 +24294,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23310,6 +24318,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23332,6 +24341,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23354,6 +24364,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23375,6 +24386,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23396,6 +24408,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23418,6 +24431,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23440,6 +24454,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23461,6 +24476,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23482,6 +24498,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23502,6 +24519,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23522,6 +24540,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23542,6 +24561,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23562,6 +24582,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23584,6 +24605,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23606,6 +24628,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23627,6 +24650,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23648,6 +24672,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23671,6 +24696,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23694,6 +24720,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23716,6 +24743,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23738,6 +24766,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23759,6 +24788,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23780,6 +24810,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23802,6 +24833,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23824,6 +24856,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23845,6 +24878,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23866,6 +24900,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23886,6 +24921,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23906,6 +24942,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23926,6 +24963,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23946,6 +24984,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23968,6 +25007,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23990,6 +25030,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24011,6 +25052,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24032,6 +25074,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24055,6 +25098,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24078,6 +25122,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24100,6 +25145,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24122,6 +25168,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24143,6 +25190,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24164,6 +25212,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24186,6 +25235,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24208,6 +25258,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24229,6 +25280,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24250,6 +25302,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24270,6 +25323,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24290,6 +25344,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24310,6 +25365,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24330,6 +25386,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24352,6 +25409,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24374,6 +25432,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24395,6 +25454,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24416,6 +25476,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24439,6 +25500,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24462,6 +25524,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24484,6 +25547,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24506,6 +25570,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24527,6 +25592,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24548,6 +25614,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24570,6 +25637,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24592,6 +25660,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24613,6 +25682,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24634,6 +25704,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24654,6 +25725,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24674,6 +25746,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24694,6 +25767,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24714,6 +25788,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24736,6 +25811,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24758,6 +25834,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24779,6 +25856,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24800,6 +25878,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24823,6 +25902,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24846,6 +25926,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24868,6 +25949,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24890,6 +25972,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24911,6 +25994,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24932,6 +26016,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24954,6 +26039,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24976,6 +26062,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24997,6 +26084,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25018,6 +26106,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25038,6 +26127,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25058,6 +26148,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25078,6 +26169,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25098,6 +26190,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25120,6 +26213,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25142,6 +26236,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25163,6 +26258,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25184,6 +26280,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25207,6 +26304,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25230,6 +26328,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25252,6 +26351,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25274,6 +26374,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25295,6 +26396,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25316,6 +26418,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25338,6 +26441,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25360,6 +26464,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25380,6 +26485,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25400,6 +26506,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25421,6 +26528,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25442,6 +26550,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25464,6 +26573,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25486,6 +26596,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25506,6 +26617,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25526,6 +26638,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25547,6 +26660,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25568,6 +26682,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25590,6 +26705,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25612,6 +26728,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25632,6 +26749,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25652,6 +26770,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25671,6 +26790,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25690,6 +26810,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25711,6 +26832,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25732,6 +26854,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25751,6 +26874,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25770,6 +26894,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25791,6 +26916,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25812,6 +26938,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25832,6 +26959,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25852,6 +26980,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25874,6 +27003,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25896,6 +27026,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25917,6 +27048,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25938,6 +27070,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25960,6 +27093,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25982,6 +27116,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26002,6 +27137,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26022,6 +27158,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26045,6 +27182,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26068,6 +27206,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26089,6 +27228,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26110,6 +27250,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26130,6 +27271,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26150,6 +27292,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26169,6 +27312,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26188,6 +27332,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26209,6 +27354,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26230,6 +27376,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26249,6 +27396,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26268,6 +27416,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26289,6 +27438,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26310,6 +27460,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26330,6 +27481,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26350,6 +27502,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26372,6 +27525,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26394,6 +27548,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26415,6 +27570,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26436,6 +27592,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26458,6 +27615,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26480,6 +27638,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26500,6 +27659,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26520,6 +27680,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26543,6 +27704,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26566,6 +27728,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26587,6 +27750,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26608,6 +27772,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26628,6 +27793,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26648,6 +27814,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26667,6 +27834,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26686,6 +27854,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26707,6 +27876,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26728,6 +27898,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26747,6 +27918,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26766,6 +27938,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26787,6 +27960,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26808,6 +27982,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26828,6 +28003,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26848,6 +28024,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26870,6 +28047,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26892,6 +28070,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26913,6 +28092,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26934,6 +28114,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26956,6 +28137,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26978,6 +28160,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26998,6 +28181,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27018,6 +28202,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27041,6 +28226,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27064,6 +28250,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27085,6 +28272,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27106,6 +28294,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27125,6 +28314,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27144,6 +28334,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27164,6 +28355,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27184,6 +28376,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27205,6 +28398,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27226,6 +28420,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27246,6 +28441,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27266,6 +28462,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27285,6 +28482,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27304,6 +28502,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27325,6 +28524,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27346,6 +28546,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27365,6 +28566,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27384,6 +28586,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27405,6 +28608,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27426,6 +28630,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27446,6 +28651,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27466,6 +28672,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27488,6 +28695,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27510,6 +28718,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27531,6 +28740,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27552,6 +28762,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27574,6 +28785,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27596,6 +28808,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27616,6 +28829,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27636,6 +28850,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27659,6 +28874,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27682,6 +28898,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27703,6 +28920,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27724,6 +28942,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27744,6 +28963,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27764,6 +28984,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27783,6 +29004,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27802,6 +29024,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27823,6 +29046,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27844,6 +29068,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27863,6 +29088,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27882,6 +29108,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27903,6 +29130,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27924,6 +29152,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27944,6 +29173,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27964,6 +29194,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27986,6 +29217,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28008,6 +29240,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28029,6 +29262,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28050,6 +29284,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28072,6 +29307,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28094,6 +29330,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28114,6 +29351,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28134,6 +29372,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28157,6 +29396,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28180,6 +29420,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28201,6 +29442,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28222,6 +29464,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28242,6 +29485,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28262,6 +29506,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28281,6 +29526,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28300,6 +29546,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28321,6 +29568,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28342,6 +29590,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28361,6 +29610,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28380,6 +29630,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28401,6 +29652,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28422,6 +29674,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28442,6 +29695,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28462,6 +29716,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28484,6 +29739,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28506,6 +29762,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28527,6 +29784,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28548,6 +29806,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28570,6 +29829,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28592,6 +29852,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28612,6 +29873,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28632,6 +29894,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28655,6 +29918,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28678,6 +29942,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28699,6 +29964,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28720,6 +29986,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28739,6 +30006,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28758,6 +30026,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28778,6 +30047,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28798,6 +30068,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28819,6 +30090,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28840,6 +30112,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28861,6 +30134,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28882,6 +30156,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28902,6 +30177,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28922,6 +30198,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28942,6 +30219,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28962,6 +30240,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28984,6 +30263,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29006,6 +30286,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29027,6 +30308,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29048,6 +30330,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29071,6 +30354,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29094,6 +30378,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29116,6 +30401,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29138,6 +30424,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29159,6 +30446,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29180,6 +30468,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29202,6 +30491,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29224,6 +30514,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29245,6 +30536,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29266,6 +30558,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29286,6 +30579,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29306,6 +30600,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29326,6 +30621,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29346,6 +30642,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29368,6 +30665,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29390,6 +30688,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29411,6 +30710,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29432,6 +30732,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29455,6 +30756,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29478,6 +30780,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29500,6 +30803,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29522,6 +30826,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29543,6 +30848,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29564,6 +30870,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29586,6 +30893,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29608,6 +30916,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29629,6 +30938,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29650,6 +30960,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29670,6 +30981,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29690,6 +31002,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29710,6 +31023,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29730,6 +31044,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29752,6 +31067,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29774,6 +31090,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29795,6 +31112,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29816,6 +31134,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29839,6 +31158,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29862,6 +31182,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29884,6 +31205,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29906,6 +31228,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29927,6 +31250,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29948,6 +31272,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29970,6 +31295,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29992,6 +31318,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30013,6 +31340,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30034,6 +31362,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30054,6 +31383,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30074,6 +31404,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30094,6 +31425,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30114,6 +31446,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30136,6 +31469,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30158,6 +31492,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30179,6 +31514,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30200,6 +31536,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30223,6 +31560,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30246,6 +31584,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30268,6 +31607,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30290,6 +31630,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30311,6 +31652,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30332,6 +31674,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30354,6 +31697,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30376,6 +31720,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30397,6 +31742,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30418,6 +31764,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30438,6 +31785,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30458,6 +31806,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30478,6 +31827,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30498,6 +31848,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30520,6 +31871,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30542,6 +31894,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30563,6 +31916,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30584,6 +31938,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30607,6 +31962,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30630,6 +31986,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30652,6 +32009,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30674,6 +32032,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30695,6 +32054,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30716,6 +32076,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30738,6 +32099,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30760,6 +32122,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30781,6 +32144,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30802,6 +32166,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30822,6 +32187,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30842,6 +32208,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30862,6 +32229,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30882,6 +32250,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30904,6 +32273,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30926,6 +32296,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30947,6 +32318,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30968,6 +32340,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30991,6 +32364,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31014,6 +32388,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31036,6 +32411,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31058,6 +32434,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31079,6 +32456,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31100,6 +32478,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31122,6 +32501,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31144,6 +32524,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31164,6 +32545,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31184,6 +32566,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31205,6 +32588,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31226,6 +32610,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31248,6 +32633,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31270,6 +32656,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31290,6 +32677,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31310,6 +32698,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31331,6 +32720,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31352,6 +32742,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31374,6 +32765,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31396,6 +32788,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31417,6 +32810,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31438,6 +32832,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31458,6 +32853,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31478,6 +32874,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31498,6 +32895,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31518,6 +32916,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31540,6 +32939,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31562,6 +32962,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31583,6 +32984,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31604,6 +33006,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31627,6 +33030,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31650,6 +33054,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31672,6 +33077,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31694,6 +33100,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31715,6 +33122,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31736,6 +33144,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31758,6 +33167,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31780,6 +33190,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31801,6 +33212,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31822,6 +33234,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31842,6 +33255,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31862,6 +33276,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31882,6 +33297,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31902,6 +33318,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31924,6 +33341,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31946,6 +33364,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31967,6 +33386,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31988,6 +33408,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32011,6 +33432,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32034,6 +33456,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32056,6 +33479,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32078,6 +33502,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32099,6 +33524,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32120,6 +33546,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32142,6 +33569,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32164,6 +33592,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32185,6 +33614,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32206,6 +33636,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32226,6 +33657,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32246,6 +33678,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32266,6 +33699,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32286,6 +33720,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32308,6 +33743,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32330,6 +33766,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32351,6 +33788,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32372,6 +33810,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32395,6 +33834,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32418,6 +33858,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32440,6 +33881,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32462,6 +33904,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32483,6 +33926,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32504,6 +33948,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32526,6 +33971,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32548,6 +33994,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32569,6 +34016,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32590,6 +34038,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32610,6 +34059,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32630,6 +34080,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32650,6 +34101,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32670,6 +34122,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32692,6 +34145,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32714,6 +34168,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32735,6 +34190,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32756,6 +34212,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32779,6 +34236,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32802,6 +34260,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32824,6 +34283,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32846,6 +34306,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32867,6 +34328,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32888,6 +34350,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32910,6 +34373,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32932,6 +34396,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32953,6 +34418,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32974,6 +34440,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32994,6 +34461,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33014,6 +34482,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33034,6 +34503,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33054,6 +34524,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33076,6 +34547,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33098,6 +34570,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33119,6 +34592,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33140,6 +34614,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33163,6 +34638,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33186,6 +34662,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33208,6 +34685,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33230,6 +34708,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33251,6 +34730,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33272,6 +34752,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33294,6 +34775,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33316,6 +34798,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33337,6 +34820,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33358,6 +34842,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33378,6 +34863,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33398,6 +34884,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33418,6 +34905,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33438,6 +34926,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33460,6 +34949,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33482,6 +34972,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33503,6 +34994,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33524,6 +35016,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33547,6 +35040,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33570,6 +35064,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33592,6 +35087,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33614,6 +35110,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33635,6 +35132,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33656,6 +35154,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33678,6 +35177,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33700,6 +35200,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33720,6 +35221,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33740,6 +35242,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33761,6 +35264,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33782,6 +35286,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33804,6 +35309,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33826,6 +35332,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33846,6 +35353,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33866,6 +35374,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33887,6 +35396,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33908,6 +35418,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33930,6 +35441,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33952,6 +35464,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33972,6 +35485,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33992,6 +35506,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34011,6 +35526,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34030,6 +35546,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34051,6 +35568,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34072,6 +35590,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34091,6 +35610,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34110,6 +35630,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34131,6 +35652,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34152,6 +35674,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34172,6 +35695,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34192,6 +35716,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34214,6 +35739,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34236,6 +35762,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34257,6 +35784,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34278,6 +35806,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34300,6 +35829,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34322,6 +35852,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34342,6 +35873,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34362,6 +35894,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34385,6 +35918,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34408,6 +35942,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34429,6 +35964,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34450,6 +35986,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34470,6 +36007,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34490,6 +36028,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34509,6 +36048,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34528,6 +36068,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34549,6 +36090,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34570,6 +36112,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34589,6 +36132,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34608,6 +36152,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34629,6 +36174,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34650,6 +36196,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34670,6 +36217,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34690,6 +36238,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34712,6 +36261,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34734,6 +36284,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34755,6 +36306,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34776,6 +36328,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34798,6 +36351,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34820,6 +36374,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34840,6 +36395,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34860,6 +36416,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34883,6 +36440,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34906,6 +36464,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34927,6 +36486,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34948,6 +36508,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34968,6 +36529,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34988,6 +36550,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35007,6 +36570,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35026,6 +36590,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35047,6 +36612,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35068,6 +36634,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35087,6 +36654,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35106,6 +36674,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35127,6 +36696,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35148,6 +36718,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35168,6 +36739,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35188,6 +36760,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35210,6 +36783,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35232,6 +36806,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35253,6 +36828,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35274,6 +36850,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35296,6 +36873,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35318,6 +36896,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35338,6 +36917,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35358,6 +36938,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35381,6 +36962,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35404,6 +36986,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35425,6 +37008,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35446,6 +37030,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35466,6 +37051,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35486,6 +37072,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35505,6 +37092,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35524,6 +37112,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35545,6 +37134,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35566,6 +37156,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35585,6 +37176,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35604,6 +37196,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35625,6 +37218,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35646,6 +37240,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35666,6 +37261,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35686,6 +37282,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35708,6 +37305,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35730,6 +37328,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35751,6 +37350,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35772,6 +37372,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35794,6 +37395,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35816,6 +37418,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35836,6 +37439,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35856,6 +37460,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35879,6 +37484,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35902,6 +37508,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35923,6 +37530,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35944,6 +37552,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35964,6 +37573,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35984,6 +37594,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36003,6 +37614,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36022,6 +37634,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36043,6 +37656,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36064,6 +37678,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36083,6 +37698,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36102,6 +37718,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36123,6 +37740,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36144,6 +37762,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36164,6 +37783,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36184,6 +37804,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36206,6 +37827,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36228,6 +37850,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36249,6 +37872,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36270,6 +37894,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36292,6 +37917,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36314,6 +37940,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36334,6 +37961,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36354,6 +37982,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36377,6 +38006,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36400,6 +38030,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36421,6 +38052,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36442,6 +38074,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36462,6 +38095,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36482,6 +38116,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36501,6 +38136,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36520,6 +38156,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36541,6 +38178,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36562,6 +38200,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36581,6 +38220,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36600,6 +38240,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36621,6 +38262,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36642,6 +38284,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36662,6 +38305,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36682,6 +38326,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36704,6 +38349,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36726,6 +38372,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36747,6 +38394,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36768,6 +38416,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36790,6 +38439,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36812,6 +38462,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36832,6 +38483,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36852,6 +38504,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36875,6 +38528,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36898,6 +38552,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36919,6 +38574,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36940,6 +38596,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36959,6 +38616,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36978,6 +38636,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36998,6 +38657,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37018,6 +38678,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37039,6 +38700,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37060,6 +38722,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37079,6 +38742,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37098,6 +38762,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37118,6 +38783,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37138,6 +38804,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37159,6 +38826,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37180,6 +38848,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37200,6 +38869,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37220,6 +38890,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37239,6 +38910,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37258,6 +38930,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37279,6 +38952,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37300,6 +38974,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37319,6 +38994,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37338,6 +39014,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37359,6 +39036,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37380,6 +39058,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37400,6 +39079,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37420,6 +39100,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37442,6 +39123,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37464,6 +39146,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37485,6 +39168,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37506,6 +39190,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37528,6 +39213,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37550,6 +39236,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37570,6 +39257,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37590,6 +39278,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37613,6 +39302,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37636,6 +39326,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37657,6 +39348,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37678,6 +39370,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37698,6 +39391,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37718,6 +39412,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37737,6 +39432,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37756,6 +39452,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37777,6 +39474,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37798,6 +39496,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37817,6 +39516,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37836,6 +39536,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37857,6 +39558,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37878,6 +39580,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37898,6 +39601,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37918,6 +39622,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37940,6 +39645,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37962,6 +39668,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37983,6 +39690,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38004,6 +39712,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38026,6 +39735,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38048,6 +39758,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38068,6 +39779,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38088,6 +39800,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38111,6 +39824,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38134,6 +39848,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38155,6 +39870,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38176,6 +39892,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38196,6 +39913,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38216,6 +39934,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38235,6 +39954,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38254,6 +39974,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38275,6 +39996,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38296,6 +40018,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38315,6 +40038,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38334,6 +40058,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38355,6 +40080,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38376,6 +40102,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38396,6 +40123,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38416,6 +40144,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38438,6 +40167,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38460,6 +40190,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38481,6 +40212,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38502,6 +40234,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38524,6 +40257,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38546,6 +40280,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38566,6 +40301,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38586,6 +40322,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38609,6 +40346,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38632,6 +40370,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38653,6 +40392,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38674,6 +40414,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38693,6 +40434,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38712,6 +40454,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38732,6 +40475,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38752,6 +40496,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38773,6 +40518,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38794,6 +40540,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38814,6 +40561,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38834,6 +40582,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38853,6 +40602,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38872,6 +40622,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38893,6 +40644,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38914,6 +40666,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38933,6 +40686,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38952,6 +40706,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38973,6 +40728,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38994,6 +40750,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39014,6 +40771,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39034,6 +40792,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39056,6 +40815,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39078,6 +40838,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39099,6 +40860,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39120,6 +40882,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39142,6 +40905,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39164,6 +40928,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39184,6 +40949,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39204,6 +40970,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39227,6 +40994,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39250,6 +41018,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39271,6 +41040,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39292,6 +41062,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39312,6 +41083,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39332,6 +41104,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39351,6 +41124,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39370,6 +41144,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39391,6 +41166,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39412,6 +41188,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39431,6 +41208,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39450,6 +41228,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39471,6 +41250,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39492,6 +41272,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39512,6 +41293,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39532,6 +41314,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39554,6 +41337,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39576,6 +41360,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39597,6 +41382,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39618,6 +41404,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39640,6 +41427,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39662,6 +41450,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39682,6 +41471,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39702,6 +41492,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39725,6 +41516,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39748,6 +41540,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39769,6 +41562,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39790,6 +41584,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39810,6 +41605,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39830,6 +41626,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39849,6 +41646,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39868,6 +41666,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39889,6 +41688,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39910,6 +41710,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39929,6 +41730,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39948,6 +41750,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39969,6 +41772,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39990,6 +41794,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40010,6 +41815,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40030,6 +41836,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40052,6 +41859,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40074,6 +41882,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40095,6 +41904,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40116,6 +41926,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40138,6 +41949,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40160,6 +41972,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40180,6 +41993,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40200,6 +42014,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40223,6 +42038,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40246,6 +42062,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40267,6 +42084,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40288,6 +42106,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40307,6 +42126,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40326,6 +42146,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40346,6 +42167,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40366,6 +42188,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40387,6 +42210,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40408,6 +42232,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40429,6 +42254,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40450,6 +42276,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40470,6 +42297,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40490,6 +42318,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40512,6 +42341,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40534,6 +42364,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40554,6 +42385,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40574,6 +42406,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40596,6 +42429,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40618,6 +42452,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40639,6 +42474,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40660,6 +42496,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40683,6 +42520,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40706,6 +42544,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40728,6 +42567,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40750,6 +42590,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40773,6 +42614,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40796,6 +42638,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40817,6 +42660,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40838,6 +42682,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40862,6 +42707,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40886,6 +42732,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40908,6 +42755,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40930,6 +42778,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40951,6 +42800,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40972,6 +42822,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40992,6 +42843,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41012,6 +42864,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41034,6 +42887,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41056,6 +42910,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41076,6 +42931,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41096,6 +42952,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41118,6 +42975,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41140,6 +42998,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41161,6 +43020,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41182,6 +43042,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41205,6 +43066,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41228,6 +43090,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41250,6 +43113,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41272,6 +43136,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41295,6 +43160,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41318,6 +43184,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41339,6 +43206,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41360,6 +43228,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41384,6 +43253,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41408,6 +43278,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41430,6 +43301,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41452,6 +43324,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41473,6 +43346,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41494,6 +43368,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41514,6 +43389,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41534,6 +43410,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41556,6 +43433,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41578,6 +43456,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41598,6 +43477,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41618,6 +43498,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41640,6 +43521,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41662,6 +43544,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41683,6 +43566,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41704,6 +43588,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41727,6 +43612,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41750,6 +43636,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41772,6 +43659,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41794,6 +43682,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41817,6 +43706,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41840,6 +43730,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41861,6 +43752,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41882,6 +43774,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41906,6 +43799,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41930,6 +43824,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41952,6 +43847,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41974,6 +43870,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41995,6 +43892,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42016,6 +43914,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42036,6 +43935,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42056,6 +43956,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42078,6 +43979,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42100,6 +44002,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42120,6 +44023,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42140,6 +44044,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42162,6 +44067,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42184,6 +44090,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42205,6 +44112,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42226,6 +44134,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42249,6 +44158,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42272,6 +44182,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42294,6 +44205,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42316,6 +44228,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42339,6 +44252,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42362,6 +44276,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42383,6 +44298,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42404,6 +44320,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42428,6 +44345,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42452,6 +44370,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42474,6 +44393,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42496,6 +44416,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42517,6 +44438,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42538,6 +44460,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42558,6 +44481,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42578,6 +44502,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42600,6 +44525,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42622,6 +44548,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42642,6 +44569,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42662,6 +44590,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42684,6 +44613,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42706,6 +44636,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42727,6 +44658,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42748,6 +44680,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42771,6 +44704,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42794,6 +44728,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42816,6 +44751,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42838,6 +44774,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42861,6 +44798,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42884,6 +44822,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42905,6 +44844,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42926,6 +44866,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42950,6 +44891,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42974,6 +44916,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42996,6 +44939,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43018,6 +44962,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43039,6 +44984,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43060,6 +45006,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43080,6 +45027,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43100,6 +45048,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43122,6 +45071,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43144,6 +45094,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43164,6 +45115,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43184,6 +45136,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43206,6 +45159,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43228,6 +45182,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43249,6 +45204,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43270,6 +45226,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43293,6 +45250,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43316,6 +45274,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43338,6 +45297,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43360,6 +45320,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43383,6 +45344,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43406,6 +45368,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43427,6 +45390,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43448,6 +45412,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43472,6 +45437,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43496,6 +45462,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43518,6 +45485,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43540,6 +45508,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43560,6 +45529,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43580,6 +45550,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43601,6 +45572,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43622,6 +45594,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43644,6 +45617,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43666,6 +45640,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43686,6 +45661,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43706,6 +45682,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43727,6 +45704,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43748,6 +45726,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43770,6 +45749,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43792,6 +45772,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43813,6 +45794,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43834,6 +45816,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43854,6 +45837,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43874,6 +45858,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43894,6 +45879,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43914,6 +45900,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43936,6 +45923,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43958,6 +45946,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43979,6 +45968,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44000,6 +45990,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44023,6 +46014,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44046,6 +46038,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44068,6 +46061,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44090,6 +46084,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44111,6 +46106,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44132,6 +46128,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44154,6 +46151,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44176,6 +46174,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44197,6 +46196,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44218,6 +46218,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44238,6 +46239,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44258,6 +46260,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44278,6 +46281,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44298,6 +46302,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44320,6 +46325,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44342,6 +46348,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44363,6 +46370,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44384,6 +46392,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44407,6 +46416,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44430,6 +46440,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44452,6 +46463,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44474,6 +46486,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44495,6 +46508,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44516,6 +46530,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44538,6 +46553,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44560,6 +46576,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44581,6 +46598,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44602,6 +46620,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44622,6 +46641,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44642,6 +46662,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44662,6 +46683,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44682,6 +46704,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44704,6 +46727,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44726,6 +46750,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44747,6 +46772,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44768,6 +46794,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44791,6 +46818,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44814,6 +46842,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44836,6 +46865,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44858,6 +46888,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44879,6 +46910,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44900,6 +46932,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44922,6 +46955,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44944,6 +46978,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44965,6 +47000,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44986,6 +47022,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45006,6 +47043,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45026,6 +47064,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45046,6 +47085,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45066,6 +47106,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45088,6 +47129,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45110,6 +47152,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45131,6 +47174,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45152,6 +47196,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45175,6 +47220,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45198,6 +47244,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45220,6 +47267,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45242,6 +47290,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45263,6 +47312,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45284,6 +47334,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45306,6 +47357,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45328,6 +47380,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45349,6 +47402,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45370,6 +47424,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45390,6 +47445,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45410,6 +47466,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45430,6 +47487,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45450,6 +47508,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45472,6 +47531,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45494,6 +47554,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45515,6 +47576,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45536,6 +47598,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45559,6 +47622,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45582,6 +47646,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45604,6 +47669,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45626,6 +47692,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45647,6 +47714,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45668,6 +47736,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45690,6 +47759,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45712,6 +47782,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45733,6 +47804,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45754,6 +47826,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45774,6 +47847,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45794,6 +47868,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45814,6 +47889,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45834,6 +47910,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45856,6 +47933,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45878,6 +47956,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45899,6 +47978,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45920,6 +48000,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45943,6 +48024,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45966,6 +48048,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45988,6 +48071,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46010,6 +48094,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46031,6 +48116,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46052,6 +48138,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46074,6 +48161,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46096,6 +48184,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46116,6 +48205,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46136,6 +48226,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46157,6 +48248,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46178,6 +48270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46200,6 +48293,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46222,6 +48316,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46242,6 +48337,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46262,6 +48358,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46283,6 +48380,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46304,6 +48402,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46326,6 +48425,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46348,6 +48448,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46369,6 +48470,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46390,6 +48492,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46410,6 +48513,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46430,6 +48534,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46452,6 +48557,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46474,6 +48580,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46494,6 +48601,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46514,6 +48622,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46536,6 +48645,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46558,6 +48668,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46579,6 +48690,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46600,6 +48712,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46623,6 +48736,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46646,6 +48760,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46668,6 +48783,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46690,6 +48806,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46713,6 +48830,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46736,6 +48854,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46757,6 +48876,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46778,6 +48898,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46802,6 +48923,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46826,6 +48948,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46848,6 +48971,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46870,6 +48994,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46891,6 +49016,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46912,6 +49038,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46932,6 +49059,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46952,6 +49080,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46974,6 +49103,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46996,6 +49126,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47016,6 +49147,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47036,6 +49168,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47058,6 +49191,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47080,6 +49214,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47101,6 +49236,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47122,6 +49258,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47145,6 +49282,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47168,6 +49306,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47190,6 +49329,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47212,6 +49352,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47235,6 +49376,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47258,6 +49400,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47279,6 +49422,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47300,6 +49444,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47324,6 +49469,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47348,6 +49494,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47370,6 +49517,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47392,6 +49540,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47413,6 +49562,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47434,6 +49584,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47454,6 +49605,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47474,6 +49626,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47496,6 +49649,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47518,6 +49672,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47538,6 +49693,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47558,6 +49714,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47580,6 +49737,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47602,6 +49760,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47623,6 +49782,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47644,6 +49804,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47667,6 +49828,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47690,6 +49852,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47712,6 +49875,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47734,6 +49898,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47757,6 +49922,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47780,6 +49946,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47801,6 +49968,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47822,6 +49990,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47846,6 +50015,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47870,6 +50040,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47892,6 +50063,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47914,6 +50086,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47935,6 +50108,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47956,6 +50130,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47976,6 +50151,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47996,6 +50172,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48018,6 +50195,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48040,6 +50218,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48060,6 +50239,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48080,6 +50260,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48102,6 +50283,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48124,6 +50306,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48145,6 +50328,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48166,6 +50350,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48189,6 +50374,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48212,6 +50398,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48234,6 +50421,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48256,6 +50444,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48279,6 +50468,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48302,6 +50492,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48323,6 +50514,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48344,6 +50536,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48368,6 +50561,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48392,6 +50586,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48414,6 +50609,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48436,6 +50632,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48457,6 +50654,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48478,6 +50676,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48498,6 +50697,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48518,6 +50718,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48540,6 +50741,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48562,6 +50764,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48582,6 +50785,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48602,6 +50806,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48624,6 +50829,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48646,6 +50852,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48667,6 +50874,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48688,6 +50896,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48711,6 +50920,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48734,6 +50944,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48756,6 +50967,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48778,6 +50990,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48801,6 +51014,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48824,6 +51038,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48845,6 +51060,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48866,6 +51082,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48890,6 +51107,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48914,6 +51132,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48936,6 +51155,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48958,6 +51178,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48979,6 +51200,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49000,6 +51222,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49020,6 +51243,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49040,6 +51264,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49062,6 +51287,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49084,6 +51310,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49104,6 +51331,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49124,6 +51352,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49146,6 +51375,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49168,6 +51398,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49189,6 +51420,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49210,6 +51442,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49233,6 +51466,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49256,6 +51490,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49278,6 +51513,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49300,6 +51536,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49323,6 +51560,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49346,6 +51584,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49367,6 +51606,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49388,6 +51628,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49412,6 +51653,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49436,6 +51678,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49458,6 +51701,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49480,6 +51724,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49500,6 +51745,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49520,6 +51766,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49541,6 +51788,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49562,6 +51810,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49584,6 +51833,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49606,6 +51856,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49626,6 +51877,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49646,6 +51898,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49667,6 +51920,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49688,6 +51942,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49710,6 +51965,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49732,6 +51988,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49753,6 +52010,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49774,6 +52032,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49794,6 +52053,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49814,6 +52074,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49834,6 +52095,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49854,6 +52116,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49876,6 +52139,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49898,6 +52162,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49919,6 +52184,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49940,6 +52206,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49963,6 +52230,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49986,6 +52254,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50008,6 +52277,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50030,6 +52300,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50051,6 +52322,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50072,6 +52344,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50094,6 +52367,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50116,6 +52390,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50137,6 +52412,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50158,6 +52434,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50178,6 +52455,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50198,6 +52476,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50218,6 +52497,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50238,6 +52518,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50260,6 +52541,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50282,6 +52564,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50303,6 +52586,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50324,6 +52608,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50347,6 +52632,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50370,6 +52656,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50392,6 +52679,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50414,6 +52702,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50435,6 +52724,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50456,6 +52746,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50478,6 +52769,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50500,6 +52792,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50521,6 +52814,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50542,6 +52836,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50562,6 +52857,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50582,6 +52878,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50602,6 +52899,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50622,6 +52920,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50644,6 +52943,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50666,6 +52966,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50687,6 +52988,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50708,6 +53010,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50731,6 +53034,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50754,6 +53058,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50776,6 +53081,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50798,6 +53104,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50819,6 +53126,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50840,6 +53148,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50862,6 +53171,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50884,6 +53194,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50905,6 +53216,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50926,6 +53238,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50946,6 +53259,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50966,6 +53280,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50986,6 +53301,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51006,6 +53322,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51028,6 +53345,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51050,6 +53368,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51071,6 +53390,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51092,6 +53412,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51115,6 +53436,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51138,6 +53460,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51160,6 +53483,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51182,6 +53506,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51203,6 +53528,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51224,6 +53550,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51246,6 +53573,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51268,6 +53596,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51289,6 +53618,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51310,6 +53640,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51330,6 +53661,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51350,6 +53682,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51370,6 +53703,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51390,6 +53724,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51412,6 +53747,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51434,6 +53770,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51455,6 +53792,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51476,6 +53814,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51499,6 +53838,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51522,6 +53862,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51544,6 +53885,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51566,6 +53908,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51587,6 +53930,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51608,6 +53952,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51630,6 +53975,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51652,6 +53998,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51673,6 +54020,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51694,6 +54042,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51714,6 +54063,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51734,6 +54084,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51754,6 +54105,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51774,6 +54126,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51796,6 +54149,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51818,6 +54172,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51839,6 +54194,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51860,6 +54216,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51883,6 +54240,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51906,6 +54264,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51928,6 +54287,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51950,6 +54310,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51971,6 +54332,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51992,6 +54354,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52014,6 +54377,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52036,6 +54400,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52056,6 +54421,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52076,6 +54442,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52097,6 +54464,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52118,6 +54486,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52140,6 +54509,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52162,6 +54532,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52182,6 +54553,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52202,6 +54574,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52223,6 +54596,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52244,6 +54618,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52266,6 +54641,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52288,6 +54664,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52309,6 +54686,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52330,6 +54708,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52350,6 +54729,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52370,6 +54750,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52392,6 +54773,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52414,6 +54796,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52434,6 +54817,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52454,6 +54838,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52476,6 +54861,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52498,6 +54884,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52519,6 +54906,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52540,6 +54928,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52563,6 +54952,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52586,6 +54976,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52608,6 +54999,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52630,6 +55022,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52653,6 +55046,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52676,6 +55070,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52697,6 +55092,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52718,6 +55114,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52742,6 +55139,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52766,6 +55164,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52788,6 +55187,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52810,6 +55210,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52831,6 +55232,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52852,6 +55254,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52872,6 +55275,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52892,6 +55296,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52914,6 +55319,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52936,6 +55342,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52956,6 +55363,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52976,6 +55384,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52998,6 +55407,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53020,6 +55430,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53041,6 +55452,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53062,6 +55474,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53085,6 +55498,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53108,6 +55522,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53130,6 +55545,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53152,6 +55568,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53175,6 +55592,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53198,6 +55616,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53219,6 +55638,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53240,6 +55660,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53264,6 +55685,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53288,6 +55710,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53310,6 +55733,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53332,6 +55756,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53353,6 +55778,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53374,6 +55800,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53394,6 +55821,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53414,6 +55842,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53436,6 +55865,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53458,6 +55888,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53478,6 +55909,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53498,6 +55930,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53520,6 +55953,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53542,6 +55976,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53563,6 +55998,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53584,6 +56020,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53607,6 +56044,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53630,6 +56068,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53652,6 +56091,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53674,6 +56114,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53697,6 +56138,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53720,6 +56162,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53741,6 +56184,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53762,6 +56206,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53786,6 +56231,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53810,6 +56256,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53832,6 +56279,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53854,6 +56302,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53875,6 +56324,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53896,6 +56346,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53916,6 +56367,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53936,6 +56388,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53958,6 +56411,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53980,6 +56434,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54000,6 +56455,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54020,6 +56476,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54042,6 +56499,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54064,6 +56522,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54085,6 +56544,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54106,6 +56566,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54129,6 +56590,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54152,6 +56614,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54174,6 +56637,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54196,6 +56660,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54219,6 +56684,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54242,6 +56708,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54263,6 +56730,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54284,6 +56752,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54308,6 +56777,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54332,6 +56802,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54354,6 +56825,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54376,6 +56848,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54397,6 +56870,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54418,6 +56892,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54438,6 +56913,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54458,6 +56934,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54480,6 +56957,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54502,6 +56980,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54522,6 +57001,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54542,6 +57022,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54564,6 +57045,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54586,6 +57068,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54607,6 +57090,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54628,6 +57112,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54651,6 +57136,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54674,6 +57160,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54696,6 +57183,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54718,6 +57206,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54741,6 +57230,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54764,6 +57254,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54785,6 +57276,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54806,6 +57298,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54830,6 +57323,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54854,6 +57348,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54876,6 +57371,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54898,6 +57394,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54919,6 +57416,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54940,6 +57438,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54960,6 +57459,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54980,6 +57480,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55002,6 +57503,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55024,6 +57526,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55044,6 +57547,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55064,6 +57568,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55086,6 +57591,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55108,6 +57614,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55129,6 +57636,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55150,6 +57658,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55173,6 +57682,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55196,6 +57706,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55218,6 +57729,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55240,6 +57752,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55263,6 +57776,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55286,6 +57800,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55307,6 +57822,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55328,6 +57844,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55352,6 +57869,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55376,6 +57894,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55398,6 +57917,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55420,6 +57940,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55440,6 +57961,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55460,6 +57982,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55481,6 +58004,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55502,6 +58026,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55524,6 +58049,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55546,6 +58072,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55566,6 +58093,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55586,6 +58114,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55607,6 +58136,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55628,6 +58158,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55650,6 +58181,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55672,6 +58204,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55693,6 +58226,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55714,6 +58248,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55734,6 +58269,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55754,6 +58290,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55774,6 +58311,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55794,6 +58332,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55816,6 +58355,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55838,6 +58378,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55859,6 +58400,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55880,6 +58422,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55903,6 +58446,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55926,6 +58470,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55948,6 +58493,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55970,6 +58516,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55991,6 +58538,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56012,6 +58560,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56034,6 +58583,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56056,6 +58606,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56077,6 +58628,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56098,6 +58650,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56118,6 +58671,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56138,6 +58692,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56158,6 +58713,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56178,6 +58734,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56200,6 +58757,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56222,6 +58780,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56243,6 +58802,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56264,6 +58824,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56287,6 +58848,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56310,6 +58872,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56332,6 +58895,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56354,6 +58918,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56375,6 +58940,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56396,6 +58962,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56418,6 +58985,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56440,6 +59008,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56461,6 +59030,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56482,6 +59052,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56502,6 +59073,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56522,6 +59094,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56542,6 +59115,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56562,6 +59136,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56584,6 +59159,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56606,6 +59182,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56627,6 +59204,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56648,6 +59226,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56671,6 +59250,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56694,6 +59274,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56716,6 +59297,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56738,6 +59320,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56759,6 +59342,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56780,6 +59364,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56802,6 +59387,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56824,6 +59410,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56845,6 +59432,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56866,6 +59454,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56886,6 +59475,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56906,6 +59496,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56926,6 +59517,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56946,6 +59538,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56968,6 +59561,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56990,6 +59584,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57011,6 +59606,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57032,6 +59628,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57055,6 +59652,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57078,6 +59676,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57100,6 +59699,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57122,6 +59722,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57143,6 +59744,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57164,6 +59766,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57186,6 +59789,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57208,6 +59812,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57229,6 +59834,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57250,6 +59856,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57270,6 +59877,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57290,6 +59898,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57310,6 +59919,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57330,6 +59940,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57352,6 +59963,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57374,6 +59986,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57395,6 +60008,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57416,6 +60030,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57439,6 +60054,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57462,6 +60078,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57484,6 +60101,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57506,6 +60124,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57527,6 +60146,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57548,6 +60168,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57570,6 +60191,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57592,6 +60214,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57613,6 +60236,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57634,6 +60258,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57654,6 +60279,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57674,6 +60300,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57694,6 +60321,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57714,6 +60342,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57736,6 +60365,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57758,6 +60388,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57779,6 +60410,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57800,6 +60432,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57823,6 +60456,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57846,6 +60480,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57868,6 +60503,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57890,6 +60526,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57911,6 +60548,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57932,6 +60570,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57954,6 +60593,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57976,6 +60616,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57996,6 +60637,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58016,6 +60658,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58037,6 +60680,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58058,6 +60702,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58080,6 +60725,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58102,6 +60748,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58122,6 +60769,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58142,6 +60790,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58163,6 +60812,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58184,6 +60834,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58206,6 +60857,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58228,6 +60880,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58249,6 +60902,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58270,6 +60924,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58290,6 +60945,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58310,6 +60966,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58332,6 +60989,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58354,6 +61012,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58374,6 +61033,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58394,6 +61054,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58416,6 +61077,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58438,6 +61100,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58459,6 +61122,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58480,6 +61144,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58503,6 +61168,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58526,6 +61192,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58548,6 +61215,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58570,6 +61238,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58593,6 +61262,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58616,6 +61286,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58637,6 +61308,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58658,6 +61330,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58682,6 +61355,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58706,6 +61380,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58728,6 +61403,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58750,6 +61426,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58771,6 +61448,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58792,6 +61470,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58812,6 +61491,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58832,6 +61512,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58854,6 +61535,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58876,6 +61558,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58896,6 +61579,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58916,6 +61600,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58938,6 +61623,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58960,6 +61646,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58981,6 +61668,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59002,6 +61690,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59025,6 +61714,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59048,6 +61738,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59070,6 +61761,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59092,6 +61784,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59115,6 +61808,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59138,6 +61832,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59159,6 +61854,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59180,6 +61876,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59204,6 +61901,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59228,6 +61926,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59250,6 +61949,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59272,6 +61972,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59293,6 +61994,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59314,6 +62016,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59334,6 +62037,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59354,6 +62058,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59376,6 +62081,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59398,6 +62104,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59418,6 +62125,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59438,6 +62146,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59460,6 +62169,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59482,6 +62192,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59503,6 +62214,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59524,6 +62236,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59547,6 +62260,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59570,6 +62284,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59592,6 +62307,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59614,6 +62330,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59637,6 +62354,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59660,6 +62378,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59681,6 +62400,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59702,6 +62422,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59726,6 +62447,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59750,6 +62472,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59772,6 +62495,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59794,6 +62518,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59815,6 +62540,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59836,6 +62562,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59856,6 +62583,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59876,6 +62604,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59898,6 +62627,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59920,6 +62650,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59940,6 +62671,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59960,6 +62692,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59982,6 +62715,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60004,6 +62738,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60025,6 +62760,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60046,6 +62782,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60069,6 +62806,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60092,6 +62830,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60114,6 +62853,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60136,6 +62876,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60159,6 +62900,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60182,6 +62924,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60203,6 +62946,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60224,6 +62968,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60248,6 +62993,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60272,6 +63018,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60294,6 +63041,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60316,6 +63064,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60337,6 +63086,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60358,6 +63108,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60378,6 +63129,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60398,6 +63150,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60420,6 +63173,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60442,6 +63196,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60462,6 +63217,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60482,6 +63238,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60504,6 +63261,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60526,6 +63284,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60547,6 +63306,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60568,6 +63328,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60591,6 +63352,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60614,6 +63376,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60636,6 +63399,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60658,6 +63422,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60681,6 +63446,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60704,6 +63470,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60725,6 +63492,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60746,6 +63514,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60770,6 +63539,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60794,6 +63564,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60816,6 +63587,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60838,6 +63610,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60859,6 +63632,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60880,6 +63654,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60900,6 +63675,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60920,6 +63696,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60942,6 +63719,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60964,6 +63742,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60984,6 +63763,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61004,6 +63784,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61026,6 +63807,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61048,6 +63830,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61069,6 +63852,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61090,6 +63874,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61113,6 +63898,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61136,6 +63922,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61158,6 +63945,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61180,6 +63968,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61203,6 +63992,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61226,6 +64016,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61247,6 +64038,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61268,6 +64060,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61292,6 +64085,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61316,6 +64110,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61338,6 +64133,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61360,6 +64156,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61380,6 +64177,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61400,6 +64198,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61421,6 +64220,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61442,6 +64242,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61464,6 +64265,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61486,6 +64288,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61506,6 +64309,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61526,6 +64330,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61547,6 +64352,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61568,6 +64374,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61590,6 +64397,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61612,6 +64420,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61633,6 +64442,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61654,6 +64464,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61674,6 +64485,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61694,6 +64506,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61714,6 +64527,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61734,6 +64548,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61756,6 +64571,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61778,6 +64594,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61799,6 +64616,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61820,6 +64638,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61843,6 +64662,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61866,6 +64686,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61888,6 +64709,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61910,6 +64732,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61931,6 +64754,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61952,6 +64776,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61974,6 +64799,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61996,6 +64822,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62017,6 +64844,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62038,6 +64866,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62058,6 +64887,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62078,6 +64908,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62098,6 +64929,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62118,6 +64950,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62140,6 +64973,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62162,6 +64996,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62183,6 +65018,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62204,6 +65040,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62227,6 +65064,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62250,6 +65088,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62272,6 +65111,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62294,6 +65134,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62315,6 +65156,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62336,6 +65178,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62358,6 +65201,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62380,6 +65224,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62401,6 +65246,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62422,6 +65268,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62442,6 +65289,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62462,6 +65310,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62482,6 +65331,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62502,6 +65352,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62524,6 +65375,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62546,6 +65398,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62567,6 +65420,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62588,6 +65442,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62611,6 +65466,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62634,6 +65490,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62656,6 +65513,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62678,6 +65536,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62699,6 +65558,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62720,6 +65580,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62742,6 +65603,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62764,6 +65626,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62785,6 +65648,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62806,6 +65670,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62826,6 +65691,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62846,6 +65712,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62866,6 +65733,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62886,6 +65754,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62908,6 +65777,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62930,6 +65800,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62951,6 +65822,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62972,6 +65844,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62995,6 +65868,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63018,6 +65892,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63040,6 +65915,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63062,6 +65938,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63083,6 +65960,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63104,6 +65982,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63126,6 +66005,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63148,6 +66028,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63169,6 +66050,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63190,6 +66072,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63210,6 +66093,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63230,6 +66114,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63250,6 +66135,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63270,6 +66156,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63292,6 +66179,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63314,6 +66202,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63335,6 +66224,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63356,6 +66246,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63379,6 +66270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63402,6 +66294,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63424,6 +66317,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63446,6 +66340,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63467,6 +66362,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63488,6 +66384,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63510,6 +66407,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63532,6 +66430,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63553,6 +66452,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63574,6 +66474,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63594,6 +66495,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63614,6 +66516,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63634,6 +66537,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63654,6 +66558,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63676,6 +66581,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63698,6 +66604,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63719,6 +66626,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63740,6 +66648,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63763,6 +66672,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63786,6 +66696,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63808,6 +66719,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63830,6 +66742,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63851,6 +66764,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63872,6 +66786,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63894,6 +66809,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63916,6 +66832,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63936,6 +66853,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63956,6 +66874,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63977,6 +66896,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63998,6 +66918,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64020,6 +66941,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64042,6 +66964,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64062,6 +66985,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64082,6 +67006,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64103,6 +67028,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64124,6 +67050,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64146,6 +67073,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64316,6 +67244,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64336,6 +67265,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64356,6 +67286,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64375,6 +67306,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64394,6 +67326,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64415,6 +67348,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64436,6 +67370,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64455,6 +67390,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64474,6 +67410,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64495,6 +67432,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64516,6 +67454,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64536,6 +67475,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64556,6 +67496,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64578,6 +67519,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64600,6 +67542,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64621,6 +67564,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64642,6 +67586,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64664,6 +67609,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64686,6 +67632,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64706,6 +67653,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64726,6 +67674,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64749,6 +67698,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64772,6 +67722,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64793,6 +67744,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64814,6 +67766,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64834,6 +67787,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64854,6 +67808,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64873,6 +67828,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64892,6 +67848,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64913,6 +67870,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64934,6 +67892,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64953,6 +67912,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64972,6 +67932,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64993,6 +67954,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65014,6 +67976,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65034,6 +67997,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65054,6 +68018,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65076,6 +68041,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65098,6 +68064,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65119,6 +68086,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65140,6 +68108,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65162,6 +68131,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65184,6 +68154,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65204,6 +68175,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65224,6 +68196,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65247,6 +68220,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65270,6 +68244,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65291,6 +68266,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65312,6 +68288,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65332,6 +68309,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65352,6 +68330,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65371,6 +68350,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65390,6 +68370,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65411,6 +68392,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65432,6 +68414,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65451,6 +68434,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65470,6 +68454,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65491,6 +68476,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65512,6 +68498,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65532,6 +68519,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65552,6 +68540,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65574,6 +68563,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65596,6 +68586,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65617,6 +68608,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65638,6 +68630,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65660,6 +68653,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65682,6 +68676,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65702,6 +68697,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65722,6 +68718,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65745,6 +68742,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65768,6 +68766,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65789,6 +68788,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65810,6 +68810,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65829,6 +68830,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65848,6 +68850,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65868,6 +68871,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65888,6 +68892,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65909,6 +68914,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65930,6 +68936,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65950,6 +68957,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65970,6 +68978,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65989,6 +68998,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66008,6 +69018,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66029,6 +69040,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66050,6 +69062,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66069,6 +69082,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66088,6 +69102,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66109,6 +69124,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66130,6 +69146,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66150,6 +69167,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66170,6 +69188,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66192,6 +69211,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66214,6 +69234,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66235,6 +69256,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66256,6 +69278,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66278,6 +69301,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66300,6 +69324,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66320,6 +69345,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66340,6 +69366,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66363,6 +69390,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66386,6 +69414,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66407,6 +69436,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66428,6 +69458,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66448,6 +69479,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66468,6 +69500,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66487,6 +69520,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66506,6 +69540,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66527,6 +69562,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66548,6 +69584,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66567,6 +69604,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66586,6 +69624,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66607,6 +69646,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66628,6 +69668,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66648,6 +69689,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66668,6 +69710,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66690,6 +69733,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66712,6 +69756,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66733,6 +69778,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66754,6 +69800,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66776,6 +69823,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66798,6 +69846,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66818,6 +69867,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66838,6 +69888,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66861,6 +69912,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66884,6 +69936,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66905,6 +69958,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66926,6 +69980,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66946,6 +70001,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66966,6 +70022,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66985,6 +70042,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67004,6 +70062,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67025,6 +70084,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67046,6 +70106,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67065,6 +70126,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67084,6 +70146,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67105,6 +70168,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67126,6 +70190,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67146,6 +70211,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67166,6 +70232,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67188,6 +70255,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67210,6 +70278,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67231,6 +70300,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67252,6 +70322,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67274,6 +70345,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67296,6 +70368,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67316,6 +70389,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67336,6 +70410,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67359,6 +70434,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67382,6 +70458,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67403,6 +70480,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67424,6 +70502,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67443,6 +70522,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67462,6 +70542,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67482,6 +70563,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67502,6 +70584,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67523,6 +70606,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67544,6 +70628,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67563,6 +70648,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67582,6 +70668,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67600,6 +70687,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67618,6 +70706,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67636,6 +70725,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67654,6 +70744,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67673,6 +70764,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67692,6 +70784,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67710,6 +70803,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67728,6 +70822,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67746,6 +70841,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67764,6 +70860,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67783,6 +70880,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67802,6 +70900,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67820,6 +70919,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67838,6 +70938,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67856,6 +70957,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67874,6 +70976,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67892,6 +70995,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67910,6 +71014,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67930,6 +71035,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67950,6 +71056,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67969,6 +71076,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67988,6 +71096,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68009,6 +71118,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68030,6 +71140,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68049,6 +71160,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68068,6 +71180,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68089,6 +71202,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68110,6 +71224,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68130,6 +71245,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68150,6 +71266,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68172,6 +71289,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68194,6 +71312,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68215,6 +71334,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68236,6 +71356,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68258,6 +71379,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68280,6 +71402,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68300,6 +71423,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68320,6 +71444,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68343,6 +71468,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68366,6 +71492,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68387,6 +71514,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68408,6 +71536,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68428,6 +71557,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68448,6 +71578,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68467,6 +71598,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68486,6 +71618,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68507,6 +71640,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68528,6 +71662,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68547,6 +71682,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68566,6 +71702,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68587,6 +71724,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68608,6 +71746,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68628,6 +71767,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68648,6 +71788,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68670,6 +71811,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68692,6 +71834,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68713,6 +71856,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68734,6 +71878,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68756,6 +71901,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68778,6 +71924,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68798,6 +71945,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68818,6 +71966,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68841,6 +71990,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68864,6 +72014,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68885,6 +72036,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68906,6 +72058,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68926,6 +72079,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68946,6 +72100,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68965,6 +72120,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68984,6 +72140,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69005,6 +72162,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69026,6 +72184,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69045,6 +72204,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69064,6 +72224,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69085,6 +72246,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69106,6 +72268,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69126,6 +72289,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69146,6 +72310,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69168,6 +72333,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69190,6 +72356,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69211,6 +72378,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69232,6 +72400,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69254,6 +72423,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69276,6 +72446,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69296,6 +72467,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69316,6 +72488,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69339,6 +72512,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69362,6 +72536,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69383,6 +72558,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69404,6 +72580,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69423,6 +72600,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69442,6 +72620,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69462,6 +72641,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69482,6 +72662,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69503,6 +72684,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69524,6 +72706,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69544,6 +72727,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69564,6 +72748,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69583,6 +72768,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69602,6 +72788,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69623,6 +72810,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69644,6 +72832,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69663,6 +72852,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69682,6 +72872,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69703,6 +72894,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69724,6 +72916,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69744,6 +72937,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69764,6 +72958,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69786,6 +72981,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69808,6 +73004,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69829,6 +73026,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69850,6 +73048,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69872,6 +73071,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69894,6 +73094,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69914,6 +73115,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69934,6 +73136,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69957,6 +73160,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69980,6 +73184,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70001,6 +73206,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70022,6 +73228,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70042,6 +73249,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70062,6 +73270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70081,6 +73290,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70100,6 +73310,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70121,6 +73332,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70142,6 +73354,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70161,6 +73374,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70180,6 +73394,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70201,6 +73416,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70222,6 +73438,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70242,6 +73459,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70262,6 +73480,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70284,6 +73503,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70306,6 +73526,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70327,6 +73548,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70348,6 +73570,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70370,6 +73593,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70392,6 +73616,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70412,6 +73637,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70432,6 +73658,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70455,6 +73682,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70478,6 +73706,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70499,6 +73728,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70520,6 +73750,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70540,6 +73771,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70560,6 +73792,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70579,6 +73812,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70598,6 +73832,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70619,6 +73854,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70640,6 +73876,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70659,6 +73896,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70678,6 +73916,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70699,6 +73938,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70720,6 +73960,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70740,6 +73981,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70760,6 +74002,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70782,6 +74025,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70804,6 +74048,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70825,6 +74070,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70846,6 +74092,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70868,6 +74115,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70890,6 +74138,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70910,6 +74159,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70930,6 +74180,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70953,6 +74204,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70976,6 +74228,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70997,6 +74250,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71018,6 +74272,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71037,6 +74292,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71056,6 +74312,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71076,6 +74333,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71096,6 +74354,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71117,6 +74376,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71138,6 +74398,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71157,6 +74418,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71176,6 +74438,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71194,6 +74457,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71212,6 +74476,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71230,6 +74495,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71248,6 +74514,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71267,6 +74534,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71286,6 +74554,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71304,6 +74573,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71322,6 +74592,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71340,6 +74611,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71358,6 +74630,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71377,6 +74650,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71396,6 +74670,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71414,6 +74689,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71432,6 +74708,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71450,6 +74727,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71468,6 +74746,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71487,6 +74766,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71506,6 +74786,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71524,6 +74805,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71542,6 +74824,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71560,6 +74843,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71578,6 +74862,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71597,6 +74882,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71616,6 +74902,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71634,6 +74921,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71652,6 +74940,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71670,6 +74959,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71688,6 +74978,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71707,6 +74998,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71726,6 +75018,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71744,6 +75037,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71762,6 +75056,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71780,6 +75075,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71798,6 +75094,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71816,6 +75113,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71834,6 +75132,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71852,6 +75151,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71870,6 +75170,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71890,6 +75191,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71910,6 +75212,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71929,6 +75232,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71948,6 +75252,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71969,6 +75274,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71990,6 +75296,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72009,6 +75316,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72028,6 +75336,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72049,6 +75358,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72070,6 +75380,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72090,6 +75401,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72110,6 +75422,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72132,6 +75445,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72154,6 +75468,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72175,6 +75490,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72196,6 +75512,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72218,6 +75535,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72240,6 +75558,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72260,6 +75579,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72280,6 +75600,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72303,6 +75624,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72326,6 +75648,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72347,6 +75670,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72368,6 +75692,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72388,6 +75713,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72408,6 +75734,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72427,6 +75754,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72446,6 +75774,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72467,6 +75796,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72488,6 +75818,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72507,6 +75838,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72526,6 +75858,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72547,6 +75880,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72568,6 +75902,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72588,6 +75923,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72608,6 +75944,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72630,6 +75967,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72652,6 +75990,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72673,6 +76012,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72694,6 +76034,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72716,6 +76057,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72738,6 +76080,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72758,6 +76101,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72778,6 +76122,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72801,6 +76146,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72824,6 +76170,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72845,6 +76192,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72866,6 +76214,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72886,6 +76235,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72906,6 +76256,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72925,6 +76276,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72944,6 +76296,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72965,6 +76318,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72986,6 +76340,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73005,6 +76360,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73024,6 +76380,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73045,6 +76402,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73066,6 +76424,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73086,6 +76445,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73106,6 +76466,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73128,6 +76489,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73150,6 +76512,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73171,6 +76534,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73192,6 +76556,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73214,6 +76579,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73236,6 +76602,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73256,6 +76623,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73276,6 +76644,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73299,6 +76668,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73322,6 +76692,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73343,6 +76714,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73364,6 +76736,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73383,6 +76756,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73402,6 +76776,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73422,6 +76797,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73442,6 +76818,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73463,6 +76840,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73484,6 +76862,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73504,6 +76883,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73524,6 +76904,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73543,6 +76924,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73562,6 +76944,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73583,6 +76966,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73604,6 +76988,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73623,6 +77008,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73642,6 +77028,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73663,6 +77050,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73684,6 +77072,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73704,6 +77093,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73724,6 +77114,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73746,6 +77137,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73768,6 +77160,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73789,6 +77182,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73810,6 +77204,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73832,6 +77227,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73854,6 +77250,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73874,6 +77271,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73894,6 +77292,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73917,6 +77316,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73940,6 +77340,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73961,6 +77362,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73982,6 +77384,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74002,6 +77405,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74022,6 +77426,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74041,6 +77446,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74060,6 +77466,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74081,6 +77488,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74102,6 +77510,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74121,6 +77530,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74140,6 +77550,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74161,6 +77572,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74182,6 +77594,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74202,6 +77615,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74222,6 +77636,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74244,6 +77659,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74266,6 +77682,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74287,6 +77704,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74308,6 +77726,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74330,6 +77749,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74352,6 +77772,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74372,6 +77793,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74392,6 +77814,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74415,6 +77838,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74438,6 +77862,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74459,6 +77884,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74480,6 +77906,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74500,6 +77927,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74520,6 +77948,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74539,6 +77968,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74558,6 +77988,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74579,6 +78010,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74600,6 +78032,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74619,6 +78052,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74638,6 +78072,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74659,6 +78094,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74680,6 +78116,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74700,6 +78137,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74720,6 +78158,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74742,6 +78181,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74764,6 +78204,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74785,6 +78226,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74806,6 +78248,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74828,6 +78271,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74850,6 +78294,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74870,6 +78315,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74890,6 +78336,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74913,6 +78360,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74936,6 +78384,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74957,6 +78406,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74978,6 +78428,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74998,6 +78449,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75018,6 +78470,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75037,6 +78490,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75056,6 +78510,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75077,6 +78532,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75098,6 +78554,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75117,6 +78574,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75136,6 +78594,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75157,6 +78616,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75178,6 +78638,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75198,6 +78659,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75218,6 +78680,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75240,6 +78703,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75262,6 +78726,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75283,6 +78748,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75304,6 +78770,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75326,6 +78793,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75348,6 +78816,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75368,6 +78837,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75388,6 +78858,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75411,6 +78882,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75434,6 +78906,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75455,6 +78928,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75476,6 +78950,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75496,6 +78971,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75516,6 +78992,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75535,6 +79012,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75554,6 +79032,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75575,6 +79054,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75596,6 +79076,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75615,6 +79096,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75634,6 +79116,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75655,6 +79138,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75676,6 +79160,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75696,6 +79181,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75716,6 +79202,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75738,6 +79225,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75760,6 +79248,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75781,6 +79270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75802,6 +79292,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75824,6 +79315,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75846,6 +79338,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75866,6 +79359,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75886,6 +79380,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75909,6 +79404,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75932,6 +79428,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75953,6 +79450,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75974,6 +79472,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75994,6 +79493,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76014,6 +79514,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76033,6 +79534,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76052,6 +79554,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76073,6 +79576,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76094,6 +79598,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76113,6 +79618,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76132,6 +79638,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76153,6 +79660,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76174,6 +79682,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76194,6 +79703,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76214,6 +79724,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76236,6 +79747,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76258,6 +79770,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76279,6 +79792,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76300,6 +79814,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76322,6 +79837,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76344,6 +79860,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76364,6 +79881,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76384,6 +79902,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76407,6 +79926,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76430,6 +79950,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76451,6 +79972,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76472,6 +79994,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76491,6 +80014,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76510,6 +80034,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76530,6 +80055,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76550,6 +80076,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76571,6 +80098,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76592,6 +80120,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76611,6 +80140,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76630,6 +80160,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76650,6 +80181,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76670,6 +80202,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76691,6 +80224,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76712,6 +80246,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76732,6 +80267,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76752,6 +80288,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76771,6 +80308,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76790,6 +80328,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76811,6 +80350,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76832,6 +80372,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76851,6 +80392,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76870,6 +80412,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76891,6 +80434,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76912,6 +80456,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76932,6 +80477,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76952,6 +80498,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76974,6 +80521,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76996,6 +80544,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77017,6 +80566,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77038,6 +80588,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77060,6 +80611,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77082,6 +80634,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77102,6 +80655,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77122,6 +80676,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77145,6 +80700,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77168,6 +80724,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77189,6 +80746,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77210,6 +80768,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77230,6 +80789,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77250,6 +80810,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77269,6 +80830,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77288,6 +80850,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77309,6 +80872,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77330,6 +80894,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77349,6 +80914,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77368,6 +80934,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77389,6 +80956,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77410,6 +80978,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77430,6 +80999,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77450,6 +81020,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77472,6 +81043,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77494,6 +81066,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77515,6 +81088,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77536,6 +81110,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77558,6 +81133,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77580,6 +81156,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77600,6 +81177,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77620,6 +81198,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77643,6 +81222,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77666,6 +81246,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77687,6 +81268,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77708,6 +81290,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77728,6 +81311,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77748,6 +81332,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77767,6 +81352,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77786,6 +81372,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77807,6 +81394,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77828,6 +81416,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77847,6 +81436,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77866,6 +81456,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77887,6 +81478,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77908,6 +81500,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77928,6 +81521,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77948,6 +81542,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77970,6 +81565,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77992,6 +81588,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78013,6 +81610,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78034,6 +81632,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78056,6 +81655,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78078,6 +81678,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78098,6 +81699,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78118,6 +81720,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78141,6 +81744,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78164,6 +81768,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78185,6 +81790,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78206,6 +81812,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78225,6 +81832,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78244,6 +81852,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78264,6 +81873,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78284,6 +81894,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78305,6 +81916,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78326,6 +81938,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78346,6 +81959,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78366,6 +81980,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78385,6 +82000,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78404,6 +82020,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78423,6 +82040,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78442,6 +82060,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78462,6 +82081,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78482,6 +82102,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78501,6 +82122,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78520,6 +82142,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78539,6 +82162,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78558,6 +82182,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78578,6 +82203,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78598,6 +82224,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78617,6 +82244,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78636,6 +82264,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78655,6 +82284,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78674,6 +82304,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78694,6 +82325,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78714,6 +82346,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78733,6 +82366,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78752,6 +82386,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78771,6 +82406,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78790,6 +82426,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78810,6 +82447,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78830,6 +82468,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78849,6 +82488,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78868,6 +82508,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78887,6 +82528,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78906,6 +82548,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78926,6 +82569,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78946,6 +82590,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78965,6 +82610,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78984,6 +82630,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79003,6 +82650,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79022,6 +82670,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79042,6 +82691,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79062,6 +82712,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79081,6 +82732,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79100,6 +82752,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79119,6 +82772,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79138,6 +82792,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79158,6 +82813,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79178,6 +82834,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79197,6 +82854,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79216,6 +82874,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79235,6 +82894,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79254,6 +82914,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79274,6 +82935,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79294,6 +82956,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79313,6 +82976,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79332,6 +82996,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79351,6 +83016,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79370,6 +83036,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79390,6 +83057,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79410,6 +83078,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79429,6 +83098,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79448,6 +83118,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79467,6 +83138,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79486,6 +83158,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79506,6 +83179,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79526,6 +83200,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79545,6 +83220,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79564,6 +83240,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79583,6 +83260,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79602,6 +83280,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79622,6 +83301,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79642,6 +83322,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79661,6 +83342,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79680,6 +83362,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79699,6 +83382,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79718,6 +83402,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79737,6 +83422,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79756,6 +83442,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79775,6 +83462,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79794,6 +83482,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79813,6 +83502,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79832,6 +83522,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79851,6 +83542,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79870,6 +83562,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79890,6 +83583,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79910,6 +83604,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79929,6 +83624,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79948,6 +83644,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79969,6 +83666,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79990,6 +83688,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80009,6 +83708,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80028,6 +83728,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80049,6 +83750,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80070,6 +83772,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80090,6 +83793,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80110,6 +83814,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80132,6 +83837,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80154,6 +83860,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80175,6 +83882,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80196,6 +83904,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80218,6 +83927,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80240,6 +83950,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80260,6 +83971,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80280,6 +83992,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80303,6 +84016,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80326,6 +84040,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80347,6 +84062,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80368,6 +84084,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80388,6 +84105,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80408,6 +84126,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80427,6 +84146,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80446,6 +84166,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80467,6 +84188,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80488,6 +84210,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80507,6 +84230,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80526,6 +84250,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80547,6 +84272,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80568,6 +84294,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80588,6 +84315,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80608,6 +84336,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80630,6 +84359,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80652,6 +84382,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80673,6 +84404,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80694,6 +84426,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80716,6 +84449,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80738,6 +84472,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80758,6 +84493,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80778,6 +84514,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80801,6 +84538,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80824,6 +84562,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80845,6 +84584,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80866,6 +84606,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80886,6 +84627,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80906,6 +84648,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80925,6 +84668,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80944,6 +84688,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80965,6 +84710,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80986,6 +84732,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81005,6 +84752,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81024,6 +84772,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81045,6 +84794,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81066,6 +84816,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81086,6 +84837,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81106,6 +84858,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81128,6 +84881,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81150,6 +84904,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81171,6 +84926,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81192,6 +84948,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81214,6 +84971,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81236,6 +84994,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81256,6 +85015,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81276,6 +85036,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81299,6 +85060,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81322,6 +85084,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81343,6 +85106,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81364,6 +85128,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81383,6 +85148,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81402,6 +85168,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81422,6 +85189,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81442,6 +85210,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81463,6 +85232,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81484,6 +85254,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81504,6 +85275,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81524,6 +85296,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81543,6 +85316,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81562,6 +85336,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81583,6 +85358,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81604,6 +85380,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81623,6 +85400,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81642,6 +85420,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81663,6 +85442,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81684,6 +85464,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81704,6 +85485,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81724,6 +85506,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81746,6 +85529,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81768,6 +85552,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81789,6 +85574,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81810,6 +85596,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81832,6 +85619,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81854,6 +85642,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81874,6 +85663,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81894,6 +85684,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81917,6 +85708,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81940,6 +85732,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81961,6 +85754,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81982,6 +85776,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82002,6 +85797,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82022,6 +85818,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82041,6 +85838,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82060,6 +85858,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82081,6 +85880,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82102,6 +85902,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82121,6 +85922,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82140,6 +85942,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82161,6 +85964,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82182,6 +85986,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82202,6 +86007,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82222,6 +86028,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82244,6 +86051,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82266,6 +86074,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82287,6 +86096,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82308,6 +86118,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82330,6 +86141,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82352,6 +86164,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82372,6 +86185,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82392,6 +86206,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82415,6 +86230,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82438,6 +86254,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82459,6 +86276,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82480,6 +86298,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82500,6 +86319,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82520,6 +86340,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82539,6 +86360,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82558,6 +86380,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82579,6 +86402,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82600,6 +86424,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82619,6 +86444,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82638,6 +86464,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82659,6 +86486,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82680,6 +86508,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82700,6 +86529,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82720,6 +86550,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82742,6 +86573,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82764,6 +86596,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82785,6 +86618,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82806,6 +86640,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82828,6 +86663,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82850,6 +86686,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82870,6 +86707,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82890,6 +86728,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82913,6 +86752,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82936,6 +86776,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82957,6 +86798,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82978,6 +86820,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82997,6 +86840,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83016,6 +86860,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83036,6 +86881,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83056,6 +86902,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83077,6 +86924,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83098,6 +86946,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83118,6 +86967,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83138,6 +86988,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83157,6 +87008,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83176,6 +87028,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83197,6 +87050,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83218,6 +87072,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83237,6 +87092,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83256,6 +87112,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83277,6 +87134,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83298,6 +87156,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83318,6 +87177,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83338,6 +87198,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83360,6 +87221,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83382,6 +87244,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83403,6 +87266,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83424,6 +87288,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83446,6 +87311,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83468,6 +87334,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83488,6 +87355,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83508,6 +87376,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83531,6 +87400,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83554,6 +87424,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83575,6 +87446,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83596,6 +87468,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83616,6 +87489,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83636,6 +87510,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83655,6 +87530,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83674,6 +87550,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83695,6 +87572,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83716,6 +87594,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83735,6 +87614,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83754,6 +87634,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83775,6 +87656,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83796,6 +87678,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83816,6 +87699,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83836,6 +87720,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83858,6 +87743,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83880,6 +87766,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83901,6 +87788,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83922,6 +87810,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83944,6 +87833,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83966,6 +87856,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83986,6 +87877,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84006,6 +87898,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84029,6 +87922,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84052,6 +87946,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84073,6 +87968,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84094,6 +87990,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84114,6 +88011,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84134,6 +88032,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84153,6 +88052,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84172,6 +88072,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84193,6 +88094,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84214,6 +88116,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84233,6 +88136,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84252,6 +88156,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84273,6 +88178,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84294,6 +88200,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84314,6 +88221,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84334,6 +88242,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84356,6 +88265,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84378,6 +88288,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84399,6 +88310,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84420,6 +88332,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84442,6 +88355,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84464,6 +88378,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84484,6 +88399,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84504,6 +88420,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84527,6 +88444,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84550,6 +88468,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84571,6 +88490,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84592,6 +88512,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84611,6 +88532,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84630,6 +88552,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84650,6 +88573,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84670,6 +88594,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84691,6 +88616,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84712,6 +88638,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84732,6 +88659,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84752,6 +88680,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84771,6 +88700,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84790,6 +88720,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84811,6 +88742,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84832,6 +88764,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84851,6 +88784,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84870,6 +88804,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84891,6 +88826,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84912,6 +88848,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84932,6 +88869,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84952,6 +88890,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84974,6 +88913,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84996,6 +88936,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85017,6 +88958,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85038,6 +88980,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85060,6 +89003,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85082,6 +89026,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85102,6 +89047,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85122,6 +89068,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85145,6 +89092,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85168,6 +89116,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85189,6 +89138,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85210,6 +89160,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85230,6 +89181,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85250,6 +89202,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85269,6 +89222,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85288,6 +89242,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85309,6 +89264,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85330,6 +89286,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85349,6 +89306,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85368,6 +89326,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85389,6 +89348,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85410,6 +89370,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85430,6 +89391,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85450,6 +89412,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85472,6 +89435,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85494,6 +89458,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85515,6 +89480,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85536,6 +89502,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85558,6 +89525,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85580,6 +89548,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85600,6 +89569,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85620,6 +89590,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85643,6 +89614,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85666,6 +89638,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85687,6 +89660,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85708,6 +89682,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85728,6 +89703,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85748,6 +89724,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85767,6 +89744,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85786,6 +89764,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85807,6 +89786,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85828,6 +89808,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85847,6 +89828,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85866,6 +89848,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85887,6 +89870,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85908,6 +89892,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85928,6 +89913,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85948,6 +89934,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85970,6 +89957,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85992,6 +89980,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86013,6 +90002,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86034,6 +90024,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86056,6 +90047,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86078,6 +90070,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86098,6 +90091,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86118,6 +90112,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86141,6 +90136,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86164,6 +90160,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86185,6 +90182,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86206,6 +90204,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86225,6 +90224,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86244,6 +90244,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86264,6 +90265,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86284,6 +90286,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86305,6 +90308,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86326,6 +90330,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86346,6 +90351,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86366,6 +90372,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86385,6 +90392,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86404,6 +90412,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86425,6 +90434,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86446,6 +90456,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86465,6 +90476,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86484,6 +90496,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86505,6 +90518,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86526,6 +90540,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86546,6 +90561,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86566,6 +90582,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86588,6 +90605,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86610,6 +90628,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86631,6 +90650,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86652,6 +90672,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86674,6 +90695,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86696,6 +90718,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86716,6 +90739,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86736,6 +90760,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86759,6 +90784,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86782,6 +90808,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86803,6 +90830,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86824,6 +90852,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86844,6 +90873,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86864,6 +90894,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86883,6 +90914,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86902,6 +90934,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86923,6 +90956,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86944,6 +90978,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86963,6 +90998,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86982,6 +91018,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87003,6 +91040,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87024,6 +91062,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87044,6 +91083,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87064,6 +91104,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87086,6 +91127,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87108,6 +91150,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87129,6 +91172,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87150,6 +91194,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87172,6 +91217,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87194,6 +91240,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87214,6 +91261,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87234,6 +91282,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87257,6 +91306,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87280,6 +91330,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87301,6 +91352,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87322,6 +91374,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87342,6 +91395,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87362,6 +91416,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87381,6 +91436,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87400,6 +91456,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87421,6 +91478,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87442,6 +91500,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87461,6 +91520,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87480,6 +91540,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87501,6 +91562,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87522,6 +91584,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87542,6 +91605,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87562,6 +91626,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87584,6 +91649,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87606,6 +91672,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87627,6 +91694,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87648,6 +91716,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87670,6 +91739,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87692,6 +91762,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87712,6 +91783,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87732,6 +91804,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87755,6 +91828,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87778,6 +91852,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87799,6 +91874,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87820,6 +91896,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87839,6 +91916,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87858,6 +91936,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87878,6 +91957,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87898,6 +91978,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87919,6 +92000,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87940,6 +92022,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87960,6 +92043,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87980,6 +92064,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87999,6 +92084,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88018,6 +92104,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88039,6 +92126,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88060,6 +92148,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88079,6 +92168,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88098,6 +92188,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88119,6 +92210,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88140,6 +92232,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88160,6 +92253,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88180,6 +92274,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88202,6 +92297,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88224,6 +92320,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88245,6 +92342,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88266,6 +92364,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88288,6 +92387,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88310,6 +92410,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88330,6 +92431,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88350,6 +92452,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88373,6 +92476,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88396,6 +92500,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88417,6 +92522,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88438,6 +92544,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88458,6 +92565,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88478,6 +92586,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88497,6 +92606,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88516,6 +92626,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88537,6 +92648,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88558,6 +92670,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88577,6 +92690,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88596,6 +92710,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88617,6 +92732,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88638,6 +92754,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88658,6 +92775,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88678,6 +92796,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88700,6 +92819,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88722,6 +92842,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88743,6 +92864,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88764,6 +92886,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88786,6 +92909,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88808,6 +92932,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88828,6 +92953,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88848,6 +92974,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88871,6 +92998,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88894,6 +93022,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88915,6 +93044,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88936,6 +93066,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88956,6 +93087,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88976,6 +93108,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88995,6 +93128,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89014,6 +93148,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89035,6 +93170,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89056,6 +93192,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89075,6 +93212,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89094,6 +93232,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89115,6 +93254,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89136,6 +93276,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89156,6 +93297,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89176,6 +93318,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89198,6 +93341,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89220,6 +93364,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89241,6 +93386,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89262,6 +93408,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89284,6 +93431,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89306,6 +93454,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89326,6 +93475,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89346,6 +93496,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89369,6 +93520,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89392,6 +93544,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89413,6 +93566,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89434,6 +93588,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89453,6 +93608,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89472,6 +93628,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89492,6 +93649,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89512,6 +93670,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89533,6 +93692,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89702,6 +93862,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89723,6 +93884,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89744,6 +93906,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89764,6 +93927,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89784,6 +93948,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89804,6 +93969,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89824,6 +93990,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89846,6 +94013,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89868,6 +94036,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89889,6 +94058,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89910,6 +94080,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89933,6 +94104,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89956,6 +94128,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89978,6 +94151,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90000,6 +94174,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90021,6 +94196,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90042,6 +94218,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90064,6 +94241,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90086,6 +94264,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90107,6 +94286,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90128,6 +94308,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90148,6 +94329,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90168,6 +94350,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90188,6 +94371,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90208,6 +94392,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90230,6 +94415,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90252,6 +94438,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90273,6 +94460,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90294,6 +94482,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90317,6 +94506,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90340,6 +94530,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90362,6 +94553,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90384,6 +94576,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90405,6 +94598,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90426,6 +94620,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90448,6 +94643,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90470,6 +94666,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90491,6 +94688,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90512,6 +94710,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90532,6 +94731,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90552,6 +94752,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90572,6 +94773,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90592,6 +94794,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90614,6 +94817,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90636,6 +94840,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90657,6 +94862,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90678,6 +94884,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90701,6 +94908,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90724,6 +94932,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90746,6 +94955,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90768,6 +94978,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90789,6 +95000,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90810,6 +95022,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90832,6 +95045,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90854,6 +95068,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90875,6 +95090,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90896,6 +95112,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90916,6 +95133,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90936,6 +95154,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90956,6 +95175,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90976,6 +95196,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90998,6 +95219,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91020,6 +95242,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91041,6 +95264,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91062,6 +95286,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91085,6 +95310,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91108,6 +95334,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91130,6 +95357,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91152,6 +95380,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91173,6 +95402,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91194,6 +95424,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91216,6 +95447,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91238,6 +95470,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91259,6 +95492,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91280,6 +95514,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91300,6 +95535,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91320,6 +95556,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91340,6 +95577,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91360,6 +95598,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91382,6 +95621,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91404,6 +95644,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91425,6 +95666,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91446,6 +95688,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91469,6 +95712,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91492,6 +95736,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91514,6 +95759,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91536,6 +95782,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91557,6 +95804,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91578,6 +95826,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91600,6 +95849,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91622,6 +95872,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91643,6 +95894,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91664,6 +95916,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91684,6 +95937,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91704,6 +95958,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91724,6 +95979,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91744,6 +96000,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91766,6 +96023,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91788,6 +96046,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91809,6 +96068,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91830,6 +96090,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91853,6 +96114,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91876,6 +96138,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91898,6 +96161,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91920,6 +96184,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91941,6 +96206,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91962,6 +96228,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91984,6 +96251,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92006,6 +96274,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92026,6 +96295,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92046,6 +96316,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92067,6 +96338,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92088,6 +96360,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92110,6 +96383,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92132,6 +96406,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92152,6 +96427,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92172,6 +96448,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92193,6 +96470,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92214,6 +96492,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92236,6 +96515,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92258,6 +96538,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92278,6 +96559,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92298,6 +96580,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92317,6 +96600,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92336,6 +96620,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92357,6 +96642,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92378,6 +96664,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92397,6 +96684,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92416,6 +96704,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92437,6 +96726,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92458,6 +96748,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92478,6 +96769,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92498,6 +96790,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92520,6 +96813,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92542,6 +96836,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92563,6 +96858,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92584,6 +96880,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92606,6 +96903,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92628,6 +96926,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92648,6 +96947,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92668,6 +96968,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92691,6 +96992,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92714,6 +97016,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92735,6 +97038,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92756,6 +97060,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92776,6 +97081,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92796,6 +97102,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92815,6 +97122,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92834,6 +97142,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92855,6 +97164,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92876,6 +97186,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92895,6 +97206,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92914,6 +97226,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92935,6 +97248,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92956,6 +97270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92976,6 +97291,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92996,6 +97312,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93018,6 +97335,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93040,6 +97358,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93061,6 +97380,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93082,6 +97402,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93104,6 +97425,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93126,6 +97448,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93146,6 +97469,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93166,6 +97490,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93189,6 +97514,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93212,6 +97538,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93233,6 +97560,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93254,6 +97582,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93274,6 +97603,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93294,6 +97624,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93313,6 +97644,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93332,6 +97664,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93353,6 +97686,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93374,6 +97708,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93393,6 +97728,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93412,6 +97748,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93433,6 +97770,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93454,6 +97792,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93474,6 +97813,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93494,6 +97834,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93516,6 +97857,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93538,6 +97880,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93559,6 +97902,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93580,6 +97924,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93602,6 +97947,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93624,6 +97970,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93644,6 +97991,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93664,6 +98012,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93687,6 +98036,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93710,6 +98060,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93731,6 +98082,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93752,6 +98104,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93771,6 +98124,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93790,6 +98144,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93810,6 +98165,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93830,6 +98186,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93851,6 +98208,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93872,6 +98230,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93893,6 +98252,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93914,6 +98274,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93934,6 +98295,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93954,6 +98316,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93976,6 +98339,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93998,6 +98362,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94018,6 +98383,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94038,6 +98404,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94060,6 +98427,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94082,6 +98450,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94103,6 +98472,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94124,6 +98494,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94147,6 +98518,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94170,6 +98542,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94192,6 +98565,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94214,6 +98588,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94237,6 +98612,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94260,6 +98636,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94281,6 +98658,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94302,6 +98680,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94326,6 +98705,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94350,6 +98730,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94372,6 +98753,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94394,6 +98776,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94415,6 +98798,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94436,6 +98820,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94456,6 +98841,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94476,6 +98862,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94498,6 +98885,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94520,6 +98908,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94540,6 +98929,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94560,6 +98950,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94582,6 +98973,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94604,6 +98996,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94625,6 +99018,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94646,6 +99040,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94669,6 +99064,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94692,6 +99088,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94714,6 +99111,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94736,6 +99134,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94759,6 +99158,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94782,6 +99182,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94803,6 +99204,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94824,6 +99226,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94848,6 +99251,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94872,6 +99276,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94894,6 +99299,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94916,6 +99322,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94937,6 +99344,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94958,6 +99366,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94978,6 +99387,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94998,6 +99408,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95020,6 +99431,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95042,6 +99454,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95062,6 +99475,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95082,6 +99496,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95104,6 +99519,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95126,6 +99542,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95147,6 +99564,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95168,6 +99586,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95191,6 +99610,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95214,6 +99634,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95236,6 +99657,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95258,6 +99680,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95281,6 +99704,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95304,6 +99728,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95325,6 +99750,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95346,6 +99772,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95370,6 +99797,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95394,6 +99822,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95416,6 +99845,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95438,6 +99868,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95459,6 +99890,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95480,6 +99912,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95500,6 +99933,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95520,6 +99954,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95542,6 +99977,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95564,6 +100000,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95584,6 +100021,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95604,6 +100042,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95626,6 +100065,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95648,6 +100088,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95669,6 +100110,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95690,6 +100132,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95713,6 +100156,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95736,6 +100180,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95758,6 +100203,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95780,6 +100226,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95803,6 +100250,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95826,6 +100274,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95847,6 +100296,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95868,6 +100318,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95892,6 +100343,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95916,6 +100368,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95938,6 +100391,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95960,6 +100414,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95981,6 +100436,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96002,6 +100458,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96022,6 +100479,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96042,6 +100500,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96064,6 +100523,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96086,6 +100546,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96106,6 +100567,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96126,6 +100588,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96148,6 +100611,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96170,6 +100634,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96191,6 +100656,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96212,6 +100678,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96235,6 +100702,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96258,6 +100726,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96280,6 +100749,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96302,6 +100772,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96325,6 +100796,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96348,6 +100820,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96369,6 +100842,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96390,6 +100864,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96414,6 +100889,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96438,6 +100914,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96460,6 +100937,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96482,6 +100960,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96503,6 +100982,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96524,6 +101004,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96544,6 +101025,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96564,6 +101046,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96586,6 +101069,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96608,6 +101092,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96628,6 +101113,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96648,6 +101134,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96670,6 +101157,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96692,6 +101180,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96713,6 +101202,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96734,6 +101224,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96757,6 +101248,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96780,6 +101272,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96802,6 +101295,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96824,6 +101318,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96847,6 +101342,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96870,6 +101366,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96891,6 +101388,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96912,6 +101410,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96936,6 +101435,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96960,6 +101460,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96982,6 +101483,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97004,6 +101506,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97024,6 +101527,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97044,6 +101548,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97065,6 +101570,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97086,6 +101592,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97108,6 +101615,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97130,6 +101638,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97150,6 +101659,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97170,6 +101680,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97191,6 +101702,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97212,6 +101724,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97234,6 +101747,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97256,6 +101770,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97277,6 +101792,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97298,6 +101814,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97318,6 +101835,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97338,6 +101856,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97358,6 +101877,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97378,6 +101898,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97400,6 +101921,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97422,6 +101944,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97443,6 +101966,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97464,6 +101988,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97487,6 +102012,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97510,6 +102036,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97532,6 +102059,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97554,6 +102082,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97575,6 +102104,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97596,6 +102126,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97618,6 +102149,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97640,6 +102172,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97661,6 +102194,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97682,6 +102216,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97702,6 +102237,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97722,6 +102258,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97742,6 +102279,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97762,6 +102300,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97784,6 +102323,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97806,6 +102346,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97827,6 +102368,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97848,6 +102390,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97871,6 +102414,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97894,6 +102438,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97916,6 +102461,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97938,6 +102484,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97959,6 +102506,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97980,6 +102528,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98002,6 +102551,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98024,6 +102574,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98045,6 +102596,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98066,6 +102618,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98086,6 +102639,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98106,6 +102660,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98126,6 +102681,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98146,6 +102702,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98168,6 +102725,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98190,6 +102748,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98211,6 +102770,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98232,6 +102792,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98255,6 +102816,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98278,6 +102840,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98300,6 +102863,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98322,6 +102886,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98343,6 +102908,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98364,6 +102930,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98386,6 +102953,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98408,6 +102976,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98429,6 +102998,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98450,6 +103020,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98470,6 +103041,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98490,6 +103062,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98510,6 +103083,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98530,6 +103104,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98552,6 +103127,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98574,6 +103150,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98595,6 +103172,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98616,6 +103194,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98639,6 +103218,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98662,6 +103242,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98684,6 +103265,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98706,6 +103288,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98727,6 +103310,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98748,6 +103332,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98770,6 +103355,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98792,6 +103378,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98813,6 +103400,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98834,6 +103422,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98854,6 +103443,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98874,6 +103464,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98894,6 +103485,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98914,6 +103506,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98936,6 +103529,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98958,6 +103552,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98979,6 +103574,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99000,6 +103596,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99023,6 +103620,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99046,6 +103644,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99068,6 +103667,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99090,6 +103690,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99111,6 +103712,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99132,6 +103734,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99154,6 +103757,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99176,6 +103780,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99197,6 +103802,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99218,6 +103824,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99238,6 +103845,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99258,6 +103866,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99278,6 +103887,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99298,6 +103908,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99320,6 +103931,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99342,6 +103954,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99363,6 +103976,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99384,6 +103998,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99407,6 +104022,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99430,6 +104046,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99452,6 +104069,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99474,6 +104092,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99495,6 +104114,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99516,6 +104136,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99538,6 +104159,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99560,6 +104182,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99580,6 +104203,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99600,6 +104224,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99621,6 +104246,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99642,6 +104268,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99664,6 +104291,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99686,6 +104314,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99706,6 +104335,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99726,6 +104356,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99747,6 +104378,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99768,6 +104400,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99790,6 +104423,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99812,6 +104446,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99832,6 +104467,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99852,6 +104488,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99871,6 +104508,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99890,6 +104528,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99911,6 +104550,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99932,6 +104572,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99951,6 +104592,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99970,6 +104612,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99991,6 +104634,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100012,6 +104656,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100032,6 +104677,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100052,6 +104698,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100074,6 +104721,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100096,6 +104744,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100117,6 +104766,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100138,6 +104788,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100160,6 +104811,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100182,6 +104834,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100202,6 +104855,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100222,6 +104876,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100245,6 +104900,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100268,6 +104924,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100289,6 +104946,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100310,6 +104968,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100330,6 +104989,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100350,6 +105010,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100369,6 +105030,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100388,6 +105050,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100409,6 +105072,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100430,6 +105094,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100449,6 +105114,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100468,6 +105134,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100489,6 +105156,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100510,6 +105178,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100530,6 +105199,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100550,6 +105220,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100572,6 +105243,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100594,6 +105266,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100615,6 +105288,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100636,6 +105310,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100658,6 +105333,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100680,6 +105356,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100700,6 +105377,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100720,6 +105398,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100743,6 +105422,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100766,6 +105446,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100787,6 +105468,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100808,6 +105490,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100828,6 +105511,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100848,6 +105532,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100867,6 +105552,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100886,6 +105572,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100907,6 +105594,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100928,6 +105616,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100947,6 +105636,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100966,6 +105656,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100987,6 +105678,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101008,6 +105700,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101028,6 +105721,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101048,6 +105742,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101070,6 +105765,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101092,6 +105788,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101113,6 +105810,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101134,6 +105832,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101156,6 +105855,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101178,6 +105878,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101198,6 +105899,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101218,6 +105920,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101241,6 +105944,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101264,6 +105968,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101285,6 +105990,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101306,6 +106012,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101325,6 +106032,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101344,6 +106052,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101364,6 +106073,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101384,6 +106094,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101405,6 +106116,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101426,6 +106138,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101447,6 +106160,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101468,6 +106182,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101488,6 +106203,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101508,6 +106224,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101528,6 +106245,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101548,6 +106266,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101570,6 +106289,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101592,6 +106312,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101613,6 +106334,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101634,6 +106356,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101657,6 +106380,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101680,6 +106404,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101702,6 +106427,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101724,6 +106450,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101745,6 +106472,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101766,6 +106494,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101788,6 +106517,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101810,6 +106540,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101831,6 +106562,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101852,6 +106584,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101872,6 +106605,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101892,6 +106626,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101912,6 +106647,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101932,6 +106668,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101954,6 +106691,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101976,6 +106714,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101997,6 +106736,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102018,6 +106758,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102041,6 +106782,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102064,6 +106806,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102086,6 +106829,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102108,6 +106852,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102129,6 +106874,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102150,6 +106896,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102172,6 +106919,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102194,6 +106942,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102215,6 +106964,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102236,6 +106986,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102256,6 +107007,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102276,6 +107028,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102296,6 +107049,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102316,6 +107070,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102338,6 +107093,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102360,6 +107116,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102381,6 +107138,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102402,6 +107160,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102425,6 +107184,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102448,6 +107208,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102470,6 +107231,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102492,6 +107254,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102513,6 +107276,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102534,6 +107298,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102556,6 +107321,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102578,6 +107344,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102599,6 +107366,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102620,6 +107388,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102640,6 +107409,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102660,6 +107430,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102680,6 +107451,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102700,6 +107472,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102722,6 +107495,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102744,6 +107518,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102765,6 +107540,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102786,6 +107562,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102809,6 +107586,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102832,6 +107610,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102854,6 +107633,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102876,6 +107656,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102897,6 +107678,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102918,6 +107700,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102940,6 +107723,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102962,6 +107746,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102983,6 +107768,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103004,6 +107790,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103024,6 +107811,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103044,6 +107832,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103064,6 +107853,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103084,6 +107874,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103106,6 +107897,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103128,6 +107920,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103149,6 +107942,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103170,6 +107964,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103193,6 +107988,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103216,6 +108012,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103238,6 +108035,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103260,6 +108058,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103281,6 +108080,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103302,6 +108102,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103324,6 +108125,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103346,6 +108148,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103367,6 +108170,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103388,6 +108192,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103408,6 +108213,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103428,6 +108234,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103448,6 +108255,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103468,6 +108276,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103490,6 +108299,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103512,6 +108322,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103533,6 +108344,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103554,6 +108366,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103577,6 +108390,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103600,6 +108414,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103622,6 +108437,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103644,6 +108460,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103665,6 +108482,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103686,6 +108504,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103708,6 +108527,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103730,6 +108550,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103750,6 +108571,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103770,6 +108592,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103791,6 +108614,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103812,6 +108636,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103834,6 +108659,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103856,6 +108682,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103876,6 +108703,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103896,6 +108724,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103917,6 +108746,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103938,6 +108768,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103960,6 +108791,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109346,6 +114178,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109367,6 +114200,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109388,6 +114222,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109408,6 +114243,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109430,6 +114266,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109452,6 +114289,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109472,6 +114310,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109494,6 +114333,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109516,6 +114356,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109537,6 +114378,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109560,6 +114402,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109583,6 +114426,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109605,6 +114449,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109628,6 +114473,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109651,6 +114497,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109672,6 +114519,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109696,6 +114544,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109720,6 +114569,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109742,6 +114592,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109763,6 +114614,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109784,6 +114636,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109804,6 +114657,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109826,6 +114680,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109848,6 +114703,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109868,6 +114724,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109890,6 +114747,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109912,6 +114770,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109933,6 +114792,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109956,6 +114816,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109979,6 +114840,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110001,6 +114863,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110024,6 +114887,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110047,6 +114911,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110068,6 +114933,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110092,6 +114958,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110116,6 +114983,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110138,6 +115006,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110159,6 +115028,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110180,6 +115050,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110200,6 +115071,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110222,6 +115094,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110244,6 +115117,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110264,6 +115138,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110286,6 +115161,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110308,6 +115184,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110329,6 +115206,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110352,6 +115230,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110375,6 +115254,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110397,6 +115277,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110420,6 +115301,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110443,6 +115325,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110464,6 +115347,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110488,6 +115372,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110512,6 +115397,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110534,6 +115420,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110555,6 +115442,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110576,6 +115464,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110596,6 +115485,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110618,6 +115508,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110640,6 +115531,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110660,6 +115552,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110682,6 +115575,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110704,6 +115598,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110725,6 +115620,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110748,6 +115644,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110771,6 +115668,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110793,6 +115691,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110816,6 +115715,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110839,6 +115739,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110860,6 +115761,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110884,6 +115786,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110908,6 +115811,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110930,6 +115834,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110951,6 +115856,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110972,6 +115878,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110992,6 +115899,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111014,6 +115922,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111036,6 +115945,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111056,6 +115966,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111078,6 +115989,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111100,6 +116012,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111121,6 +116034,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111144,6 +116058,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111167,6 +116082,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111189,6 +116105,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111212,6 +116129,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111235,6 +116153,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111256,6 +116175,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111280,6 +116200,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111304,6 +116225,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111326,6 +116248,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111347,6 +116270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111368,6 +116292,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111388,6 +116313,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111410,6 +116336,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111432,6 +116359,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111452,6 +116380,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111474,6 +116403,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111496,6 +116426,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111517,6 +116448,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111540,6 +116472,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111563,6 +116496,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111585,6 +116519,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111608,6 +116543,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111631,6 +116567,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111652,6 +116589,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111676,6 +116614,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111700,6 +116639,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111722,6 +116662,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111742,6 +116683,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111763,6 +116705,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111785,6 +116728,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111805,6 +116749,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111826,6 +116771,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111848,6 +116794,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111869,6 +116816,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111890,6 +116838,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111910,6 +116859,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111932,6 +116882,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111954,6 +116905,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111974,6 +116926,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111996,6 +116949,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112018,6 +116972,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112039,6 +116994,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112062,6 +117018,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112085,6 +117042,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112107,6 +117065,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112130,6 +117089,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112153,6 +117113,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112174,6 +117135,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112198,6 +117160,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112222,6 +117185,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112244,6 +117208,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112265,6 +117230,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112286,6 +117252,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112306,6 +117273,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112328,6 +117296,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112350,6 +117319,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112370,6 +117340,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112392,6 +117363,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112414,6 +117386,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112435,6 +117408,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112458,6 +117432,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112481,6 +117456,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112503,6 +117479,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112526,6 +117503,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112549,6 +117527,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112570,6 +117549,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112594,6 +117574,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112618,6 +117599,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112640,6 +117622,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112661,6 +117644,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112682,6 +117666,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112702,6 +117687,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112724,6 +117710,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112746,6 +117733,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112766,6 +117754,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112788,6 +117777,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112810,6 +117800,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112831,6 +117822,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112854,6 +117846,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112877,6 +117870,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112899,6 +117893,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112922,6 +117917,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112945,6 +117941,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112966,6 +117963,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112990,6 +117988,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113014,6 +118013,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113036,6 +118036,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113057,6 +118058,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113078,6 +118080,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113098,6 +118101,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113120,6 +118124,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113142,6 +118147,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113162,6 +118168,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113184,6 +118191,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113206,6 +118214,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113227,6 +118236,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113250,6 +118260,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113273,6 +118284,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113295,6 +118307,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113318,6 +118331,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113341,6 +118355,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113362,6 +118377,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113386,6 +118402,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113410,6 +118427,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113432,6 +118450,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113453,6 +118472,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113474,6 +118494,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113494,6 +118515,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113516,6 +118538,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113538,6 +118561,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113558,6 +118582,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113580,6 +118605,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113602,6 +118628,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113623,6 +118650,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113646,6 +118674,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113669,6 +118698,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113691,6 +118721,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113714,6 +118745,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113737,6 +118769,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113758,6 +118791,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113782,6 +118816,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113806,6 +118841,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113828,6 +118864,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113849,6 +118886,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113870,6 +118908,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113890,6 +118929,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113912,6 +118952,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113934,6 +118975,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113954,6 +118996,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113976,6 +119019,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113998,6 +119042,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114019,6 +119064,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114042,6 +119088,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114065,6 +119112,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114087,6 +119135,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114110,6 +119159,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114133,6 +119183,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114154,6 +119205,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114178,6 +119230,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114202,6 +119255,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114224,6 +119278,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114244,6 +119299,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114265,6 +119321,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114287,6 +119344,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114307,6 +119365,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114328,6 +119387,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114350,6 +119410,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114371,6 +119432,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114392,6 +119454,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114412,6 +119475,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114432,6 +119496,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114454,6 +119519,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114476,6 +119542,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114497,6 +119564,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114520,6 +119588,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114543,6 +119612,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114565,6 +119635,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114586,6 +119657,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114608,6 +119680,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114629,6 +119702,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114650,6 +119724,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114670,6 +119745,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114690,6 +119766,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114712,6 +119789,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114734,6 +119812,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114755,6 +119834,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114778,6 +119858,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114801,6 +119882,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114823,6 +119905,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114844,6 +119927,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114866,6 +119950,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114887,6 +119972,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114908,6 +119994,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114928,6 +120015,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114948,6 +120036,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114970,6 +120059,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114992,6 +120082,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115013,6 +120104,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115036,6 +120128,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115059,6 +120152,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115081,6 +120175,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115102,6 +120197,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115124,6 +120220,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115145,6 +120242,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115166,6 +120264,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115186,6 +120285,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115206,6 +120306,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115228,6 +120329,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115250,6 +120352,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115271,6 +120374,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115294,6 +120398,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115317,6 +120422,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115339,6 +120445,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115360,6 +120467,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115382,6 +120490,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115403,6 +120512,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115424,6 +120534,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115444,6 +120555,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115464,6 +120576,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115486,6 +120599,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115508,6 +120622,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115529,6 +120644,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115552,6 +120668,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115575,6 +120692,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115597,6 +120715,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115618,6 +120737,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115640,6 +120760,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115661,6 +120782,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115682,6 +120804,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115702,6 +120825,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115722,6 +120846,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115744,6 +120869,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115766,6 +120892,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115787,6 +120914,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115810,6 +120938,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115833,6 +120962,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115855,6 +120985,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115876,6 +121007,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115898,6 +121030,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115918,6 +121051,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115939,6 +121073,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115961,6 +121096,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115981,6 +121117,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116002,6 +121139,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116024,6 +121162,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116045,6 +121184,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116066,6 +121206,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116086,6 +121227,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116106,6 +121248,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116128,6 +121271,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116150,6 +121294,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116171,6 +121316,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116194,6 +121340,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116217,6 +121364,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116239,6 +121387,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116260,6 +121409,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116282,6 +121432,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116303,6 +121454,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116324,6 +121476,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116344,6 +121497,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116364,6 +121518,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116386,6 +121541,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116408,6 +121564,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116429,6 +121586,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116452,6 +121610,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116475,6 +121634,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116497,6 +121657,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116518,6 +121679,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116540,6 +121702,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116561,6 +121724,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116582,6 +121746,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116602,6 +121767,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116622,6 +121788,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116644,6 +121811,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116666,6 +121834,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116687,6 +121856,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116710,6 +121880,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116733,6 +121904,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116755,6 +121927,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116776,6 +121949,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116798,6 +121972,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116819,6 +121994,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116840,6 +122016,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116860,6 +122037,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116880,6 +122058,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116902,6 +122081,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116924,6 +122104,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116945,6 +122126,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116968,6 +122150,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116991,6 +122174,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117013,6 +122197,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117034,6 +122219,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117056,6 +122242,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117077,6 +122264,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117098,6 +122286,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117118,6 +122307,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117138,6 +122328,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117160,6 +122351,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117182,6 +122374,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117203,6 +122396,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117226,6 +122420,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117249,6 +122444,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117271,6 +122467,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117292,6 +122489,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117314,6 +122512,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117335,6 +122534,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117356,6 +122556,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117376,6 +122577,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117396,6 +122598,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117418,6 +122621,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117440,6 +122644,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117461,6 +122666,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117484,6 +122690,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117507,6 +122714,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117529,6 +122737,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117550,6 +122759,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117572,6 +122782,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117592,6 +122803,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117613,6 +122825,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117635,6 +122848,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117655,6 +122869,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117676,6 +122891,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117698,6 +122914,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117719,6 +122936,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117740,6 +122958,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117760,6 +122979,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117780,6 +123000,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117802,6 +123023,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117824,6 +123046,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117844,6 +123067,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117864,6 +123088,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117886,6 +123111,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117908,6 +123134,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117929,6 +123156,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117950,6 +123178,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117973,6 +123202,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117996,6 +123226,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118018,6 +123249,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118040,6 +123272,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118063,6 +123296,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118086,6 +123320,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118107,6 +123342,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118128,6 +123364,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118152,6 +123389,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118176,6 +123414,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118198,6 +123437,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118220,6 +123460,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118241,6 +123482,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118262,6 +123504,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118282,6 +123525,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118302,6 +123546,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118324,6 +123569,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118346,6 +123592,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118366,6 +123613,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118386,6 +123634,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118408,6 +123657,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118430,6 +123680,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118451,6 +123702,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118472,6 +123724,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118495,6 +123748,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118518,6 +123772,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118540,6 +123795,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118562,6 +123818,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118585,6 +123842,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118608,6 +123866,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118629,6 +123888,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118650,6 +123910,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118674,6 +123935,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118698,6 +123960,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118720,6 +123983,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118742,6 +124006,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118763,6 +124028,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118784,6 +124050,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118804,6 +124071,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118824,6 +124092,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118846,6 +124115,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118868,6 +124138,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118888,6 +124159,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118908,6 +124180,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118930,6 +124203,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118952,6 +124226,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118973,6 +124248,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118994,6 +124270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119017,6 +124294,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119040,6 +124318,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119062,6 +124341,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119084,6 +124364,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119107,6 +124388,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119130,6 +124412,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119151,6 +124434,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119172,6 +124456,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119196,6 +124481,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119220,6 +124506,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119242,6 +124529,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119264,6 +124552,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119285,6 +124574,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119306,6 +124596,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119326,6 +124617,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119346,6 +124638,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119368,6 +124661,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119390,6 +124684,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119410,6 +124705,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119430,6 +124726,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119452,6 +124749,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119474,6 +124772,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119495,6 +124794,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119516,6 +124816,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119539,6 +124840,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119562,6 +124864,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119584,6 +124887,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119606,6 +124910,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119629,6 +124934,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119652,6 +124958,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119673,6 +124980,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119694,6 +125002,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119718,6 +125027,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119742,6 +125052,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119764,6 +125075,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119786,6 +125098,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119807,6 +125120,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119828,6 +125142,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119848,6 +125163,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119868,6 +125184,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119890,6 +125207,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119912,6 +125230,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119932,6 +125251,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119952,6 +125272,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119974,6 +125295,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119996,6 +125318,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120017,6 +125340,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120038,6 +125362,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120061,6 +125386,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120084,6 +125410,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120106,6 +125433,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120128,6 +125456,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120151,6 +125480,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120174,6 +125504,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120195,6 +125526,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120216,6 +125548,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120240,6 +125573,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120264,6 +125598,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120286,6 +125621,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120308,6 +125644,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120329,6 +125666,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120350,6 +125688,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120370,6 +125709,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120390,6 +125730,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120412,6 +125753,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120434,6 +125776,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120454,6 +125797,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120474,6 +125818,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120496,6 +125841,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120518,6 +125864,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120539,6 +125886,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120560,6 +125908,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120583,6 +125932,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120606,6 +125956,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120628,6 +125979,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120650,6 +126002,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120673,6 +126026,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120696,6 +126050,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120717,6 +126072,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120738,6 +126094,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120762,6 +126119,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120786,6 +126144,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120808,6 +126167,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120830,6 +126190,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120850,6 +126211,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120870,6 +126232,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120891,6 +126254,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120912,6 +126276,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120934,6 +126299,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120956,6 +126322,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120976,6 +126343,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120996,6 +126364,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121017,6 +126386,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121038,6 +126408,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121060,6 +126431,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121082,6 +126454,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121103,6 +126476,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121124,6 +126498,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121144,6 +126519,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121164,6 +126540,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121186,6 +126563,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121208,6 +126586,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121228,6 +126607,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121248,6 +126628,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121270,6 +126651,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121292,6 +126674,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121313,6 +126696,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121334,6 +126718,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121357,6 +126742,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121380,6 +126766,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121402,6 +126789,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121424,6 +126812,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121447,6 +126836,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121470,6 +126860,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121491,6 +126882,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121512,6 +126904,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121536,6 +126929,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121560,6 +126954,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121582,6 +126977,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121604,6 +127000,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121625,6 +127022,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121646,6 +127044,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121666,6 +127065,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121686,6 +127086,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121708,6 +127109,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121730,6 +127132,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121750,6 +127153,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121770,6 +127174,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121792,6 +127197,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121814,6 +127220,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121835,6 +127242,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121856,6 +127264,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121879,6 +127288,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121902,6 +127312,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121924,6 +127335,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121946,6 +127358,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121969,6 +127382,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121992,6 +127406,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122013,6 +127428,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122034,6 +127450,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122058,6 +127475,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122082,6 +127500,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122104,6 +127523,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122126,6 +127546,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122147,6 +127568,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122168,6 +127590,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122188,6 +127611,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122208,6 +127632,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122230,6 +127655,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122252,6 +127678,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122272,6 +127699,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122292,6 +127720,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122314,6 +127743,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122336,6 +127766,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122357,6 +127788,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122378,6 +127810,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122401,6 +127834,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122424,6 +127858,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122446,6 +127881,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122468,6 +127904,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122491,6 +127928,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122514,6 +127952,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122535,6 +127974,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122556,6 +127996,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122580,6 +128021,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122604,6 +128046,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122626,6 +128069,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122648,6 +128092,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122669,6 +128114,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122690,6 +128136,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122710,6 +128157,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122730,6 +128178,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122752,6 +128201,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122774,6 +128224,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122794,6 +128245,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122814,6 +128266,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122836,6 +128289,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122858,6 +128312,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122879,6 +128334,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122900,6 +128356,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122923,6 +128380,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122946,6 +128404,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122968,6 +128427,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122990,6 +128450,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123013,6 +128474,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123036,6 +128498,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123057,6 +128520,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123078,6 +128542,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123102,6 +128567,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123126,6 +128592,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123148,6 +128615,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123170,6 +128638,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123191,6 +128660,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123212,6 +128682,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123232,6 +128703,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123252,6 +128724,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123274,6 +128747,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123296,6 +128770,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123316,6 +128791,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123336,6 +128812,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123358,6 +128835,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123380,6 +128858,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123401,6 +128880,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123422,6 +128902,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123445,6 +128926,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123468,6 +128950,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123490,6 +128973,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123512,6 +128996,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123535,6 +129020,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123558,6 +129044,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123579,6 +129066,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123600,6 +129088,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123624,6 +129113,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123648,6 +129138,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123670,6 +129161,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123692,6 +129184,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123713,6 +129206,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123734,6 +129228,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123754,6 +129249,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123774,6 +129270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123796,6 +129293,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123818,6 +129316,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123838,6 +129337,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123858,6 +129358,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123880,6 +129381,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123902,6 +129404,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123923,6 +129426,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123944,6 +129448,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123967,6 +129472,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123990,6 +129496,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124012,6 +129519,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124034,6 +129542,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124057,6 +129566,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124080,6 +129590,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124101,6 +129612,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124122,6 +129634,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124146,6 +129659,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124170,6 +129684,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124192,6 +129707,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124214,6 +129730,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124234,6 +129751,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124254,6 +129772,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124275,6 +129794,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124296,6 +129816,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124318,6 +129839,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124340,6 +129862,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124360,6 +129883,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124380,6 +129904,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124401,6 +129926,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124422,6 +129948,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124444,6 +129971,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124466,6 +129994,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124487,6 +130016,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124508,6 +130038,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124528,6 +130059,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124548,6 +130080,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124570,6 +130103,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124592,6 +130126,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124612,6 +130147,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124632,6 +130168,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124654,6 +130191,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124676,6 +130214,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124697,6 +130236,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124718,6 +130258,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124741,6 +130282,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124764,6 +130306,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124786,6 +130329,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124808,6 +130352,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124831,6 +130376,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124854,6 +130400,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124875,6 +130422,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124896,6 +130444,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124920,6 +130469,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124944,6 +130494,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124966,6 +130517,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124988,6 +130540,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125009,6 +130562,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125030,6 +130584,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125050,6 +130605,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125070,6 +130626,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125092,6 +130649,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125114,6 +130672,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125134,6 +130693,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125154,6 +130714,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125176,6 +130737,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125198,6 +130760,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125219,6 +130782,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125240,6 +130804,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125263,6 +130828,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125286,6 +130852,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125308,6 +130875,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125330,6 +130898,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125353,6 +130922,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125376,6 +130946,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125397,6 +130968,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125418,6 +130990,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125442,6 +131015,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125466,6 +131040,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125488,6 +131063,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125510,6 +131086,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125531,6 +131108,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125552,6 +131130,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125572,6 +131151,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125592,6 +131172,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125614,6 +131195,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125636,6 +131218,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125656,6 +131239,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125676,6 +131260,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125698,6 +131283,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125720,6 +131306,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125741,6 +131328,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125762,6 +131350,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125785,6 +131374,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125808,6 +131398,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125830,6 +131421,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125852,6 +131444,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125875,6 +131468,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125898,6 +131492,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125919,6 +131514,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125940,6 +131536,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125964,6 +131561,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125988,6 +131586,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126010,6 +131609,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126032,6 +131632,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126053,6 +131654,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126074,6 +131676,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126094,6 +131697,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126114,6 +131718,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126136,6 +131741,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126158,6 +131764,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126178,6 +131785,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126198,6 +131806,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126220,6 +131829,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126242,6 +131852,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126263,6 +131874,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126284,6 +131896,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126307,6 +131920,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126330,6 +131944,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126352,6 +131967,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126374,6 +131990,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126397,6 +132014,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126420,6 +132038,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126441,6 +132060,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126462,6 +132082,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126486,6 +132107,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126510,6 +132132,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126532,6 +132155,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126554,6 +132178,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126575,6 +132200,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126596,6 +132222,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126616,6 +132243,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126636,6 +132264,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126658,6 +132287,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126680,6 +132310,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126700,6 +132331,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126720,6 +132352,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126742,6 +132375,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126764,6 +132398,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126785,6 +132420,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126806,6 +132442,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126829,6 +132466,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126852,6 +132490,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126874,6 +132513,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126896,6 +132536,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126919,6 +132560,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126942,6 +132584,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126963,6 +132606,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126984,6 +132628,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127008,6 +132653,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127032,6 +132678,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127054,6 +132701,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127076,6 +132724,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127097,6 +132746,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127118,6 +132768,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127138,6 +132789,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127158,6 +132810,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127180,6 +132833,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127202,6 +132856,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127222,6 +132877,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127242,6 +132898,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127264,6 +132921,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127286,6 +132944,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127307,6 +132966,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127328,6 +132988,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127351,6 +133012,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127374,6 +133036,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127396,6 +133059,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127418,6 +133082,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127441,6 +133106,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127464,6 +133130,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127485,6 +133152,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127506,6 +133174,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127530,6 +133199,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127554,6 +133224,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127576,6 +133247,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127598,6 +133270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127618,6 +133291,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127638,6 +133312,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127659,6 +133334,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127680,6 +133356,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127702,6 +133379,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127724,6 +133402,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127744,6 +133423,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127764,6 +133444,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127785,6 +133466,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127806,6 +133488,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127828,6 +133511,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127850,6 +133534,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127871,6 +133556,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127892,6 +133578,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127912,6 +133599,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127932,6 +133620,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127952,6 +133641,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127972,6 +133662,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127994,6 +133685,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128016,6 +133708,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128037,6 +133730,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128058,6 +133752,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128081,6 +133776,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128104,6 +133800,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128126,6 +133823,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128148,6 +133846,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128169,6 +133868,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128190,6 +133890,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128212,6 +133913,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128234,6 +133936,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128255,6 +133958,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128276,6 +133980,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128296,6 +134001,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128316,6 +134022,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128336,6 +134043,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128356,6 +134064,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128378,6 +134087,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128400,6 +134110,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128421,6 +134132,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128442,6 +134154,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128465,6 +134178,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128488,6 +134202,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128510,6 +134225,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128532,6 +134248,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128553,6 +134270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128574,6 +134292,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128596,6 +134315,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128618,6 +134338,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128639,6 +134360,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128660,6 +134382,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128680,6 +134403,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128700,6 +134424,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128720,6 +134445,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128740,6 +134466,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128762,6 +134489,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128784,6 +134512,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128805,6 +134534,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128826,6 +134556,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128849,6 +134580,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128872,6 +134604,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128894,6 +134627,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128916,6 +134650,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128937,6 +134672,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128958,6 +134694,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128980,6 +134717,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129002,6 +134740,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129023,6 +134762,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129044,6 +134784,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129064,6 +134805,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129084,6 +134826,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129104,6 +134847,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129124,6 +134868,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129146,6 +134891,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129168,6 +134914,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129189,6 +134936,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129210,6 +134958,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129233,6 +134982,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129256,6 +135006,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129278,6 +135029,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129300,6 +135052,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129321,6 +135074,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129342,6 +135096,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129364,6 +135119,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129386,6 +135142,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129407,6 +135164,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129428,6 +135186,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129448,6 +135207,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129468,6 +135228,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129488,6 +135249,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129508,6 +135270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129530,6 +135293,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129552,6 +135316,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129573,6 +135338,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129594,6 +135360,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129617,6 +135384,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129640,6 +135408,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129662,6 +135431,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129684,6 +135454,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129705,6 +135476,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129726,6 +135498,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129748,6 +135521,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129770,6 +135544,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129791,6 +135566,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129812,6 +135588,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129832,6 +135609,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129852,6 +135630,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129872,6 +135651,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129892,6 +135672,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129914,6 +135695,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129936,6 +135718,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129957,6 +135740,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129978,6 +135762,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130001,6 +135786,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130024,6 +135810,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130046,6 +135833,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130068,6 +135856,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130089,6 +135878,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130110,6 +135900,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130132,6 +135923,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130154,6 +135946,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130174,6 +135967,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130194,6 +135988,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130215,6 +136010,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130236,6 +136032,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130258,6 +136055,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130280,6 +136078,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130300,6 +136099,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130320,6 +136120,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130341,6 +136142,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130362,6 +136164,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130384,6 +136187,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130406,6 +136210,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130427,6 +136232,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130448,6 +136254,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130468,6 +136275,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130488,6 +136296,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130510,6 +136319,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130532,6 +136342,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130552,6 +136363,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130572,6 +136384,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130594,6 +136407,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130616,6 +136430,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130637,6 +136452,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130658,6 +136474,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130681,6 +136498,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130704,6 +136522,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130726,6 +136545,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130748,6 +136568,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130771,6 +136592,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130794,6 +136616,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130815,6 +136638,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130836,6 +136660,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130860,6 +136685,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130884,6 +136710,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130906,6 +136733,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130928,6 +136756,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130949,6 +136778,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130970,6 +136800,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130990,6 +136821,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131010,6 +136842,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131032,6 +136865,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131054,6 +136888,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131074,6 +136909,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131094,6 +136930,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131116,6 +136953,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131138,6 +136976,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131159,6 +136998,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131180,6 +137020,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131203,6 +137044,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131226,6 +137068,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131248,6 +137091,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131270,6 +137114,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131293,6 +137138,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131316,6 +137162,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131337,6 +137184,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131358,6 +137206,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131382,6 +137231,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131406,6 +137256,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131428,6 +137279,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131450,6 +137302,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131471,6 +137324,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131492,6 +137346,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131512,6 +137367,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131532,6 +137388,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131554,6 +137411,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131576,6 +137434,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131596,6 +137455,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131616,6 +137476,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131638,6 +137499,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131660,6 +137522,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131681,6 +137544,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131702,6 +137566,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131725,6 +137590,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131748,6 +137614,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131770,6 +137637,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131792,6 +137660,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131815,6 +137684,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131838,6 +137708,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131859,6 +137730,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131880,6 +137752,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131904,6 +137777,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131928,6 +137802,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131950,6 +137825,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131972,6 +137848,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131993,6 +137870,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132014,6 +137892,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132034,6 +137913,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132054,6 +137934,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132076,6 +137957,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132098,6 +137980,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132118,6 +138001,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132138,6 +138022,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132160,6 +138045,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132182,6 +138068,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132203,6 +138090,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132224,6 +138112,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132247,6 +138136,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132270,6 +138160,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132292,6 +138183,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132314,6 +138206,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132337,6 +138230,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132360,6 +138254,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132381,6 +138276,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132402,6 +138298,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132426,6 +138323,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132450,6 +138348,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132472,6 +138371,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132494,6 +138394,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132515,6 +138416,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132536,6 +138438,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132556,6 +138459,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132576,6 +138480,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132598,6 +138503,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132620,6 +138526,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132640,6 +138547,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132660,6 +138568,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132682,6 +138591,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132704,6 +138614,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132725,6 +138636,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132746,6 +138658,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132769,6 +138682,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132792,6 +138706,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132814,6 +138729,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132836,6 +138752,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132859,6 +138776,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132882,6 +138800,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132903,6 +138822,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132924,6 +138844,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132948,6 +138869,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132972,6 +138894,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132994,6 +138917,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133016,6 +138940,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133037,6 +138962,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133058,6 +138984,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133078,6 +139005,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133098,6 +139026,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133120,6 +139049,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133142,6 +139072,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133162,6 +139093,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133182,6 +139114,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133204,6 +139137,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133226,6 +139160,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133247,6 +139182,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133268,6 +139204,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133291,6 +139228,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133314,6 +139252,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133336,6 +139275,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133358,6 +139298,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133381,6 +139322,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133404,6 +139346,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133425,6 +139368,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133446,6 +139390,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133470,6 +139415,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133494,6 +139440,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133516,6 +139463,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133538,6 +139486,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133558,6 +139507,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133578,6 +139528,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133599,6 +139550,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133620,6 +139572,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133642,6 +139595,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133664,6 +139618,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133684,6 +139639,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133704,6 +139660,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133725,6 +139682,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133746,6 +139704,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133768,6 +139727,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133790,6 +139750,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133811,6 +139772,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133832,6 +139794,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133852,6 +139815,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133872,6 +139836,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133892,6 +139857,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133912,6 +139878,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133934,6 +139901,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133956,6 +139924,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133977,6 +139946,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133998,6 +139968,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134021,6 +139992,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134044,6 +140016,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134066,6 +140039,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134088,6 +140062,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134109,6 +140084,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134130,6 +140106,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134152,6 +140129,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134174,6 +140152,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134195,6 +140174,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134216,6 +140196,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134236,6 +140217,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134256,6 +140238,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134276,6 +140259,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134296,6 +140280,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134318,6 +140303,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134340,6 +140326,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134361,6 +140348,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134382,6 +140370,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134405,6 +140394,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134428,6 +140418,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134450,6 +140441,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134472,6 +140464,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134493,6 +140486,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134514,6 +140508,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134536,6 +140531,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134558,6 +140554,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134579,6 +140576,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134600,6 +140598,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134620,6 +140619,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134640,6 +140640,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134660,6 +140661,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134680,6 +140682,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134702,6 +140705,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134724,6 +140728,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134745,6 +140750,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134766,6 +140772,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134789,6 +140796,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134812,6 +140820,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134834,6 +140843,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134856,6 +140866,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134877,6 +140888,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134898,6 +140910,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134920,6 +140933,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134942,6 +140956,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134963,6 +140978,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134984,6 +141000,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135004,6 +141021,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135024,6 +141042,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135044,6 +141063,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135064,6 +141084,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135086,6 +141107,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135108,6 +141130,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135129,6 +141152,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135150,6 +141174,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135173,6 +141198,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135196,6 +141222,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135218,6 +141245,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135240,6 +141268,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135261,6 +141290,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135282,6 +141312,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135304,6 +141335,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135326,6 +141358,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135347,6 +141380,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135368,6 +141402,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135388,6 +141423,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135408,6 +141444,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135428,6 +141465,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135448,6 +141486,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135470,6 +141509,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135492,6 +141532,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135513,6 +141554,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135534,6 +141576,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135557,6 +141600,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135580,6 +141624,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135602,6 +141647,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135624,6 +141670,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135645,6 +141692,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135666,6 +141714,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135688,6 +141737,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135710,6 +141760,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135731,6 +141782,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135752,6 +141804,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135772,6 +141825,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135792,6 +141846,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135812,6 +141867,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135832,6 +141888,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135854,6 +141911,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135876,6 +141934,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135897,6 +141956,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135918,6 +141978,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135941,6 +142002,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135964,6 +142026,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135986,6 +142049,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136008,6 +142072,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136029,6 +142094,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136050,6 +142116,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136072,6 +142139,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136094,6 +142162,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136114,6 +142183,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136134,6 +142204,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136155,6 +142226,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136176,6 +142248,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136198,6 +142271,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136220,6 +142294,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136240,6 +142315,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136260,6 +142336,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136281,6 +142358,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136302,6 +142380,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136324,6 +142403,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136346,6 +142426,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136367,6 +142448,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136388,6 +142470,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136408,6 +142491,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136428,6 +142512,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136450,6 +142535,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136472,6 +142558,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136492,6 +142579,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136512,6 +142600,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136534,6 +142623,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136556,6 +142646,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136577,6 +142668,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136598,6 +142690,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136621,6 +142714,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136644,6 +142738,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136666,6 +142761,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136688,6 +142784,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136711,6 +142808,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136734,6 +142832,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136755,6 +142854,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136776,6 +142876,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136800,6 +142901,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136824,6 +142926,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136846,6 +142949,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136868,6 +142972,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136889,6 +142994,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136910,6 +143016,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136930,6 +143037,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136950,6 +143058,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136972,6 +143081,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136994,6 +143104,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137014,6 +143125,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137034,6 +143146,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137056,6 +143169,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137078,6 +143192,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137099,6 +143214,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137120,6 +143236,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137143,6 +143260,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137166,6 +143284,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137188,6 +143307,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137210,6 +143330,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137233,6 +143354,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137256,6 +143378,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137277,6 +143400,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137298,6 +143422,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137322,6 +143447,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137346,6 +143472,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137368,6 +143495,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137390,6 +143518,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137411,6 +143540,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137432,6 +143562,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137452,6 +143583,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137472,6 +143604,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137494,6 +143627,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137516,6 +143650,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137536,6 +143671,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137556,6 +143692,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137578,6 +143715,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137600,6 +143738,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137621,6 +143760,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137642,6 +143782,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137665,6 +143806,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137688,6 +143830,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137710,6 +143853,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137732,6 +143876,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137755,6 +143900,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137778,6 +143924,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137799,6 +143946,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137820,6 +143968,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137844,6 +143993,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137868,6 +144018,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137890,6 +144041,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137912,6 +144064,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137933,6 +144086,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137954,6 +144108,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137974,6 +144129,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137994,6 +144150,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138016,6 +144173,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138038,6 +144196,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138058,6 +144217,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138078,6 +144238,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138100,6 +144261,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138122,6 +144284,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138143,6 +144306,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138164,6 +144328,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138187,6 +144352,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138210,6 +144376,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138232,6 +144399,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138254,6 +144422,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138277,6 +144446,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138300,6 +144470,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138321,6 +144492,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138342,6 +144514,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138366,6 +144539,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138390,6 +144564,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138412,6 +144587,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138434,6 +144610,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138455,6 +144632,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138476,6 +144654,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138496,6 +144675,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138516,6 +144696,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138538,6 +144719,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138560,6 +144742,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138580,6 +144763,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138600,6 +144784,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138622,6 +144807,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138644,6 +144830,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138665,6 +144852,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138686,6 +144874,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138709,6 +144898,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138732,6 +144922,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138754,6 +144945,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138776,6 +144968,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138799,6 +144992,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138822,6 +145016,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138843,6 +145038,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138864,6 +145060,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138888,6 +145085,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138912,6 +145110,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138934,6 +145133,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138956,6 +145156,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138977,6 +145178,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138998,6 +145200,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139018,6 +145221,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139038,6 +145242,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139060,6 +145265,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139082,6 +145288,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139102,6 +145309,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139122,6 +145330,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139144,6 +145353,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139166,6 +145376,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139187,6 +145398,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139208,6 +145420,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139231,6 +145444,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139254,6 +145468,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139276,6 +145491,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139298,6 +145514,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139321,6 +145538,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139344,6 +145562,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139365,6 +145584,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139386,6 +145606,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139410,6 +145631,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139434,6 +145656,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139456,6 +145679,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139478,6 +145702,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139498,6 +145723,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139518,6 +145744,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139539,6 +145766,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139560,6 +145788,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139582,6 +145811,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139604,6 +145834,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139624,6 +145855,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139644,6 +145876,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139665,6 +145898,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139686,6 +145920,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139708,6 +145943,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139730,6 +145966,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139751,6 +145988,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139772,6 +146010,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139792,6 +146031,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139812,6 +146052,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139832,6 +146073,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139852,6 +146094,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139874,6 +146117,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139896,6 +146140,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139917,6 +146162,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139938,6 +146184,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139961,6 +146208,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139984,6 +146232,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140006,6 +146255,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140028,6 +146278,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140049,6 +146300,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140070,6 +146322,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140092,6 +146345,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140114,6 +146368,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140135,6 +146390,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140156,6 +146412,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140176,6 +146433,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140196,6 +146454,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140216,6 +146475,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140236,6 +146496,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140258,6 +146519,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140280,6 +146542,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140301,6 +146564,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140322,6 +146586,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140345,6 +146610,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140368,6 +146634,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140390,6 +146657,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140412,6 +146680,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140433,6 +146702,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140454,6 +146724,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140476,6 +146747,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140498,6 +146770,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140519,6 +146792,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140540,6 +146814,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140560,6 +146835,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140580,6 +146856,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140600,6 +146877,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140620,6 +146898,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140642,6 +146921,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140664,6 +146944,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140685,6 +146966,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140706,6 +146988,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140729,6 +147012,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140752,6 +147036,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140774,6 +147059,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140796,6 +147082,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140817,6 +147104,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140838,6 +147126,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140860,6 +147149,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140882,6 +147172,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140903,6 +147194,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140924,6 +147216,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140944,6 +147237,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140964,6 +147258,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140984,6 +147279,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141004,6 +147300,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141026,6 +147323,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141048,6 +147346,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141069,6 +147368,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141090,6 +147390,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141113,6 +147414,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141136,6 +147438,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141158,6 +147461,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141180,6 +147484,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141201,6 +147506,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141222,6 +147528,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141244,6 +147551,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141266,6 +147574,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141287,6 +147596,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141308,6 +147618,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141328,6 +147639,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141348,6 +147660,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141368,6 +147681,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141388,6 +147702,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141410,6 +147725,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141432,6 +147748,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141453,6 +147770,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141474,6 +147792,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141497,6 +147816,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141520,6 +147840,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141542,6 +147863,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141564,6 +147886,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141585,6 +147908,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141606,6 +147930,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141628,6 +147953,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141650,6 +147976,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141671,6 +147998,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141692,6 +148020,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141712,6 +148041,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141732,6 +148062,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141752,6 +148083,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141772,6 +148104,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141794,6 +148127,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141816,6 +148150,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141837,6 +148172,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141858,6 +148194,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141881,6 +148218,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141904,6 +148242,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141926,6 +148265,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141948,6 +148288,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141969,6 +148310,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141990,6 +148332,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142012,6 +148355,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142034,6 +148378,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142054,6 +148399,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142074,6 +148420,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142095,6 +148442,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142116,6 +148464,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142138,6 +148487,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142160,6 +148510,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142180,6 +148531,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142200,6 +148552,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142221,6 +148574,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142242,6 +148596,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142264,6 +148619,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142286,6 +148642,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142307,6 +148664,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142328,6 +148686,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142348,6 +148707,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142368,6 +148728,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142390,6 +148751,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142412,6 +148774,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142432,6 +148795,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142452,6 +148816,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142474,6 +148839,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142496,6 +148862,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142517,6 +148884,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142538,6 +148906,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142561,6 +148930,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142584,6 +148954,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142606,6 +148977,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142628,6 +149000,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142651,6 +149024,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142674,6 +149048,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142695,6 +149070,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142716,6 +149092,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142740,6 +149117,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142764,6 +149142,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142786,6 +149165,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142808,6 +149188,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142829,6 +149210,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142850,6 +149232,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142870,6 +149253,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142890,6 +149274,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142912,6 +149297,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142934,6 +149320,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142954,6 +149341,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142974,6 +149362,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142996,6 +149385,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143018,6 +149408,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143039,6 +149430,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143060,6 +149452,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143083,6 +149476,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143106,6 +149500,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143128,6 +149523,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143150,6 +149546,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143173,6 +149570,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143196,6 +149594,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143217,6 +149616,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143238,6 +149638,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143262,6 +149663,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143286,6 +149688,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143308,6 +149711,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143330,6 +149734,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143351,6 +149756,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143372,6 +149778,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143392,6 +149799,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143412,6 +149820,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143434,6 +149843,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143456,6 +149866,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143476,6 +149887,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143496,6 +149908,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143518,6 +149931,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143540,6 +149954,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143561,6 +149976,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143582,6 +149998,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143605,6 +150022,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143628,6 +150046,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143650,6 +150069,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143672,6 +150092,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143695,6 +150116,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143718,6 +150140,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143739,6 +150162,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143760,6 +150184,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143784,6 +150209,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143808,6 +150234,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143830,6 +150257,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143852,6 +150280,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143873,6 +150302,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143894,6 +150324,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143914,6 +150345,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143934,6 +150366,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143956,6 +150389,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143978,6 +150412,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143998,6 +150433,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144018,6 +150454,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144040,6 +150477,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144062,6 +150500,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144083,6 +150522,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144104,6 +150544,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144127,6 +150568,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144150,6 +150592,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144172,6 +150615,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144194,6 +150638,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144217,6 +150662,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144240,6 +150686,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144261,6 +150708,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144282,6 +150730,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144306,6 +150755,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144330,6 +150780,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144352,6 +150803,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144374,6 +150826,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144395,6 +150848,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144416,6 +150870,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144436,6 +150891,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144456,6 +150912,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144478,6 +150935,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144500,6 +150958,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144520,6 +150979,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144540,6 +151000,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144562,6 +151023,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144584,6 +151046,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144605,6 +151068,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144626,6 +151090,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144649,6 +151114,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144672,6 +151138,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144694,6 +151161,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144716,6 +151184,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144739,6 +151208,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144762,6 +151232,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144783,6 +151254,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144804,6 +151276,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144828,6 +151301,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144852,6 +151326,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144874,6 +151349,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144896,6 +151372,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144917,6 +151394,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144938,6 +151416,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144958,6 +151437,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144978,6 +151458,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145000,6 +151481,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145022,6 +151504,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145042,6 +151525,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145062,6 +151546,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145084,6 +151569,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145106,6 +151592,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145127,6 +151614,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145148,6 +151636,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145171,6 +151660,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145194,6 +151684,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145216,6 +151707,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145238,6 +151730,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145261,6 +151754,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145284,6 +151778,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145305,6 +151800,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145326,6 +151822,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145350,6 +151847,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145374,6 +151872,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145396,6 +151895,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145418,6 +151918,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145438,6 +151939,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145458,6 +151960,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145479,6 +151982,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145500,6 +152004,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145522,6 +152027,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145544,6 +152050,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145564,6 +152071,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145584,6 +152092,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145605,6 +152114,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145626,6 +152136,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145648,6 +152159,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145670,6 +152182,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145691,6 +152204,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145712,6 +152226,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145732,6 +152247,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145752,6 +152268,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145772,6 +152289,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145792,6 +152310,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145814,6 +152333,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145836,6 +152356,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145857,6 +152378,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145878,6 +152400,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145901,6 +152424,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145924,6 +152448,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145946,6 +152471,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145968,6 +152494,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145989,6 +152516,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146010,6 +152538,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146032,6 +152561,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146054,6 +152584,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146075,6 +152606,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146096,6 +152628,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146116,6 +152649,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146136,6 +152670,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146156,6 +152691,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146176,6 +152712,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146198,6 +152735,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146220,6 +152758,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146241,6 +152780,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146262,6 +152802,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146285,6 +152826,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146308,6 +152850,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146330,6 +152873,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146352,6 +152896,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146373,6 +152918,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146394,6 +152940,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146416,6 +152963,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146438,6 +152986,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146459,6 +153008,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146480,6 +153030,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146500,6 +153051,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146520,6 +153072,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146540,6 +153093,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146560,6 +153114,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146582,6 +153137,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146604,6 +153160,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146625,6 +153182,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146646,6 +153204,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146669,6 +153228,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146692,6 +153252,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146714,6 +153275,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146736,6 +153298,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146757,6 +153320,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146778,6 +153342,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146800,6 +153365,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146822,6 +153388,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146843,6 +153410,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146864,6 +153432,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146884,6 +153453,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146904,6 +153474,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146924,6 +153495,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146944,6 +153516,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146966,6 +153539,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146988,6 +153562,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147009,6 +153584,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147030,6 +153606,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147053,6 +153630,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147076,6 +153654,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147098,6 +153677,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147120,6 +153700,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147141,6 +153722,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147162,6 +153744,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147184,6 +153767,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147206,6 +153790,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147227,6 +153812,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147248,6 +153834,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147268,6 +153855,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147288,6 +153876,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147308,6 +153897,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147328,6 +153918,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147350,6 +153941,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147372,6 +153964,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147393,6 +153986,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147414,6 +154008,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147437,6 +154032,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147460,6 +154056,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147482,6 +154079,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147504,6 +154102,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147525,6 +154124,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147546,6 +154146,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147568,6 +154169,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147590,6 +154192,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147611,6 +154214,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147632,6 +154236,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147652,6 +154257,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147672,6 +154278,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147692,6 +154299,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147712,6 +154320,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147734,6 +154343,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147756,6 +154366,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147777,6 +154388,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147798,6 +154410,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147821,6 +154434,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147844,6 +154458,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147866,6 +154481,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147888,6 +154504,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147909,6 +154526,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147930,6 +154548,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147952,6 +154571,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147974,6 +154594,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147994,6 +154615,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148014,6 +154636,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148035,6 +154658,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148056,6 +154680,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148078,6 +154703,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148100,6 +154726,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148120,6 +154747,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148140,6 +154768,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148161,6 +154790,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148182,6 +154812,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148204,6 +154835,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148226,6 +154858,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148247,6 +154880,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148268,6 +154902,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148288,6 +154923,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148308,6 +154944,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148330,6 +154967,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148352,6 +154990,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148372,6 +155011,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148392,6 +155032,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148414,6 +155055,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148436,6 +155078,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148457,6 +155100,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148478,6 +155122,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148501,6 +155146,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148524,6 +155170,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148546,6 +155193,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148568,6 +155216,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148591,6 +155240,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148614,6 +155264,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148635,6 +155286,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148656,6 +155308,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148680,6 +155333,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148704,6 +155358,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148726,6 +155381,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148748,6 +155404,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148769,6 +155426,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148790,6 +155448,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148810,6 +155469,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148830,6 +155490,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148852,6 +155513,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148874,6 +155536,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148894,6 +155557,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148914,6 +155578,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148936,6 +155601,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148958,6 +155624,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148979,6 +155646,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149000,6 +155668,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149023,6 +155692,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149046,6 +155716,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149068,6 +155739,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149090,6 +155762,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149113,6 +155786,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149136,6 +155810,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149157,6 +155832,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149178,6 +155854,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149202,6 +155879,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149226,6 +155904,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149248,6 +155927,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149270,6 +155950,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149291,6 +155972,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149312,6 +155994,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149332,6 +156015,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149352,6 +156036,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149374,6 +156059,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149396,6 +156082,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149416,6 +156103,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149436,6 +156124,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149458,6 +156147,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149480,6 +156170,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149501,6 +156192,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149522,6 +156214,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149545,6 +156238,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149568,6 +156262,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149590,6 +156285,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149612,6 +156308,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149635,6 +156332,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149658,6 +156356,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149679,6 +156378,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149700,6 +156400,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149724,6 +156425,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149748,6 +156450,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149770,6 +156473,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149792,6 +156496,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149813,6 +156518,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149834,6 +156540,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149854,6 +156561,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149874,6 +156582,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149896,6 +156605,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149918,6 +156628,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149938,6 +156649,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149958,6 +156670,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149980,6 +156693,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150002,6 +156716,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150023,6 +156738,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150044,6 +156760,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150067,6 +156784,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150090,6 +156808,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150112,6 +156831,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150134,6 +156854,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150157,6 +156878,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150180,6 +156902,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150201,6 +156924,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150222,6 +156946,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150246,6 +156971,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150270,6 +156996,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150292,6 +157019,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150314,6 +157042,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150335,6 +157064,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150356,6 +157086,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150376,6 +157107,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150396,6 +157128,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150418,6 +157151,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150440,6 +157174,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150460,6 +157195,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150480,6 +157216,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150502,6 +157239,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150524,6 +157262,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150545,6 +157284,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150566,6 +157306,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150589,6 +157330,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150612,6 +157354,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150634,6 +157377,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150656,6 +157400,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150679,6 +157424,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150702,6 +157448,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150723,6 +157470,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150744,6 +157492,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150768,6 +157517,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150792,6 +157542,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150814,6 +157565,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150836,6 +157588,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150857,6 +157610,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150878,6 +157632,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150898,6 +157653,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150918,6 +157674,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150940,6 +157697,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150962,6 +157720,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150982,6 +157741,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151002,6 +157762,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151024,6 +157785,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151046,6 +157808,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151067,6 +157830,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151088,6 +157852,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151111,6 +157876,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151134,6 +157900,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151156,6 +157923,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151178,6 +157946,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151201,6 +157970,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151224,6 +157994,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151245,6 +158016,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151266,6 +158038,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151290,6 +158063,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151314,6 +158088,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151336,6 +158111,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151358,6 +158134,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151378,6 +158155,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151398,6 +158176,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151419,6 +158198,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151440,6 +158220,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151462,6 +158243,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151484,6 +158266,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151504,6 +158287,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151524,6 +158308,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151545,6 +158330,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151566,6 +158352,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151588,6 +158375,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151610,6 +158398,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151631,6 +158420,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151652,6 +158442,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151672,6 +158463,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151692,6 +158484,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151714,6 +158507,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151736,6 +158530,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151756,6 +158551,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151776,6 +158572,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151798,6 +158595,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151820,6 +158618,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151841,6 +158640,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151862,6 +158662,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151885,6 +158686,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151908,6 +158710,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151930,6 +158733,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151952,6 +158756,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151975,6 +158780,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151998,6 +158804,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152019,6 +158826,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152040,6 +158848,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152064,6 +158873,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152088,6 +158898,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152110,6 +158921,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152132,6 +158944,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152153,6 +158966,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152174,6 +158988,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152194,6 +159009,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152214,6 +159030,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152236,6 +159053,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152258,6 +159076,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152278,6 +159097,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152298,6 +159118,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152320,6 +159141,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152342,6 +159164,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152363,6 +159186,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152384,6 +159208,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152407,6 +159232,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152430,6 +159256,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152452,6 +159279,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152474,6 +159302,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152497,6 +159326,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152520,6 +159350,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152541,6 +159372,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152562,6 +159394,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152586,6 +159419,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152610,6 +159444,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152632,6 +159467,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152654,6 +159490,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152675,6 +159512,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152696,6 +159534,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152716,6 +159555,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152736,6 +159576,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152758,6 +159599,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152780,6 +159622,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152800,6 +159643,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152820,6 +159664,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152842,6 +159687,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152864,6 +159710,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152885,6 +159732,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152906,6 +159754,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152929,6 +159778,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152952,6 +159802,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152974,6 +159825,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152996,6 +159848,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153019,6 +159872,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153042,6 +159896,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153063,6 +159918,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153084,6 +159940,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153108,6 +159965,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153132,6 +159990,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153154,6 +160013,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153176,6 +160036,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153197,6 +160058,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153218,6 +160080,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153238,6 +160101,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153258,6 +160122,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153280,6 +160145,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153302,6 +160168,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153322,6 +160189,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153342,6 +160210,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153364,6 +160233,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153386,6 +160256,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153407,6 +160278,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153428,6 +160300,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153451,6 +160324,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153474,6 +160348,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153496,6 +160371,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153518,6 +160394,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153541,6 +160418,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153564,6 +160442,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153585,6 +160464,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153606,6 +160486,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153630,6 +160511,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153654,6 +160536,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153676,6 +160559,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153698,6 +160582,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153719,6 +160604,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153740,6 +160626,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153760,6 +160647,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153780,6 +160668,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153802,6 +160691,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153824,6 +160714,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153844,6 +160735,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153864,6 +160756,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153886,6 +160779,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153908,6 +160802,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153929,6 +160824,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153950,6 +160846,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153973,6 +160870,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153996,6 +160894,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154018,6 +160917,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154040,6 +160940,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154063,6 +160964,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154086,6 +160988,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154107,6 +161010,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154128,6 +161032,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154152,6 +161057,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154176,6 +161082,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154198,6 +161105,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154220,6 +161128,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154241,6 +161150,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154262,6 +161172,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154282,6 +161193,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154302,6 +161214,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154324,6 +161237,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154346,6 +161260,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154366,6 +161281,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154386,6 +161302,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154408,6 +161325,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154430,6 +161348,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154451,6 +161370,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154472,6 +161392,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154495,6 +161416,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154518,6 +161440,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154540,6 +161463,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154562,6 +161486,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154585,6 +161510,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154608,6 +161534,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154629,6 +161556,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154650,6 +161578,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154674,6 +161603,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154698,6 +161628,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154720,6 +161651,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154742,6 +161674,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154762,6 +161695,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154782,6 +161716,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154803,6 +161738,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154824,6 +161760,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154846,6 +161783,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154868,6 +161806,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154888,6 +161827,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154908,6 +161848,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154929,6 +161870,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154950,6 +161892,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154972,6 +161915,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154994,6 +161938,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155015,6 +161960,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155036,6 +161982,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155056,6 +162003,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155076,6 +162024,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155098,6 +162047,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155120,6 +162070,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155140,6 +162091,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155160,6 +162112,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155182,6 +162135,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155204,6 +162158,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155225,6 +162180,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155246,6 +162202,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155269,6 +162226,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155292,6 +162250,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155314,6 +162273,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155336,6 +162296,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155359,6 +162320,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155382,6 +162344,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155403,6 +162366,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155424,6 +162388,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155448,6 +162413,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155472,6 +162438,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155494,6 +162461,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155516,6 +162484,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155537,6 +162506,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155558,6 +162528,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155578,6 +162549,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155598,6 +162570,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155620,6 +162593,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155642,6 +162616,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155662,6 +162637,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155682,6 +162658,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155704,6 +162681,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155726,6 +162704,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155747,6 +162726,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155768,6 +162748,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155791,6 +162772,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155814,6 +162796,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155836,6 +162819,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155858,6 +162842,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155881,6 +162866,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155904,6 +162890,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155925,6 +162912,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155946,6 +162934,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155970,6 +162959,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155994,6 +162984,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156016,6 +163007,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156038,6 +163030,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156059,6 +163052,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156080,6 +163074,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156100,6 +163095,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156120,6 +163116,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156142,6 +163139,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156164,6 +163162,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156184,6 +163183,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156204,6 +163204,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156226,6 +163227,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156248,6 +163250,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156269,6 +163272,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156290,6 +163294,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156313,6 +163318,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156336,6 +163342,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156358,6 +163365,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156380,6 +163388,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156403,6 +163412,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156426,6 +163436,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156447,6 +163458,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156468,6 +163480,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156492,6 +163505,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156516,6 +163530,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156538,6 +163553,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156560,6 +163576,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156581,6 +163598,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156602,6 +163620,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156622,6 +163641,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156642,6 +163662,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156664,6 +163685,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156686,6 +163708,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156706,6 +163729,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156726,6 +163750,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156748,6 +163773,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156770,6 +163796,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156791,6 +163818,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156812,6 +163840,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156835,6 +163864,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156858,6 +163888,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156880,6 +163911,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156902,6 +163934,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156925,6 +163958,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156948,6 +163982,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156969,6 +164004,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156990,6 +164026,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157014,6 +164051,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157038,6 +164076,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157060,6 +164099,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157082,6 +164122,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157103,6 +164144,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157124,6 +164166,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157144,6 +164187,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157164,6 +164208,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157186,6 +164231,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157208,6 +164254,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157228,6 +164275,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157248,6 +164296,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157270,6 +164319,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157292,6 +164342,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157313,6 +164364,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157334,6 +164386,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157357,6 +164410,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157380,6 +164434,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157402,6 +164457,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157424,6 +164480,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157447,6 +164504,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157470,6 +164528,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157491,6 +164550,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157512,6 +164572,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157536,6 +164597,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157560,6 +164622,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157582,6 +164645,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157604,6 +164668,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157625,6 +164690,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157646,6 +164712,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157666,6 +164733,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157686,6 +164754,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157708,6 +164777,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157730,6 +164800,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157750,6 +164821,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157770,6 +164842,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157792,6 +164865,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157814,6 +164888,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157835,6 +164910,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157856,6 +164932,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157879,6 +164956,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157902,6 +164980,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157924,6 +165003,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157946,6 +165026,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157969,6 +165050,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157992,6 +165074,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158013,6 +165096,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158034,6 +165118,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158058,6 +165143,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158082,6 +165168,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158104,6 +165191,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158126,6 +165214,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158146,6 +165235,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158166,6 +165256,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158187,6 +165278,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158208,6 +165300,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158230,6 +165323,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158252,6 +165346,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158272,6 +165367,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158292,6 +165388,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158313,6 +165410,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158334,6 +165432,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158356,6 +165455,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158378,6 +165478,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158399,6 +165500,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158420,6 +165522,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158440,6 +165543,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158460,6 +165564,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158480,6 +165585,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158500,6 +165606,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158522,6 +165629,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158544,6 +165652,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158565,6 +165674,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158586,6 +165696,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158609,6 +165720,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158632,6 +165744,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158654,6 +165767,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158676,6 +165790,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158697,6 +165812,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158718,6 +165834,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158740,6 +165857,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158762,6 +165880,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158783,6 +165902,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158804,6 +165924,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158824,6 +165945,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158844,6 +165966,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158864,6 +165987,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158884,6 +166008,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158906,6 +166031,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158928,6 +166054,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158949,6 +166076,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158970,6 +166098,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158993,6 +166122,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159016,6 +166146,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159038,6 +166169,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159060,6 +166192,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159081,6 +166214,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159102,6 +166236,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159124,6 +166259,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159146,6 +166282,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159167,6 +166304,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159188,6 +166326,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159208,6 +166347,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159228,6 +166368,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159248,6 +166389,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159268,6 +166410,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159290,6 +166433,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159312,6 +166456,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159333,6 +166478,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159354,6 +166500,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159377,6 +166524,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159400,6 +166548,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159422,6 +166571,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159444,6 +166594,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159465,6 +166616,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159486,6 +166638,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159508,6 +166661,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159530,6 +166684,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159551,6 +166706,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159572,6 +166728,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159592,6 +166749,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159612,6 +166770,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159632,6 +166791,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159652,6 +166812,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159674,6 +166835,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159696,6 +166858,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159717,6 +166880,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159738,6 +166902,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159761,6 +166926,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159784,6 +166950,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159806,6 +166973,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159828,6 +166996,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159849,6 +167018,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159870,6 +167040,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159892,6 +167063,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159914,6 +167086,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159935,6 +167108,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159956,6 +167130,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159976,6 +167151,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159996,6 +167172,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160016,6 +167193,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160036,6 +167214,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160058,6 +167237,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160080,6 +167260,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160101,6 +167282,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160122,6 +167304,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160145,6 +167328,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160168,6 +167352,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160190,6 +167375,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160212,6 +167398,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160233,6 +167420,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160254,6 +167442,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160276,6 +167465,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160298,6 +167488,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160319,6 +167510,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160340,6 +167532,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160360,6 +167553,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160380,6 +167574,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160400,6 +167595,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160420,6 +167616,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160442,6 +167639,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160464,6 +167662,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160485,6 +167684,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160506,6 +167706,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160529,6 +167730,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160552,6 +167754,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160574,6 +167777,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160596,6 +167800,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160617,6 +167822,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160638,6 +167844,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160660,6 +167867,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160682,6 +167890,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160702,6 +167911,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160722,6 +167932,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160743,6 +167954,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160764,6 +167976,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160786,6 +167999,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160808,6 +168022,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160828,6 +168043,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160848,6 +168064,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160869,6 +168086,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160890,6 +168108,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160912,6 +168131,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160934,6 +168154,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160955,6 +168176,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160976,6 +168198,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160996,6 +168219,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161016,6 +168240,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161038,6 +168263,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161060,6 +168286,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161080,6 +168307,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161100,6 +168328,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161122,6 +168351,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161144,6 +168374,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161165,6 +168396,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161186,6 +168418,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161209,6 +168442,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161232,6 +168466,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161254,6 +168489,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161276,6 +168512,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161299,6 +168536,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161322,6 +168560,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161343,6 +168582,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161364,6 +168604,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161388,6 +168629,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161412,6 +168654,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161434,6 +168677,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161456,6 +168700,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161477,6 +168722,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161498,6 +168744,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161518,6 +168765,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161538,6 +168786,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161560,6 +168809,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161582,6 +168832,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161602,6 +168853,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161622,6 +168874,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161644,6 +168897,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161666,6 +168920,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161687,6 +168942,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161708,6 +168964,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161731,6 +168988,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161754,6 +169012,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161776,6 +169035,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161798,6 +169058,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161821,6 +169082,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161844,6 +169106,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161865,6 +169128,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161886,6 +169150,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161910,6 +169175,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161934,6 +169200,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161956,6 +169223,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161978,6 +169246,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161999,6 +169268,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162020,6 +169290,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162040,6 +169311,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162060,6 +169332,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162082,6 +169355,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162104,6 +169378,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162124,6 +169399,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162144,6 +169420,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162166,6 +169443,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162188,6 +169466,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162209,6 +169488,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162230,6 +169510,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162253,6 +169534,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162276,6 +169558,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162298,6 +169581,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162320,6 +169604,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162343,6 +169628,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162366,6 +169652,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162387,6 +169674,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162408,6 +169696,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162432,6 +169721,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162456,6 +169746,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162478,6 +169769,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162500,6 +169792,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162521,6 +169814,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162542,6 +169836,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162562,6 +169857,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162582,6 +169878,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162604,6 +169901,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162626,6 +169924,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162646,6 +169945,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162666,6 +169966,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162688,6 +169989,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162710,6 +170012,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162731,6 +170034,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162752,6 +170056,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162775,6 +170080,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162798,6 +170104,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162820,6 +170127,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162842,6 +170150,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162865,6 +170174,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162888,6 +170198,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162909,6 +170220,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162930,6 +170242,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162954,6 +170267,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162978,6 +170292,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163000,6 +170315,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163022,6 +170338,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163043,6 +170360,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163064,6 +170382,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163084,6 +170403,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163104,6 +170424,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163126,6 +170447,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163148,6 +170470,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163168,6 +170491,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163188,6 +170512,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163210,6 +170535,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163232,6 +170558,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163253,6 +170580,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163274,6 +170602,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163297,6 +170626,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163320,6 +170650,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163342,6 +170673,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163364,6 +170696,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163387,6 +170720,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163410,6 +170744,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163431,6 +170766,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163452,6 +170788,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163476,6 +170813,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163500,6 +170838,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163522,6 +170861,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163544,6 +170884,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163565,6 +170906,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163586,6 +170928,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163606,6 +170949,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163626,6 +170970,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163648,6 +170993,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163670,6 +171016,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163690,6 +171037,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163710,6 +171058,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163732,6 +171081,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163754,6 +171104,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163775,6 +171126,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163796,6 +171148,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163819,6 +171172,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163842,6 +171196,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163864,6 +171219,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163886,6 +171242,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163909,6 +171266,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163932,6 +171290,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163953,6 +171312,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163974,6 +171334,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163998,6 +171359,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164022,6 +171384,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164044,6 +171407,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164066,6 +171430,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164086,6 +171451,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164106,6 +171472,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164127,6 +171494,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164148,6 +171516,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164170,6 +171539,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164192,6 +171562,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164212,6 +171583,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164232,6 +171604,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164253,6 +171626,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164274,6 +171648,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164296,6 +171671,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164318,6 +171694,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164339,6 +171716,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164360,6 +171738,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164380,6 +171759,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164400,6 +171780,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164420,6 +171801,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164440,6 +171822,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164462,6 +171845,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164484,6 +171868,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164505,6 +171890,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164526,6 +171912,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164549,6 +171936,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164572,6 +171960,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164594,6 +171983,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164616,6 +172006,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164637,6 +172028,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164658,6 +172050,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164680,6 +172073,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164702,6 +172096,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164723,6 +172118,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164744,6 +172140,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164764,6 +172161,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164784,6 +172182,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164804,6 +172203,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164824,6 +172224,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164846,6 +172247,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164868,6 +172270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164889,6 +172292,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164910,6 +172314,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164933,6 +172338,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164956,6 +172362,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164978,6 +172385,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165000,6 +172408,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165021,6 +172430,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165042,6 +172452,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165064,6 +172475,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165086,6 +172498,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165107,6 +172520,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165128,6 +172542,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165148,6 +172563,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165168,6 +172584,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165188,6 +172605,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165208,6 +172626,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165230,6 +172649,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165252,6 +172672,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165273,6 +172694,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165294,6 +172716,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165317,6 +172740,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165340,6 +172764,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165362,6 +172787,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165384,6 +172810,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165405,6 +172832,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165426,6 +172854,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165448,6 +172877,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165470,6 +172900,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165491,6 +172922,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165512,6 +172944,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165532,6 +172965,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165552,6 +172986,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165572,6 +173007,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165592,6 +173028,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165614,6 +173051,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165636,6 +173074,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165657,6 +173096,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165678,6 +173118,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165701,6 +173142,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165724,6 +173166,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165746,6 +173189,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165768,6 +173212,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165789,6 +173234,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165810,6 +173256,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165832,6 +173279,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165854,6 +173302,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165875,6 +173324,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165896,6 +173346,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165916,6 +173367,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165936,6 +173388,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165956,6 +173409,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165976,6 +173430,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165998,6 +173453,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166020,6 +173476,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166041,6 +173498,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166062,6 +173520,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166085,6 +173544,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166108,6 +173568,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166130,6 +173591,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166152,6 +173614,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166173,6 +173636,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166194,6 +173658,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166216,6 +173681,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166238,6 +173704,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166259,6 +173726,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166280,6 +173748,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166300,6 +173769,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166320,6 +173790,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166340,6 +173811,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166360,6 +173832,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166382,6 +173855,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166404,6 +173878,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166425,6 +173900,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166446,6 +173922,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166469,6 +173946,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166492,6 +173970,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166514,6 +173993,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166536,6 +174016,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166557,6 +174038,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166578,6 +174060,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166600,6 +174083,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166622,6 +174106,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166642,6 +174127,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166662,6 +174148,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166683,6 +174170,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166704,6 +174192,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166726,6 +174215,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166748,6 +174238,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166768,6 +174259,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166788,6 +174280,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166809,6 +174302,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166830,6 +174324,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166852,6 +174347,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166874,6 +174370,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166895,6 +174392,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166916,6 +174414,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166936,6 +174435,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166956,6 +174456,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166978,6 +174479,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167000,6 +174502,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167020,6 +174523,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167040,6 +174544,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167062,6 +174567,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167084,6 +174590,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167105,6 +174612,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167126,6 +174634,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167149,6 +174658,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167172,6 +174682,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167194,6 +174705,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167216,6 +174728,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167239,6 +174752,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167262,6 +174776,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167283,6 +174798,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167304,6 +174820,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167328,6 +174845,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167352,6 +174870,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167374,6 +174893,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167396,6 +174916,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167417,6 +174938,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167438,6 +174960,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167458,6 +174981,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167478,6 +175002,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167500,6 +175025,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167522,6 +175048,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167542,6 +175069,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167562,6 +175090,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167584,6 +175113,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167606,6 +175136,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167627,6 +175158,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167648,6 +175180,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167671,6 +175204,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167694,6 +175228,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167716,6 +175251,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167738,6 +175274,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167761,6 +175298,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167784,6 +175322,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167805,6 +175344,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167826,6 +175366,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167850,6 +175391,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167874,6 +175416,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167896,6 +175439,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167918,6 +175462,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167939,6 +175484,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167960,6 +175506,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167980,6 +175527,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168000,6 +175548,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168022,6 +175571,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168044,6 +175594,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168064,6 +175615,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168084,6 +175636,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168106,6 +175659,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168128,6 +175682,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168149,6 +175704,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168170,6 +175726,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168193,6 +175750,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168216,6 +175774,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168238,6 +175797,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168260,6 +175820,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168283,6 +175844,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168306,6 +175868,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168327,6 +175890,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168348,6 +175912,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168372,6 +175937,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168396,6 +175962,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168418,6 +175985,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168440,6 +176008,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168461,6 +176030,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168482,6 +176052,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168502,6 +176073,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168522,6 +176094,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168544,6 +176117,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168566,6 +176140,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168586,6 +176161,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168606,6 +176182,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168628,6 +176205,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168650,6 +176228,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168671,6 +176250,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168692,6 +176272,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168715,6 +176296,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168738,6 +176320,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168760,6 +176343,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168782,6 +176366,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168805,6 +176390,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168828,6 +176414,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168849,6 +176436,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168870,6 +176458,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168894,6 +176483,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168918,6 +176508,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168940,6 +176531,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168962,6 +176554,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168983,6 +176576,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169004,6 +176598,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169024,6 +176619,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169044,6 +176640,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169066,6 +176663,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169088,6 +176686,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169108,6 +176707,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169128,6 +176728,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169150,6 +176751,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169172,6 +176774,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169193,6 +176796,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169214,6 +176818,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169237,6 +176842,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169260,6 +176866,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169282,6 +176889,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169304,6 +176912,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169327,6 +176936,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169350,6 +176960,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169371,6 +176982,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169392,6 +177004,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169416,6 +177029,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169440,6 +177054,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169462,6 +177077,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169484,6 +177100,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169505,6 +177122,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169526,6 +177144,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169546,6 +177165,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169566,6 +177186,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169588,6 +177209,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169610,6 +177232,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169630,6 +177253,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169650,6 +177274,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169672,6 +177297,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169694,6 +177320,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169715,6 +177342,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169736,6 +177364,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169759,6 +177388,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169782,6 +177412,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169804,6 +177435,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169826,6 +177458,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169849,6 +177482,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169872,6 +177506,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169893,6 +177528,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169914,6 +177550,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169938,6 +177575,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169962,6 +177600,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169984,6 +177623,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170006,6 +177646,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170026,6 +177667,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170046,6 +177688,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170067,6 +177710,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170088,6 +177732,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170110,6 +177755,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170132,6 +177778,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170152,6 +177799,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170172,6 +177820,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170193,6 +177842,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170214,6 +177864,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170236,6 +177887,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170258,6 +177910,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170279,6 +177932,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170300,6 +177954,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170320,6 +177975,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170340,6 +177996,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170360,6 +178017,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170380,6 +178038,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170402,6 +178061,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170424,6 +178084,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170445,6 +178106,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170466,6 +178128,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170489,6 +178152,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170512,6 +178176,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170534,6 +178199,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170556,6 +178222,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170577,6 +178244,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170598,6 +178266,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170620,6 +178289,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170642,6 +178312,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170663,6 +178334,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170684,6 +178356,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170704,6 +178377,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170724,6 +178398,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170744,6 +178419,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170764,6 +178440,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170786,6 +178463,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170808,6 +178486,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170829,6 +178508,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170850,6 +178530,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170873,6 +178554,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170896,6 +178578,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170918,6 +178601,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170940,6 +178624,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170961,6 +178646,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170982,6 +178668,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171004,6 +178691,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171026,6 +178714,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171047,6 +178736,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171068,6 +178758,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171088,6 +178779,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171108,6 +178800,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171128,6 +178821,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171148,6 +178842,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171170,6 +178865,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171192,6 +178888,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171213,6 +178910,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171234,6 +178932,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171257,6 +178956,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171280,6 +178980,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171302,6 +179003,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171324,6 +179026,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171345,6 +179048,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171366,6 +179070,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171388,6 +179093,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171410,6 +179116,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171431,6 +179138,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171452,6 +179160,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171472,6 +179181,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171492,6 +179202,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171512,6 +179223,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171532,6 +179244,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171554,6 +179267,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171576,6 +179290,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171597,6 +179312,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171618,6 +179334,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171641,6 +179358,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171664,6 +179382,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171686,6 +179405,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171708,6 +179428,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171729,6 +179450,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171750,6 +179472,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171772,6 +179495,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171794,6 +179518,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171815,6 +179540,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171836,6 +179562,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171856,6 +179583,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171876,6 +179604,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171896,6 +179625,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171916,6 +179646,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171938,6 +179669,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171960,6 +179692,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171981,6 +179714,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172002,6 +179736,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172025,6 +179760,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172048,6 +179784,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172070,6 +179807,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172092,6 +179830,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172113,6 +179852,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172134,6 +179874,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172156,6 +179897,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172178,6 +179920,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172199,6 +179942,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172220,6 +179964,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172240,6 +179985,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172260,6 +180006,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172280,6 +180027,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172300,6 +180048,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172322,6 +180071,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172344,6 +180094,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172365,6 +180116,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172386,6 +180138,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172409,6 +180162,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172432,6 +180186,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172454,6 +180209,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172476,6 +180232,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172497,6 +180254,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172518,6 +180276,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172540,6 +180299,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172562,6 +180322,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172582,6 +180343,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172602,6 +180364,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172623,6 +180386,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172644,6 +180408,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172666,6 +180431,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172688,6 +180454,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172708,6 +180475,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172728,6 +180496,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172749,6 +180518,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172770,6 +180540,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172792,6 +180563,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172814,6 +180586,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172835,6 +180608,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172856,6 +180630,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172876,6 +180651,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172896,6 +180672,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172918,6 +180695,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172940,6 +180718,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172960,6 +180739,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172980,6 +180760,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173002,6 +180783,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173024,6 +180806,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173045,6 +180828,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173066,6 +180850,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173089,6 +180874,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173112,6 +180898,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173134,6 +180921,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173156,6 +180944,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173179,6 +180968,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173202,6 +180992,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173223,6 +181014,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173244,6 +181036,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173268,6 +181061,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173292,6 +181086,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173314,6 +181109,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173336,6 +181132,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173357,6 +181154,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173378,6 +181176,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173398,6 +181197,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173418,6 +181218,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173440,6 +181241,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173462,6 +181264,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173482,6 +181285,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173502,6 +181306,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173524,6 +181329,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173546,6 +181352,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173567,6 +181374,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173588,6 +181396,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173611,6 +181420,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173634,6 +181444,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173656,6 +181467,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173678,6 +181490,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173701,6 +181514,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173724,6 +181538,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173745,6 +181560,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173766,6 +181582,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173790,6 +181607,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173814,6 +181632,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173836,6 +181655,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173858,6 +181678,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173879,6 +181700,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173900,6 +181722,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173920,6 +181743,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173940,6 +181764,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173962,6 +181787,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173984,6 +181810,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174004,6 +181831,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174024,6 +181852,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174046,6 +181875,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174068,6 +181898,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174089,6 +181920,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174110,6 +181942,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174133,6 +181966,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174156,6 +181990,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174178,6 +182013,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174200,6 +182036,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174223,6 +182060,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174246,6 +182084,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174267,6 +182106,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174288,6 +182128,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174312,6 +182153,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174336,6 +182178,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174358,6 +182201,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174380,6 +182224,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174401,6 +182246,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174422,6 +182268,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174442,6 +182289,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174462,6 +182310,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174484,6 +182333,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174506,6 +182356,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174526,6 +182377,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174546,6 +182398,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174568,6 +182421,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174590,6 +182444,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174611,6 +182466,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174632,6 +182488,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174655,6 +182512,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174678,6 +182536,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174700,6 +182559,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174722,6 +182582,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174745,6 +182606,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174768,6 +182630,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174789,6 +182652,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174810,6 +182674,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174834,6 +182699,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174858,6 +182724,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174880,6 +182747,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174902,6 +182770,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174923,6 +182792,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174944,6 +182814,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174964,6 +182835,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174984,6 +182856,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175006,6 +182879,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175028,6 +182902,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175048,6 +182923,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175068,6 +182944,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175090,6 +182967,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175112,6 +182990,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175133,6 +183012,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175154,6 +183034,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175177,6 +183058,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175200,6 +183082,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175222,6 +183105,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175244,6 +183128,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175267,6 +183152,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175290,6 +183176,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175311,6 +183198,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175332,6 +183220,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175356,6 +183245,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175380,6 +183270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175402,6 +183293,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175424,6 +183316,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175445,6 +183338,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175466,6 +183360,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175486,6 +183381,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175506,6 +183402,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175528,6 +183425,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175550,6 +183448,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175570,6 +183469,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175590,6 +183490,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175612,6 +183513,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175634,6 +183536,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175655,6 +183558,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175676,6 +183580,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175699,6 +183604,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175722,6 +183628,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175744,6 +183651,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175766,6 +183674,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175789,6 +183698,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175812,6 +183722,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175833,6 +183744,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175854,6 +183766,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175878,6 +183791,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175902,6 +183816,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175924,6 +183839,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175946,6 +183862,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175966,6 +183883,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175986,6 +183904,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176007,6 +183926,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176028,6 +183948,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176050,6 +183971,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176072,6 +183994,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176092,6 +184015,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176112,6 +184036,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176133,6 +184058,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176154,6 +184080,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176176,6 +184103,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176198,6 +184126,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176219,6 +184148,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176240,6 +184170,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176260,6 +184191,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176280,6 +184212,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176300,6 +184233,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176320,6 +184254,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176342,6 +184277,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176364,6 +184300,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176385,6 +184322,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176406,6 +184344,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176429,6 +184368,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176452,6 +184392,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176474,6 +184415,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176496,6 +184438,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176517,6 +184460,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176538,6 +184482,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176560,6 +184505,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176582,6 +184528,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176603,6 +184550,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176624,6 +184572,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176644,6 +184593,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176664,6 +184614,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176684,6 +184635,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176704,6 +184656,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176726,6 +184679,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176748,6 +184702,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176769,6 +184724,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176790,6 +184746,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176813,6 +184770,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176836,6 +184794,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176858,6 +184817,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176880,6 +184840,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176901,6 +184862,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176922,6 +184884,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176944,6 +184907,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176966,6 +184930,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176987,6 +184952,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177008,6 +184974,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177028,6 +184995,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177048,6 +185016,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177068,6 +185037,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177088,6 +185058,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177110,6 +185081,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177132,6 +185104,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177153,6 +185126,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177174,6 +185148,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177197,6 +185172,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177220,6 +185196,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177242,6 +185219,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177264,6 +185242,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177285,6 +185264,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177306,6 +185286,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177328,6 +185309,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177350,6 +185332,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177371,6 +185354,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177392,6 +185376,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177412,6 +185397,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177432,6 +185418,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177452,6 +185439,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177472,6 +185460,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177494,6 +185483,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177516,6 +185506,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177537,6 +185528,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177558,6 +185550,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177581,6 +185574,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177604,6 +185598,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177626,6 +185621,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177648,6 +185644,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177669,6 +185666,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177690,6 +185688,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177712,6 +185711,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177734,6 +185734,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177755,6 +185756,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177776,6 +185778,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177796,6 +185799,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177816,6 +185820,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177836,6 +185841,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177856,6 +185862,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177878,6 +185885,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177900,6 +185908,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177921,6 +185930,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177942,6 +185952,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177965,6 +185976,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177988,6 +186000,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178010,6 +186023,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178032,6 +186046,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178053,6 +186068,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178074,6 +186090,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178096,6 +186113,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178118,6 +186136,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178139,6 +186158,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178160,6 +186180,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178180,6 +186201,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178200,6 +186222,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178220,6 +186243,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178240,6 +186264,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178262,6 +186287,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178284,6 +186310,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178305,6 +186332,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178326,6 +186354,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178349,6 +186378,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178372,6 +186402,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178394,6 +186425,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178416,6 +186448,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178437,6 +186470,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178458,6 +186492,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178480,6 +186515,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178502,6 +186538,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178522,6 +186559,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178542,6 +186580,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178563,6 +186602,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178584,6 +186624,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178606,6 +186647,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178628,6 +186670,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178648,6 +186691,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178668,6 +186712,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178689,6 +186734,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178710,6 +186756,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178732,6 +186779,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178754,6 +186802,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178775,6 +186824,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178796,6 +186846,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178816,6 +186867,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178836,6 +186888,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178858,6 +186911,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178880,6 +186934,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178900,6 +186955,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178920,6 +186976,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178942,6 +186999,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178964,6 +187022,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178985,6 +187044,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179006,6 +187066,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179029,6 +187090,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179052,6 +187114,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179074,6 +187137,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179096,6 +187160,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179119,6 +187184,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179142,6 +187208,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179163,6 +187230,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179184,6 +187252,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179208,6 +187277,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179232,6 +187302,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179254,6 +187325,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179276,6 +187348,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179297,6 +187370,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179318,6 +187392,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179338,6 +187413,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179358,6 +187434,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179380,6 +187457,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179402,6 +187480,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179422,6 +187501,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179442,6 +187522,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179464,6 +187545,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179486,6 +187568,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179507,6 +187590,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179528,6 +187612,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179551,6 +187636,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179574,6 +187660,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179596,6 +187683,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179618,6 +187706,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179641,6 +187730,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179664,6 +187754,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179685,6 +187776,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179706,6 +187798,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179730,6 +187823,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179754,6 +187848,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179776,6 +187871,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179798,6 +187894,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179819,6 +187916,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179840,6 +187938,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179860,6 +187959,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179880,6 +187980,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179902,6 +188003,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179924,6 +188026,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179944,6 +188047,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179964,6 +188068,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179986,6 +188091,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180008,6 +188114,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180029,6 +188136,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180050,6 +188158,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180073,6 +188182,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180096,6 +188206,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180118,6 +188229,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180140,6 +188252,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180163,6 +188276,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180186,6 +188300,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180207,6 +188322,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180228,6 +188344,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180252,6 +188369,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180276,6 +188394,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180298,6 +188417,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180320,6 +188440,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180341,6 +188462,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180362,6 +188484,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180382,6 +188505,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180402,6 +188526,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180424,6 +188549,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180446,6 +188572,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180466,6 +188593,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180486,6 +188614,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180508,6 +188637,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180530,6 +188660,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180551,6 +188682,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180572,6 +188704,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180595,6 +188728,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180618,6 +188752,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180640,6 +188775,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180662,6 +188798,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180685,6 +188822,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180708,6 +188846,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180729,6 +188868,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180750,6 +188890,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180774,6 +188915,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180798,6 +188940,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180820,6 +188963,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180842,6 +188986,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180863,6 +189008,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180884,6 +189030,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180904,6 +189051,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180924,6 +189072,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180946,6 +189095,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180968,6 +189118,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180988,6 +189139,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181008,6 +189160,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181030,6 +189183,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181052,6 +189206,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181073,6 +189228,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181094,6 +189250,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181117,6 +189274,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181140,6 +189298,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181162,6 +189321,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181184,6 +189344,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181207,6 +189368,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181230,6 +189392,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181251,6 +189414,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181272,6 +189436,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181296,6 +189461,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181320,6 +189486,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181342,6 +189509,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181364,6 +189532,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181385,6 +189554,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181406,6 +189576,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181426,6 +189597,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181446,6 +189618,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181468,6 +189641,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181490,6 +189664,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181510,6 +189685,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181530,6 +189706,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181552,6 +189729,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181574,6 +189752,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181595,6 +189774,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181616,6 +189796,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181639,6 +189820,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181662,6 +189844,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181684,6 +189867,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181706,6 +189890,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181729,6 +189914,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181752,6 +189938,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181773,6 +189960,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181794,6 +189982,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181818,6 +190007,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181842,6 +190032,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181864,6 +190055,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181886,6 +190078,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181906,6 +190099,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181926,6 +190120,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181947,6 +190142,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181968,6 +190164,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181990,6 +190187,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182012,6 +190210,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182032,6 +190231,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182052,6 +190252,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182073,6 +190274,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182094,6 +190296,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182116,6 +190319,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182138,6 +190342,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182159,6 +190364,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182180,6 +190386,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182200,6 +190407,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182220,6 +190428,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182242,6 +190451,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182264,6 +190474,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182284,6 +190495,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182304,6 +190516,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182326,6 +190539,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182348,6 +190562,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182369,6 +190584,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182390,6 +190606,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182413,6 +190630,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182436,6 +190654,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182458,6 +190677,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182480,6 +190700,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182503,6 +190724,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182526,6 +190748,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182547,6 +190770,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182568,6 +190792,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182592,6 +190817,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182616,6 +190842,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182638,6 +190865,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182660,6 +190888,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182681,6 +190910,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182702,6 +190932,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182722,6 +190953,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182742,6 +190974,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182764,6 +190997,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182786,6 +191020,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182806,6 +191041,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182826,6 +191062,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182848,6 +191085,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182870,6 +191108,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182891,6 +191130,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182912,6 +191152,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182935,6 +191176,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182958,6 +191200,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182980,6 +191223,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183002,6 +191246,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183025,6 +191270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183048,6 +191294,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183069,6 +191316,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183090,6 +191338,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183114,6 +191363,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183138,6 +191388,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183160,6 +191411,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183182,6 +191434,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183203,6 +191456,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183224,6 +191478,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183244,6 +191499,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183264,6 +191520,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183286,6 +191543,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183308,6 +191566,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183328,6 +191587,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183348,6 +191608,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183370,6 +191631,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183392,6 +191654,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183413,6 +191676,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183434,6 +191698,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183457,6 +191722,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183480,6 +191746,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183502,6 +191769,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183524,6 +191792,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183547,6 +191816,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183570,6 +191840,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183591,6 +191862,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183612,6 +191884,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183636,6 +191909,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183660,6 +191934,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183682,6 +191957,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183704,6 +191980,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183725,6 +192002,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183746,6 +192024,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183766,6 +192045,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183786,6 +192066,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183808,6 +192089,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183830,6 +192112,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183850,6 +192133,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183870,6 +192154,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183892,6 +192177,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183914,6 +192200,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183935,6 +192222,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183956,6 +192244,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183979,6 +192268,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184002,6 +192292,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184024,6 +192315,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184046,6 +192338,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184069,6 +192362,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184092,6 +192386,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184113,6 +192408,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184134,6 +192430,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184158,6 +192455,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184182,6 +192480,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184204,6 +192503,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184226,6 +192526,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184247,6 +192548,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184268,6 +192570,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184288,6 +192591,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184308,6 +192612,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184330,6 +192635,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184352,6 +192658,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184372,6 +192679,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184392,6 +192700,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184414,6 +192723,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184436,6 +192746,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184457,6 +192768,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184478,6 +192790,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184501,6 +192814,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184524,6 +192838,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184546,6 +192861,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184568,6 +192884,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184591,6 +192908,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184614,6 +192932,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184635,6 +192954,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184656,6 +192976,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184680,6 +193001,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184704,6 +193026,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184726,6 +193049,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184748,6 +193072,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184769,6 +193094,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184790,6 +193116,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184810,6 +193137,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184830,6 +193158,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184852,6 +193181,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184874,6 +193204,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184894,6 +193225,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184914,6 +193246,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184936,6 +193269,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184958,6 +193292,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184979,6 +193314,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185000,6 +193336,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185023,6 +193360,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185046,6 +193384,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185068,6 +193407,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185090,6 +193430,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185113,6 +193454,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185136,6 +193478,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185157,6 +193500,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185178,6 +193522,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185202,6 +193547,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185226,6 +193572,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185248,6 +193595,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185270,6 +193618,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185290,6 +193639,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185310,6 +193660,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185331,6 +193682,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185352,6 +193704,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185374,6 +193727,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185396,6 +193750,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185416,6 +193771,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185436,6 +193792,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185457,6 +193814,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185478,6 +193836,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185500,6 +193859,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185522,6 +193882,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185543,6 +193904,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185564,6 +193926,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185584,6 +193947,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185604,6 +193968,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185626,6 +193991,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185648,6 +194014,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185668,6 +194035,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185688,6 +194056,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185710,6 +194079,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185732,6 +194102,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185753,6 +194124,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185774,6 +194146,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185797,6 +194170,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185820,6 +194194,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185842,6 +194217,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185864,6 +194240,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185887,6 +194264,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185910,6 +194288,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185931,6 +194310,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185952,6 +194332,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185976,6 +194357,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186000,6 +194382,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186022,6 +194405,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186044,6 +194428,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186065,6 +194450,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186086,6 +194472,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186106,6 +194493,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186126,6 +194514,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186148,6 +194537,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186170,6 +194560,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186190,6 +194581,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186210,6 +194602,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186232,6 +194625,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186254,6 +194648,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186275,6 +194670,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186296,6 +194692,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186319,6 +194716,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186342,6 +194740,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186364,6 +194763,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186386,6 +194786,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186409,6 +194810,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186432,6 +194834,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186453,6 +194856,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186474,6 +194878,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186498,6 +194903,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186522,6 +194928,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186544,6 +194951,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186566,6 +194974,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186587,6 +194996,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186608,6 +195018,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186628,6 +195039,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186648,6 +195060,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186670,6 +195083,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186692,6 +195106,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186712,6 +195127,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186732,6 +195148,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186754,6 +195171,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186776,6 +195194,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186797,6 +195216,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186818,6 +195238,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186841,6 +195262,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186864,6 +195286,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186886,6 +195309,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186908,6 +195332,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186931,6 +195356,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186954,6 +195380,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186975,6 +195402,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186996,6 +195424,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187020,6 +195449,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187044,6 +195474,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187066,6 +195497,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187088,6 +195520,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187109,6 +195542,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187130,6 +195564,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187150,6 +195585,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187170,6 +195606,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187192,6 +195629,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187214,6 +195652,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187234,6 +195673,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187254,6 +195694,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187276,6 +195717,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187298,6 +195740,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187319,6 +195762,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187340,6 +195784,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187363,6 +195808,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187386,6 +195832,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187408,6 +195855,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187430,6 +195878,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187453,6 +195902,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187476,6 +195926,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187497,6 +195948,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187518,6 +195970,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187542,6 +195995,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187566,6 +196020,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187588,6 +196043,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187610,6 +196066,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187631,6 +196088,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187652,6 +196110,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187672,6 +196131,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187692,6 +196152,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187714,6 +196175,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187736,6 +196198,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187756,6 +196219,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187776,6 +196240,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187798,6 +196263,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187820,6 +196286,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187841,6 +196308,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187862,6 +196330,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187885,6 +196354,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187908,6 +196378,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187930,6 +196401,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187952,6 +196424,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187975,6 +196448,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187998,6 +196472,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188019,6 +196494,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188040,6 +196516,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188064,6 +196541,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188088,6 +196566,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188110,6 +196589,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188132,6 +196612,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188153,6 +196634,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188174,6 +196656,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188194,6 +196677,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188214,6 +196698,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188236,6 +196721,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188258,6 +196744,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188278,6 +196765,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188298,6 +196786,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188320,6 +196809,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188342,6 +196832,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188363,6 +196854,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188384,6 +196876,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188407,6 +196900,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188430,6 +196924,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188452,6 +196947,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188474,6 +196970,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188497,6 +196994,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188520,6 +197018,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188541,6 +197040,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188562,6 +197062,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188586,6 +197087,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188610,6 +197112,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188632,6 +197135,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188654,6 +197158,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188674,6 +197179,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188694,6 +197200,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188715,6 +197222,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188736,6 +197244,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188758,6 +197267,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188780,6 +197290,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188800,6 +197311,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188820,6 +197332,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188841,6 +197354,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188862,6 +197376,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188884,6 +197399,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188906,6 +197422,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188927,6 +197444,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188948,6 +197466,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188968,6 +197487,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188988,6 +197508,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189008,6 +197529,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189028,6 +197550,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189050,6 +197573,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189072,6 +197596,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189093,6 +197618,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189114,6 +197640,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189137,6 +197664,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189160,6 +197688,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189182,6 +197711,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189204,6 +197734,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189225,6 +197756,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189246,6 +197778,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189268,6 +197801,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189290,6 +197824,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189311,6 +197846,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189332,6 +197868,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189352,6 +197889,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189372,6 +197910,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189392,6 +197931,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189412,6 +197952,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189434,6 +197975,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189456,6 +197998,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189477,6 +198020,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189498,6 +198042,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189521,6 +198066,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189544,6 +198090,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189566,6 +198113,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189588,6 +198136,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189609,6 +198158,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189630,6 +198180,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189652,6 +198203,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189674,6 +198226,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189695,6 +198248,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189716,6 +198270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189736,6 +198291,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189756,6 +198312,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189776,6 +198333,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189796,6 +198354,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189818,6 +198377,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189840,6 +198400,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189861,6 +198422,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189882,6 +198444,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189905,6 +198468,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189928,6 +198492,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189950,6 +198515,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189972,6 +198538,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189993,6 +198560,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190014,6 +198582,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190036,6 +198605,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190058,6 +198628,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190079,6 +198650,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190100,6 +198672,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190120,6 +198693,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190140,6 +198714,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190160,6 +198735,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190180,6 +198756,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190202,6 +198779,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190224,6 +198802,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190245,6 +198824,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190266,6 +198846,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190289,6 +198870,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190312,6 +198894,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190334,6 +198917,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190356,6 +198940,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190377,6 +198962,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190398,6 +198984,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190420,6 +199007,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190442,6 +199030,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190463,6 +199052,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190484,6 +199074,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190504,6 +199095,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190524,6 +199116,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190544,6 +199137,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190564,6 +199158,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190586,6 +199181,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190608,6 +199204,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190629,6 +199226,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190650,6 +199248,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190673,6 +199272,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190696,6 +199296,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190718,6 +199319,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190740,6 +199342,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190761,6 +199364,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190782,6 +199386,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190804,6 +199409,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190826,6 +199432,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190847,6 +199454,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190868,6 +199476,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190888,6 +199497,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190908,6 +199518,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190928,6 +199539,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190948,6 +199560,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190970,6 +199583,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190992,6 +199606,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191013,6 +199628,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191034,6 +199650,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191057,6 +199674,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191080,6 +199698,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191102,6 +199721,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191124,6 +199744,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191145,6 +199766,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191166,6 +199788,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191188,6 +199811,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191210,6 +199834,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191230,6 +199855,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191250,6 +199876,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191271,6 +199898,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191292,6 +199920,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191314,6 +199943,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191336,6 +199966,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191356,6 +199987,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191376,6 +200008,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191397,6 +200030,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191418,6 +200052,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191440,6 +200075,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191462,6 +200098,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191483,6 +200120,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191504,6 +200142,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191524,6 +200163,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191544,6 +200184,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191566,6 +200207,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191588,6 +200230,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191608,6 +200251,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191628,6 +200272,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191650,6 +200295,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191672,6 +200318,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191693,6 +200340,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191714,6 +200362,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191737,6 +200386,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191760,6 +200410,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191782,6 +200433,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191804,6 +200456,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191827,6 +200480,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191850,6 +200504,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191871,6 +200526,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191892,6 +200548,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191916,6 +200573,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191940,6 +200598,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191962,6 +200621,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191984,6 +200644,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192005,6 +200666,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192026,6 +200688,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192046,6 +200709,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192066,6 +200730,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192088,6 +200753,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192110,6 +200776,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192130,6 +200797,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192150,6 +200818,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192172,6 +200841,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192194,6 +200864,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192215,6 +200886,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192236,6 +200908,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192259,6 +200932,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192282,6 +200956,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192304,6 +200979,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192326,6 +201002,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192349,6 +201026,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192372,6 +201050,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192393,6 +201072,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192414,6 +201094,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192438,6 +201119,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192462,6 +201144,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192484,6 +201167,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192506,6 +201190,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192527,6 +201212,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192548,6 +201234,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192568,6 +201255,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192588,6 +201276,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192610,6 +201299,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192632,6 +201322,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192652,6 +201343,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192672,6 +201364,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192694,6 +201387,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192716,6 +201410,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192737,6 +201432,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192758,6 +201454,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192781,6 +201478,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192804,6 +201502,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192826,6 +201525,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192848,6 +201548,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192871,6 +201572,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192894,6 +201596,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192915,6 +201618,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192936,6 +201640,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192960,6 +201665,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192984,6 +201690,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193006,6 +201713,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193028,6 +201736,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193049,6 +201758,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193070,6 +201780,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193090,6 +201801,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193110,6 +201822,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193132,6 +201845,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193154,6 +201868,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193174,6 +201889,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193194,6 +201910,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193216,6 +201933,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193238,6 +201956,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193259,6 +201978,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193280,6 +202000,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193303,6 +202024,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193326,6 +202048,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193348,6 +202071,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193370,6 +202094,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193393,6 +202118,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193416,6 +202142,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193437,6 +202164,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193458,6 +202186,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193482,6 +202211,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193506,6 +202236,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193528,6 +202259,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193550,6 +202282,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193571,6 +202304,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193592,6 +202326,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193612,6 +202347,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193632,6 +202368,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193654,6 +202391,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193676,6 +202414,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193696,6 +202435,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193716,6 +202456,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193738,6 +202479,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193760,6 +202502,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193781,6 +202524,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193802,6 +202546,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193825,6 +202570,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193848,6 +202594,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193870,6 +202617,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193892,6 +202640,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193915,6 +202664,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193938,6 +202688,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193959,6 +202710,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193980,6 +202732,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194004,6 +202757,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194028,6 +202782,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194050,6 +202805,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194072,6 +202828,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194093,6 +202850,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194114,6 +202872,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194134,6 +202893,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194154,6 +202914,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194176,6 +202937,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194198,6 +202960,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194218,6 +202981,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194238,6 +203002,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194260,6 +203025,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194282,6 +203048,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194303,6 +203070,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194324,6 +203092,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194347,6 +203116,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194370,6 +203140,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194392,6 +203163,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194414,6 +203186,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194437,6 +203210,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194460,6 +203234,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194481,6 +203256,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194502,6 +203278,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194526,6 +203303,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194550,6 +203328,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194572,6 +203351,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194594,6 +203374,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194614,6 +203395,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194634,6 +203416,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194655,6 +203438,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194676,6 +203460,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194698,6 +203483,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194720,6 +203506,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194740,6 +203527,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194760,6 +203548,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194781,6 +203570,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194802,6 +203592,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194824,6 +203615,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194846,6 +203638,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194867,6 +203660,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194888,6 +203682,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194908,6 +203703,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194928,6 +203724,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194948,6 +203745,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194968,6 +203766,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194990,6 +203789,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195012,6 +203812,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195033,6 +203834,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195054,6 +203856,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195077,6 +203880,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195100,6 +203904,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195122,6 +203927,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195144,6 +203950,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195165,6 +203972,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195186,6 +203994,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195208,6 +204017,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195230,6 +204040,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195251,6 +204062,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195272,6 +204084,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195292,6 +204105,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195312,6 +204126,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195332,6 +204147,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195352,6 +204168,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195374,6 +204191,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195396,6 +204214,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195417,6 +204236,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195438,6 +204258,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195461,6 +204282,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195484,6 +204306,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195506,6 +204329,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195528,6 +204352,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195549,6 +204374,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195570,6 +204396,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195592,6 +204419,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195614,6 +204442,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195635,6 +204464,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195656,6 +204486,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195676,6 +204507,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195696,6 +204528,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195716,6 +204549,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195736,6 +204570,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195758,6 +204593,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195780,6 +204616,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195801,6 +204638,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195822,6 +204660,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195845,6 +204684,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195868,6 +204708,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195890,6 +204731,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195912,6 +204754,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195933,6 +204776,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195954,6 +204798,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195976,6 +204821,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195998,6 +204844,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196019,6 +204866,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196040,6 +204888,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196060,6 +204909,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196080,6 +204930,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196100,6 +204951,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196120,6 +204972,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196142,6 +204995,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196164,6 +205018,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196185,6 +205040,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196206,6 +205062,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196229,6 +205086,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196252,6 +205110,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196274,6 +205133,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196296,6 +205156,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196317,6 +205178,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196338,6 +205200,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196360,6 +205223,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196382,6 +205246,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196403,6 +205268,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196424,6 +205290,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196444,6 +205311,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196464,6 +205332,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196484,6 +205353,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196504,6 +205374,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196526,6 +205397,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196548,6 +205420,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196569,6 +205442,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196590,6 +205464,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196613,6 +205488,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196636,6 +205512,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196658,6 +205535,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196680,6 +205558,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196701,6 +205580,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196722,6 +205602,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196744,6 +205625,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196766,6 +205648,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196787,6 +205670,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196808,6 +205692,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196828,6 +205713,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196848,6 +205734,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196868,6 +205755,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196888,6 +205776,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196910,6 +205799,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196932,6 +205822,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196953,6 +205844,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196974,6 +205866,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196997,6 +205890,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197020,6 +205914,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197042,6 +205937,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197064,6 +205960,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197085,6 +205982,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197106,6 +206004,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197128,6 +206027,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197150,6 +206050,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197170,6 +206071,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197190,6 +206092,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197211,6 +206114,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197232,6 +206136,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197254,6 +206159,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197276,6 +206182,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197296,6 +206203,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197316,6 +206224,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197337,6 +206246,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197358,6 +206268,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197380,6 +206291,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197402,6 +206314,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197423,6 +206336,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197444,6 +206358,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197464,6 +206379,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197484,6 +206400,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197506,6 +206423,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197528,6 +206446,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197548,6 +206467,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197568,6 +206488,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197590,6 +206511,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197612,6 +206534,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197633,6 +206556,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197654,6 +206578,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197677,6 +206602,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197700,6 +206626,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197722,6 +206649,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197744,6 +206672,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197767,6 +206696,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197790,6 +206720,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197811,6 +206742,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197832,6 +206764,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197856,6 +206789,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197880,6 +206814,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197902,6 +206837,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197924,6 +206860,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197945,6 +206882,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197966,6 +206904,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197986,6 +206925,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198006,6 +206946,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198028,6 +206969,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198050,6 +206992,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198070,6 +207013,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198090,6 +207034,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198112,6 +207057,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198134,6 +207080,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198155,6 +207102,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198176,6 +207124,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198199,6 +207148,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198222,6 +207172,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198244,6 +207195,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198266,6 +207218,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198289,6 +207242,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198312,6 +207266,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198333,6 +207288,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198354,6 +207310,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198378,6 +207335,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198402,6 +207360,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198424,6 +207383,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198446,6 +207406,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198467,6 +207428,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198488,6 +207450,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198508,6 +207471,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198528,6 +207492,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198550,6 +207515,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198572,6 +207538,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198592,6 +207559,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198612,6 +207580,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198634,6 +207603,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198656,6 +207626,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198677,6 +207648,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198698,6 +207670,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198721,6 +207694,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198744,6 +207718,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198766,6 +207741,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198788,6 +207764,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198811,6 +207788,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198834,6 +207812,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198855,6 +207834,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198876,6 +207856,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198900,6 +207881,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198924,6 +207906,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198946,6 +207929,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198968,6 +207952,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198989,6 +207974,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199010,6 +207996,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199030,6 +208017,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199050,6 +208038,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199072,6 +208061,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199094,6 +208084,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199114,6 +208105,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199134,6 +208126,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199156,6 +208149,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199178,6 +208172,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199199,6 +208194,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199220,6 +208216,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199243,6 +208240,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199266,6 +208264,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199288,6 +208287,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199310,6 +208310,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199333,6 +208334,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199356,6 +208358,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199377,6 +208380,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199398,6 +208402,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199422,6 +208427,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199446,6 +208452,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199468,6 +208475,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199490,6 +208498,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199511,6 +208520,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199532,6 +208542,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199552,6 +208563,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199572,6 +208584,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199594,6 +208607,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199616,6 +208630,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199636,6 +208651,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199656,6 +208672,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199678,6 +208695,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199700,6 +208718,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199721,6 +208740,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199742,6 +208762,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199765,6 +208786,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199788,6 +208810,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199810,6 +208833,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199832,6 +208856,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199855,6 +208880,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199878,6 +208904,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199899,6 +208926,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199920,6 +208948,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199944,6 +208973,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199968,6 +208998,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199990,6 +209021,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200012,6 +209044,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200033,6 +209066,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200054,6 +209088,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200074,6 +209109,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200094,6 +209130,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200116,6 +209153,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200138,6 +209176,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200158,6 +209197,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200178,6 +209218,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200200,6 +209241,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200222,6 +209264,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200243,6 +209286,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200264,6 +209308,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200287,6 +209332,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200310,6 +209356,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200332,6 +209379,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200354,6 +209402,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200377,6 +209426,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200400,6 +209450,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200421,6 +209472,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200442,6 +209494,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200466,6 +209519,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200490,6 +209544,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200512,6 +209567,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200534,6 +209590,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200554,6 +209611,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200574,6 +209632,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200595,6 +209654,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200616,6 +209676,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200638,6 +209699,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200660,6 +209722,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200680,6 +209743,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200700,6 +209764,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200721,6 +209786,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200742,6 +209808,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200764,6 +209831,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200786,6 +209854,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200807,6 +209876,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200828,6 +209898,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200848,6 +209919,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200868,6 +209940,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200888,6 +209961,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200908,6 +209982,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200930,6 +210005,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200952,6 +210028,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200973,6 +210050,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200994,6 +210072,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201017,6 +210096,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201040,6 +210120,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201062,6 +210143,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201084,6 +210166,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201105,6 +210188,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201126,6 +210210,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201148,6 +210233,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201170,6 +210256,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201191,6 +210278,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201212,6 +210300,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201232,6 +210321,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201252,6 +210342,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201272,6 +210363,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201292,6 +210384,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201314,6 +210407,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201336,6 +210430,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201357,6 +210452,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201378,6 +210474,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201401,6 +210498,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201424,6 +210522,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201446,6 +210545,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201468,6 +210568,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201489,6 +210590,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201510,6 +210612,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201532,6 +210635,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201554,6 +210658,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201575,6 +210680,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201596,6 +210702,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201616,6 +210723,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201636,6 +210744,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201656,6 +210765,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201676,6 +210786,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201698,6 +210809,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201720,6 +210832,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201741,6 +210854,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201762,6 +210876,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201785,6 +210900,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201808,6 +210924,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201830,6 +210947,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201852,6 +210970,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201873,6 +210992,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201894,6 +211014,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201916,6 +211037,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201938,6 +211060,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201959,6 +211082,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201980,6 +211104,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202000,6 +211125,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202020,6 +211146,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202040,6 +211167,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202060,6 +211188,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202082,6 +211211,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202104,6 +211234,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202125,6 +211256,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202146,6 +211278,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202169,6 +211302,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202192,6 +211326,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202214,6 +211349,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202236,6 +211372,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202257,6 +211394,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202278,6 +211416,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202300,6 +211439,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202322,6 +211462,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202343,6 +211484,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202364,6 +211506,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202384,6 +211527,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202404,6 +211548,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202424,6 +211569,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202444,6 +211590,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202466,6 +211613,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202488,6 +211636,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202509,6 +211658,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202530,6 +211680,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202553,6 +211704,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202576,6 +211728,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202598,6 +211751,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202620,6 +211774,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202641,6 +211796,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202662,6 +211818,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202684,6 +211841,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202706,6 +211864,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202727,6 +211886,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202748,6 +211908,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202768,6 +211929,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202788,6 +211950,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202808,6 +211971,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202828,6 +211992,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202850,6 +212015,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202872,6 +212038,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202893,6 +212060,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202914,6 +212082,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202937,6 +212106,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202960,6 +212130,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202982,6 +212153,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203004,6 +212176,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203025,6 +212198,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203046,6 +212220,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203068,6 +212243,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203090,6 +212266,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203110,6 +212287,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203130,6 +212308,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203151,6 +212330,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203172,6 +212352,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203194,6 +212375,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203216,6 +212398,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203236,6 +212419,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203256,6 +212440,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203277,6 +212462,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203298,6 +212484,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203320,6 +212507,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203342,6 +212530,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203363,6 +212552,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203384,6 +212574,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203404,6 +212595,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203424,6 +212616,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203446,6 +212639,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203468,6 +212662,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203488,6 +212683,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203508,6 +212704,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203530,6 +212727,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203552,6 +212750,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203573,6 +212772,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203594,6 +212794,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203617,6 +212818,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203640,6 +212842,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203662,6 +212865,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203684,6 +212888,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203707,6 +212912,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203730,6 +212936,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203751,6 +212958,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203772,6 +212980,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203796,6 +213005,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203820,6 +213030,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203842,6 +213053,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203864,6 +213076,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203885,6 +213098,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203906,6 +213120,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203926,6 +213141,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203946,6 +213162,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203968,6 +213185,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203990,6 +213208,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204010,6 +213229,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204030,6 +213250,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204052,6 +213273,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204074,6 +213296,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204095,6 +213318,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204116,6 +213340,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204139,6 +213364,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204162,6 +213388,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204184,6 +213411,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204206,6 +213434,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204229,6 +213458,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204252,6 +213482,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204273,6 +213504,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204294,6 +213526,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204318,6 +213551,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204342,6 +213576,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204364,6 +213599,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204386,6 +213622,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204407,6 +213644,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204428,6 +213666,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204448,6 +213687,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204468,6 +213708,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204490,6 +213731,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204512,6 +213754,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204532,6 +213775,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204552,6 +213796,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204574,6 +213819,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204596,6 +213842,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204617,6 +213864,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204638,6 +213886,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204661,6 +213910,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204684,6 +213934,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204706,6 +213957,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204728,6 +213980,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204751,6 +214004,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204774,6 +214028,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204795,6 +214050,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204816,6 +214072,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204840,6 +214097,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204864,6 +214122,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204886,6 +214145,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204908,6 +214168,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204929,6 +214190,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204950,6 +214212,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204970,6 +214233,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204990,6 +214254,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205012,6 +214277,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205034,6 +214300,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205054,6 +214321,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205074,6 +214342,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205096,6 +214365,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205118,6 +214388,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205139,6 +214410,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205160,6 +214432,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205183,6 +214456,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205206,6 +214480,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205228,6 +214503,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205250,6 +214526,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205273,6 +214550,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205296,6 +214574,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205317,6 +214596,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205338,6 +214618,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205362,6 +214643,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205386,6 +214668,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205408,6 +214691,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205430,6 +214714,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205451,6 +214736,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205472,6 +214758,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205492,6 +214779,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205512,6 +214800,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205534,6 +214823,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205556,6 +214846,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205576,6 +214867,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205596,6 +214888,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205618,6 +214911,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205640,6 +214934,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205661,6 +214956,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205682,6 +214978,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205705,6 +215002,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205728,6 +215026,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205750,6 +215049,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205772,6 +215072,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205795,6 +215096,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205818,6 +215120,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205839,6 +215142,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205860,6 +215164,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205884,6 +215189,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205908,6 +215214,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205930,6 +215237,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205952,6 +215260,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205973,6 +215282,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205994,6 +215304,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206014,6 +215325,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206034,6 +215346,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206056,6 +215369,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206078,6 +215392,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206098,6 +215413,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206118,6 +215434,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206140,6 +215457,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206162,6 +215480,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206183,6 +215502,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206204,6 +215524,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206227,6 +215548,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206250,6 +215572,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206272,6 +215595,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206294,6 +215618,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206317,6 +215642,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206340,6 +215666,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206361,6 +215688,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206382,6 +215710,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206406,6 +215735,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206430,6 +215760,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206452,6 +215783,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206474,6 +215806,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206494,6 +215827,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206514,6 +215848,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206535,6 +215870,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206556,6 +215892,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206578,6 +215915,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206600,6 +215938,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206620,6 +215959,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206640,6 +215980,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206661,6 +216002,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206682,6 +216024,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206704,6 +216047,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206726,6 +216070,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206747,6 +216092,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206768,6 +216114,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206788,6 +216135,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206808,6 +216156,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206828,6 +216177,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206848,6 +216198,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206870,6 +216221,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206892,6 +216244,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206913,6 +216266,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206934,6 +216288,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206957,6 +216312,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206980,6 +216336,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207002,6 +216359,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207024,6 +216382,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207045,6 +216404,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207066,6 +216426,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207088,6 +216449,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207110,6 +216472,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207131,6 +216494,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207152,6 +216516,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207172,6 +216537,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207192,6 +216558,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207212,6 +216579,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207232,6 +216600,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207254,6 +216623,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207276,6 +216646,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207297,6 +216668,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207318,6 +216690,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207341,6 +216714,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207364,6 +216738,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207386,6 +216761,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207408,6 +216784,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207429,6 +216806,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207450,6 +216828,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207472,6 +216851,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207494,6 +216874,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207515,6 +216896,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207536,6 +216918,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207556,6 +216939,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207576,6 +216960,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207596,6 +216981,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207616,6 +217002,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207638,6 +217025,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207660,6 +217048,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207681,6 +217070,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207702,6 +217092,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207725,6 +217116,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207748,6 +217140,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207770,6 +217163,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207792,6 +217186,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207813,6 +217208,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207834,6 +217230,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207856,6 +217253,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207878,6 +217276,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207899,6 +217298,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207920,6 +217320,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207940,6 +217341,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207960,6 +217362,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207980,6 +217383,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208000,6 +217404,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208022,6 +217427,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208044,6 +217450,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208065,6 +217472,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208086,6 +217494,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208109,6 +217518,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208132,6 +217542,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208154,6 +217565,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208176,6 +217588,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208197,6 +217610,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208218,6 +217632,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208240,6 +217655,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208262,6 +217678,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208283,6 +217700,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208304,6 +217722,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208324,6 +217743,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208344,6 +217764,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208364,6 +217785,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208384,6 +217806,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208406,6 +217829,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208428,6 +217852,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208449,6 +217874,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208470,6 +217896,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208493,6 +217920,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208516,6 +217944,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208538,6 +217967,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208560,6 +217990,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208581,6 +218012,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208602,6 +218034,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208624,6 +218057,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208646,6 +218080,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208667,6 +218102,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208688,6 +218124,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208708,6 +218145,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208728,6 +218166,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208748,6 +218187,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208768,6 +218208,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208790,6 +218231,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208812,6 +218254,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208833,6 +218276,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208854,6 +218298,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208877,6 +218322,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208900,6 +218346,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208922,6 +218369,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208944,6 +218392,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208965,6 +218414,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208986,6 +218436,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209008,6 +218459,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209030,6 +218482,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209050,6 +218503,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209070,6 +218524,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209091,6 +218546,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209112,6 +218568,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209134,6 +218591,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209156,6 +218614,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209176,6 +218635,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209196,6 +218656,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209217,6 +218678,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209238,6 +218700,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209260,6 +218723,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209282,6 +218746,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209303,6 +218768,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209324,6 +218790,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209344,6 +218811,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209366,6 +218834,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209388,6 +218857,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209408,6 +218878,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209430,6 +218901,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209452,6 +218924,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209473,6 +218946,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209496,6 +218970,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209519,6 +218994,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209541,6 +219017,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209564,6 +219041,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209587,6 +219065,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209608,6 +219087,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209632,6 +219112,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209656,6 +219137,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209678,6 +219160,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209699,6 +219182,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209720,6 +219204,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209740,6 +219225,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209762,6 +219248,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209784,6 +219271,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209804,6 +219292,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209826,6 +219315,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209848,6 +219338,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209869,6 +219360,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209892,6 +219384,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209915,6 +219408,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209937,6 +219431,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209960,6 +219455,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209983,6 +219479,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210004,6 +219501,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210028,6 +219526,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210052,6 +219551,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210074,6 +219574,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210095,6 +219596,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210116,6 +219618,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210136,6 +219639,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210158,6 +219662,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210180,6 +219685,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210200,6 +219706,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210222,6 +219729,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210244,6 +219752,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210265,6 +219774,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210288,6 +219798,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210311,6 +219822,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210333,6 +219845,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210356,6 +219869,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210379,6 +219893,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210400,6 +219915,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210424,6 +219940,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210448,6 +219965,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210470,6 +219988,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210491,6 +220010,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210512,6 +220032,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210532,6 +220053,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210554,6 +220076,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210576,6 +220099,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210596,6 +220120,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210618,6 +220143,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210640,6 +220166,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210661,6 +220188,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210684,6 +220212,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210707,6 +220236,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210729,6 +220259,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210752,6 +220283,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210775,6 +220307,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210796,6 +220329,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210820,6 +220354,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210844,6 +220379,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210866,6 +220402,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210887,6 +220424,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210908,6 +220446,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210928,6 +220467,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210950,6 +220490,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210972,6 +220513,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210992,6 +220534,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211014,6 +220557,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211036,6 +220580,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211057,6 +220602,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211080,6 +220626,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211103,6 +220650,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211125,6 +220673,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211148,6 +220697,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211171,6 +220721,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211192,6 +220743,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211216,6 +220768,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211240,6 +220793,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211262,6 +220816,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211283,6 +220838,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211304,6 +220860,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211324,6 +220881,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211346,6 +220904,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211368,6 +220927,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211388,6 +220948,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211410,6 +220971,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211432,6 +220994,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211453,6 +221016,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211476,6 +221040,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211499,6 +221064,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211521,6 +221087,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211544,6 +221111,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211567,6 +221135,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211588,6 +221157,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211612,6 +221182,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211636,6 +221207,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211658,6 +221230,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211678,6 +221251,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211699,6 +221273,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211721,6 +221296,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211741,6 +221317,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211762,6 +221339,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211784,6 +221362,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211805,6 +221384,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211826,6 +221406,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211846,6 +221427,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211868,6 +221450,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211890,6 +221473,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211910,6 +221494,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211932,6 +221517,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211954,6 +221540,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211975,6 +221562,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211998,6 +221586,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212021,6 +221610,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212043,6 +221633,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212066,6 +221657,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212089,6 +221681,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212110,6 +221703,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212134,6 +221728,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212158,6 +221753,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212180,6 +221776,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212201,6 +221798,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212222,6 +221820,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212242,6 +221841,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212264,6 +221864,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212286,6 +221887,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212306,6 +221908,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212328,6 +221931,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212350,6 +221954,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212371,6 +221976,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212394,6 +222000,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212417,6 +222024,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212439,6 +222047,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212462,6 +222071,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212485,6 +222095,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212506,6 +222117,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212530,6 +222142,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212554,6 +222167,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212576,6 +222190,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212597,6 +222212,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212618,6 +222234,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212638,6 +222255,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212660,6 +222278,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212682,6 +222301,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212702,6 +222322,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212724,6 +222345,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212746,6 +222368,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212767,6 +222390,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212790,6 +222414,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212813,6 +222438,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212835,6 +222461,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212858,6 +222485,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212881,6 +222509,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212902,6 +222531,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212926,6 +222556,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212950,6 +222581,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212972,6 +222604,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212993,6 +222626,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213014,6 +222648,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213034,6 +222669,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213056,6 +222692,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213078,6 +222715,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213098,6 +222736,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213120,6 +222759,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213142,6 +222782,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213163,6 +222804,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213186,6 +222828,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213209,6 +222852,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213231,6 +222875,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213254,6 +222899,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213277,6 +222923,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213298,6 +222945,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213322,6 +222970,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213346,6 +222995,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213368,6 +223018,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213389,6 +223040,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213410,6 +223062,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213430,6 +223083,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213452,6 +223106,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213474,6 +223129,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213494,6 +223150,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213516,6 +223173,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213538,6 +223196,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213559,6 +223218,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213582,6 +223242,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213605,6 +223266,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213627,6 +223289,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213650,6 +223313,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213673,6 +223337,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213694,6 +223359,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213718,6 +223384,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213742,6 +223409,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213764,6 +223432,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213785,6 +223454,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213806,6 +223476,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213826,6 +223497,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213848,6 +223520,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213870,6 +223543,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213890,6 +223564,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213912,6 +223587,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213934,6 +223610,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213955,6 +223632,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213978,6 +223656,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214001,6 +223680,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214023,6 +223703,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214046,6 +223727,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214069,6 +223751,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214090,6 +223773,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214114,6 +223798,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214138,6 +223823,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214160,6 +223846,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214180,6 +223867,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214201,6 +223889,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214223,6 +223912,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214243,6 +223933,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214264,6 +223955,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214286,6 +223978,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214307,6 +224000,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214328,6 +224022,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214348,6 +224043,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214368,6 +224064,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214390,6 +224087,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214412,6 +224110,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214433,6 +224132,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214456,6 +224156,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214479,6 +224180,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214501,6 +224203,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214522,6 +224225,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214544,6 +224248,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214565,6 +224270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214586,6 +224292,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214606,6 +224313,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214626,6 +224334,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214648,6 +224357,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214670,6 +224380,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214691,6 +224402,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214714,6 +224426,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214737,6 +224450,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214759,6 +224473,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214780,6 +224495,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214802,6 +224518,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214823,6 +224540,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214844,6 +224562,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214864,6 +224583,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214884,6 +224604,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214906,6 +224627,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214928,6 +224650,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214949,6 +224672,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214972,6 +224696,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214995,6 +224720,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215017,6 +224743,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215038,6 +224765,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215060,6 +224788,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215081,6 +224810,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215102,6 +224832,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215122,6 +224853,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215142,6 +224874,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215164,6 +224897,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215186,6 +224920,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215207,6 +224942,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215230,6 +224966,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215253,6 +224990,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215275,6 +225013,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215296,6 +225035,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215318,6 +225058,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215339,6 +225080,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215360,6 +225102,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215380,6 +225123,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215400,6 +225144,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215422,6 +225167,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215444,6 +225190,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215465,6 +225212,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215488,6 +225236,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215511,6 +225260,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215533,6 +225283,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215554,6 +225305,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215576,6 +225328,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215597,6 +225350,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215618,6 +225372,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215638,6 +225393,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215658,6 +225414,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215680,6 +225437,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215702,6 +225460,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215723,6 +225482,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215746,6 +225506,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215769,6 +225530,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215791,6 +225553,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215812,6 +225575,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215834,6 +225598,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215854,6 +225619,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215875,6 +225641,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215897,6 +225664,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215917,6 +225685,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215938,6 +225707,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215960,6 +225730,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215981,6 +225752,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216002,6 +225774,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216022,6 +225795,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216042,6 +225816,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216064,6 +225839,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216086,6 +225862,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216107,6 +225884,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216130,6 +225908,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216153,6 +225932,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216175,6 +225955,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216196,6 +225977,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216218,6 +226000,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216239,6 +226022,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216260,6 +226044,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216280,6 +226065,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216300,6 +226086,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216322,6 +226109,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216344,6 +226132,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216365,6 +226154,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216388,6 +226178,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216411,6 +226202,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216433,6 +226225,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216454,6 +226247,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216476,6 +226270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216497,6 +226292,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216518,6 +226314,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216538,6 +226335,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216558,6 +226356,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216580,6 +226379,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216602,6 +226402,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216623,6 +226424,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216646,6 +226448,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216669,6 +226472,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216691,6 +226495,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216712,6 +226517,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216734,6 +226540,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216755,6 +226562,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216776,6 +226584,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216796,6 +226605,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216816,6 +226626,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216838,6 +226649,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216860,6 +226672,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216881,6 +226694,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216904,6 +226718,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216927,6 +226742,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216949,6 +226765,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216970,6 +226787,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216992,6 +226810,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217013,6 +226832,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217034,6 +226854,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217054,6 +226875,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217074,6 +226896,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217096,6 +226919,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217118,6 +226942,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217139,6 +226964,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217162,6 +226988,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217185,6 +227012,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217207,6 +227035,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217228,6 +227057,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217250,6 +227080,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217271,6 +227102,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217292,6 +227124,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217312,6 +227145,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217332,6 +227166,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217354,6 +227189,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217376,6 +227212,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217397,6 +227234,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217420,6 +227258,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217443,6 +227282,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217465,6 +227305,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217486,6 +227327,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217508,6 +227350,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217528,6 +227371,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217549,6 +227393,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217571,6 +227416,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217591,6 +227437,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217612,6 +227459,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217634,6 +227482,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217655,6 +227504,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217676,6 +227526,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217696,6 +227547,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217716,6 +227568,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217738,6 +227591,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217760,6 +227614,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217780,6 +227635,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217800,6 +227656,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217822,6 +227679,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217844,6 +227702,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217865,6 +227724,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217886,6 +227746,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217909,6 +227770,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217932,6 +227794,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217954,6 +227817,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217976,6 +227840,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217999,6 +227864,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218022,6 +227888,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218043,6 +227910,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218064,6 +227932,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218088,6 +227957,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218112,6 +227982,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218134,6 +228005,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218156,6 +228028,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218177,6 +228050,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218198,6 +228072,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218218,6 +228093,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218238,6 +228114,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218260,6 +228137,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218282,6 +228160,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218302,6 +228181,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218322,6 +228202,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218344,6 +228225,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218366,6 +228248,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218387,6 +228270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218408,6 +228292,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218431,6 +228316,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218454,6 +228340,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218476,6 +228363,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218498,6 +228386,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218521,6 +228410,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218544,6 +228434,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218565,6 +228456,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218586,6 +228478,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218610,6 +228503,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218634,6 +228528,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218656,6 +228551,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218678,6 +228574,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218699,6 +228596,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218720,6 +228618,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218740,6 +228639,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218760,6 +228660,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218782,6 +228683,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218804,6 +228706,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218824,6 +228727,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218844,6 +228748,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218866,6 +228771,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218888,6 +228794,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218909,6 +228816,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218930,6 +228838,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218953,6 +228862,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218976,6 +228886,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218998,6 +228909,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219020,6 +228932,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219043,6 +228956,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219066,6 +228980,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219087,6 +229002,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219108,6 +229024,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219132,6 +229049,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219156,6 +229074,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219178,6 +229097,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219200,6 +229120,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219220,6 +229141,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219240,6 +229162,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219261,6 +229184,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219282,6 +229206,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219304,6 +229229,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219326,6 +229252,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219348,6 +229275,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219370,6 +229298,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219391,6 +229320,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219412,6 +229342,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219433,6 +229364,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219454,6 +229386,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219477,6 +229410,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219500,6 +229434,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219522,6 +229457,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219544,6 +229480,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219568,6 +229505,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219592,6 +229530,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219615,6 +229554,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219638,6 +229578,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219660,6 +229601,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219682,6 +229624,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219705,6 +229648,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219728,6 +229672,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219750,6 +229695,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219772,6 +229718,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219793,6 +229740,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219814,6 +229762,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219835,6 +229784,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219856,6 +229806,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219879,6 +229830,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219902,6 +229854,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219924,6 +229877,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219946,6 +229900,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219970,6 +229925,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219994,6 +229950,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220017,6 +229974,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220040,6 +229998,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220062,6 +230021,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220084,6 +230044,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220107,6 +230068,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220130,6 +230092,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220152,6 +230115,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220174,6 +230138,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220195,6 +230160,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220216,6 +230182,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220237,6 +230204,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220258,6 +230226,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220281,6 +230250,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220304,6 +230274,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220326,6 +230297,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220348,6 +230320,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220372,6 +230345,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220396,6 +230370,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220419,6 +230394,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220442,6 +230418,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220464,6 +230441,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220486,6 +230464,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220509,6 +230488,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220532,6 +230512,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220554,6 +230535,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220576,6 +230558,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220597,6 +230580,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220618,6 +230602,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220639,6 +230624,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220660,6 +230646,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220683,6 +230670,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220706,6 +230694,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220728,6 +230717,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220750,6 +230740,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220774,6 +230765,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220798,6 +230790,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220821,6 +230814,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220844,6 +230838,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220866,6 +230861,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220888,6 +230884,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220911,6 +230908,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220934,6 +230932,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220956,6 +230955,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220978,6 +230978,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220999,6 +231000,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221020,6 +231022,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221041,6 +231044,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221062,6 +231066,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221085,6 +231090,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221108,6 +231114,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221130,6 +231137,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221152,6 +231160,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221176,6 +231185,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221200,6 +231210,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221223,6 +231234,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221246,6 +231258,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221268,6 +231281,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221290,6 +231304,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221313,6 +231328,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221336,6 +231352,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221358,6 +231375,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221380,6 +231398,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221401,6 +231420,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221422,6 +231442,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221443,6 +231464,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221464,6 +231486,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221487,6 +231510,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221510,6 +231534,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221532,6 +231557,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221554,6 +231580,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221578,6 +231605,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221602,6 +231630,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221625,6 +231654,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221648,6 +231678,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221670,6 +231701,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221692,6 +231724,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221715,6 +231748,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221738,6 +231772,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221759,6 +231794,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221780,6 +231816,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221802,6 +231839,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221824,6 +231862,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221847,6 +231886,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221870,6 +231910,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221891,6 +231932,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221912,6 +231954,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221934,6 +231977,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221956,6 +232000,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221979,6 +232024,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222002,6 +232048,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222023,6 +232070,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222044,6 +232092,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222064,6 +232113,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222084,6 +232134,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222106,6 +232157,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222128,6 +232180,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222148,6 +232201,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222168,6 +232222,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222190,6 +232245,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222212,6 +232268,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222233,6 +232290,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222254,6 +232312,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222277,6 +232336,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222300,6 +232360,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222322,6 +232383,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222344,6 +232406,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222367,6 +232430,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222390,6 +232454,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222411,6 +232476,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222432,6 +232498,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222456,6 +232523,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222480,6 +232548,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222502,6 +232571,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222524,6 +232594,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222545,6 +232616,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222566,6 +232638,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222586,6 +232659,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222606,6 +232680,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222628,6 +232703,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222650,6 +232726,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222670,6 +232747,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222690,6 +232768,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222712,6 +232791,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222734,6 +232814,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222755,6 +232836,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222776,6 +232858,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222799,6 +232882,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222822,6 +232906,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222844,6 +232929,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222866,6 +232952,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222889,6 +232976,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222912,6 +233000,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222933,6 +233022,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222954,6 +233044,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222978,6 +233069,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223002,6 +233094,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223024,6 +233117,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223046,6 +233140,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223067,6 +233162,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223088,6 +233184,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223108,6 +233205,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223128,6 +233226,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223150,6 +233249,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223172,6 +233272,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223192,6 +233293,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223212,6 +233314,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223234,6 +233337,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223256,6 +233360,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223277,6 +233382,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223298,6 +233404,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223321,6 +233428,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223344,6 +233452,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223366,6 +233475,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223388,6 +233498,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223411,6 +233522,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223434,6 +233546,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223455,6 +233568,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223476,6 +233590,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223500,6 +233615,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223524,6 +233640,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223546,6 +233663,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223568,6 +233686,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223588,6 +233707,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223608,6 +233728,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223629,6 +233750,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223650,6 +233772,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223672,6 +233795,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223694,6 +233818,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223716,6 +233841,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223738,6 +233864,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223759,6 +233886,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223780,6 +233908,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223801,6 +233930,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223822,6 +233952,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223845,6 +233976,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223868,6 +234000,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223890,6 +234023,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223912,6 +234046,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223936,6 +234071,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223960,6 +234096,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223983,6 +234120,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224006,6 +234144,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224028,6 +234167,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224050,6 +234190,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224073,6 +234214,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224096,6 +234238,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224118,6 +234261,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224140,6 +234284,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224161,6 +234306,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224182,6 +234328,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224203,6 +234350,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224224,6 +234372,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224247,6 +234396,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224270,6 +234420,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224292,6 +234443,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224314,6 +234466,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224338,6 +234491,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224362,6 +234516,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224385,6 +234540,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224408,6 +234564,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224430,6 +234587,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224452,6 +234610,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224475,6 +234634,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224498,6 +234658,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224520,6 +234681,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224542,6 +234704,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224563,6 +234726,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224584,6 +234748,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224605,6 +234770,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224626,6 +234792,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224649,6 +234816,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224672,6 +234840,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224694,6 +234863,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224716,6 +234886,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224740,6 +234911,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224764,6 +234936,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224787,6 +234960,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224810,6 +234984,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224832,6 +235007,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224854,6 +235030,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224877,6 +235054,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224900,6 +235078,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224922,6 +235101,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224944,6 +235124,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224965,6 +235146,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224986,6 +235168,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225007,6 +235190,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225028,6 +235212,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225051,6 +235236,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225074,6 +235260,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225096,6 +235283,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225118,6 +235306,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225142,6 +235331,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225166,6 +235356,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225189,6 +235380,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225212,6 +235404,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225234,6 +235427,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225256,6 +235450,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225279,6 +235474,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225302,6 +235498,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225324,6 +235521,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225346,6 +235544,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225367,6 +235566,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225388,6 +235588,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225409,6 +235610,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225430,6 +235632,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225453,6 +235656,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225476,6 +235680,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225498,6 +235703,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225520,6 +235726,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225544,6 +235751,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225568,6 +235776,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225591,6 +235800,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225614,6 +235824,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225636,6 +235847,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225658,6 +235870,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225681,6 +235894,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225704,6 +235918,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225726,6 +235941,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225748,6 +235964,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225769,6 +235986,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225790,6 +236008,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225811,6 +236030,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225832,6 +236052,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225855,6 +236076,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225878,6 +236100,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225900,6 +236123,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225922,6 +236146,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225946,6 +236171,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225970,6 +236196,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225993,6 +236220,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226016,6 +236244,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226038,6 +236267,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226060,6 +236290,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226083,6 +236314,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226106,6 +236338,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226127,6 +236360,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226148,6 +236382,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226170,6 +236405,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226192,6 +236428,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226215,6 +236452,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226238,6 +236476,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226259,6 +236498,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226280,6 +236520,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226302,6 +236543,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226324,6 +236566,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226347,6 +236590,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226370,6 +236614,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226391,6 +236636,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226412,6 +236658,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226432,6 +236679,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226452,6 +236700,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226474,6 +236723,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226496,6 +236746,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226516,6 +236767,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226536,6 +236788,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226558,6 +236811,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226580,6 +236834,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226601,6 +236856,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226622,6 +236878,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226645,6 +236902,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226668,6 +236926,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226690,6 +236949,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226712,6 +236972,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226735,6 +236996,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226758,6 +237020,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226779,6 +237042,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226800,6 +237064,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226824,6 +237089,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226848,6 +237114,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226870,6 +237137,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226892,6 +237160,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226913,6 +237182,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226934,6 +237204,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226954,6 +237225,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226974,6 +237246,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226996,6 +237269,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227018,6 +237292,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227038,6 +237313,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227058,6 +237334,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227080,6 +237357,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227102,6 +237380,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227123,6 +237402,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227144,6 +237424,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227167,6 +237448,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227190,6 +237472,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227212,6 +237495,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227234,6 +237518,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227257,6 +237542,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227280,6 +237566,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227301,6 +237588,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227322,6 +237610,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227346,6 +237635,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227370,6 +237660,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227392,6 +237683,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227414,6 +237706,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227435,6 +237728,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227456,6 +237750,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227476,6 +237771,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227496,6 +237792,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227518,6 +237815,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227540,6 +237838,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227560,6 +237859,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227580,6 +237880,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227602,6 +237903,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227624,6 +237926,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227645,6 +237948,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227666,6 +237970,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227689,6 +237994,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227712,6 +238018,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227734,6 +238041,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227756,6 +238064,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227779,6 +238088,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227802,6 +238112,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227823,6 +238134,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227844,6 +238156,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227868,6 +238181,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227892,6 +238206,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227914,6 +238229,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227936,6 +238252,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227956,6 +238273,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227976,6 +238294,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227997,6 +238316,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228018,6 +238338,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228040,6 +238361,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228062,6 +238384,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228084,6 +238407,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228106,6 +238430,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228127,6 +238452,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228148,6 +238474,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228169,6 +238496,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228190,6 +238518,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228213,6 +238542,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228236,6 +238566,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228258,6 +238589,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228280,6 +238612,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228304,6 +238637,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228328,6 +238662,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228351,6 +238686,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228374,6 +238710,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228396,6 +238733,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228418,6 +238756,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228441,6 +238780,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228464,6 +238804,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228486,6 +238827,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228508,6 +238850,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228529,6 +238872,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228550,6 +238894,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228571,6 +238916,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228592,6 +238938,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228615,6 +238962,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228638,6 +238986,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228660,6 +239009,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228682,6 +239032,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228706,6 +239057,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228730,6 +239082,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228753,6 +239106,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228776,6 +239130,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228798,6 +239153,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228820,6 +239176,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228843,6 +239200,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228866,6 +239224,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228888,6 +239247,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228910,6 +239270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228931,6 +239292,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228952,6 +239314,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228973,6 +239336,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228994,6 +239358,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229017,6 +239382,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229040,6 +239406,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229062,6 +239429,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229084,6 +239452,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229108,6 +239477,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229132,6 +239502,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229155,6 +239526,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229178,6 +239550,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229200,6 +239573,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229222,6 +239596,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229245,6 +239620,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229268,6 +239644,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229290,6 +239667,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229312,6 +239690,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229333,6 +239712,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229354,6 +239734,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229375,6 +239756,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229396,6 +239778,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229419,6 +239802,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229442,6 +239826,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229464,6 +239849,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229486,6 +239872,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229510,6 +239897,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229534,6 +239922,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229557,6 +239946,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229580,6 +239970,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229602,6 +239993,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229624,6 +240016,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229647,6 +240040,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229670,6 +240064,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229692,6 +240087,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229714,6 +240110,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229735,6 +240132,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229756,6 +240154,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229777,6 +240176,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229798,6 +240198,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229821,6 +240222,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229844,6 +240246,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229866,6 +240269,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229888,6 +240292,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229912,6 +240317,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229936,6 +240342,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229959,6 +240366,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229982,6 +240390,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230004,6 +240413,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230026,6 +240436,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230049,6 +240460,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230072,6 +240484,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230094,6 +240507,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230116,6 +240530,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230137,6 +240552,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230158,6 +240574,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230179,6 +240596,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230200,6 +240618,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230223,6 +240642,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230246,6 +240666,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230268,6 +240689,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230290,6 +240712,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230314,6 +240737,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230338,6 +240762,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230361,6 +240786,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230384,6 +240810,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230406,6 +240833,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230428,6 +240856,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230451,6 +240880,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230474,6 +240904,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230495,6 +240926,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230516,6 +240948,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230538,6 +240971,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230560,6 +240994,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230583,6 +241018,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230606,6 +241042,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230627,6 +241064,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230648,6 +241086,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230670,6 +241109,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230692,6 +241132,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230715,6 +241156,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232016,6 +242458,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232038,6 +242481,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232060,6 +242504,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232081,6 +242526,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232102,6 +242548,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232125,6 +242572,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232148,6 +242596,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232169,6 +242618,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232190,6 +242640,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232213,6 +242664,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232236,6 +242688,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232258,6 +242711,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232280,6 +242734,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232304,6 +242759,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232328,6 +242784,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232350,6 +242807,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232372,6 +242830,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232394,6 +242853,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232416,6 +242876,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232437,6 +242898,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232458,6 +242920,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232481,6 +242944,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232504,6 +242968,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232525,6 +242990,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232546,6 +243012,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232569,6 +243036,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232592,6 +243060,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232614,6 +243083,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232636,6 +243106,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232660,6 +243131,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232684,6 +243156,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232706,6 +243179,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232728,6 +243202,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232750,6 +243225,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232772,6 +243248,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232793,6 +243270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232814,6 +243292,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232837,6 +243316,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232860,6 +243340,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232881,6 +243362,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232902,6 +243384,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232925,6 +243408,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232948,6 +243432,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232970,6 +243455,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232992,6 +243478,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233016,6 +243503,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233040,6 +243528,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233062,6 +243551,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233084,6 +243574,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233106,6 +243597,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233128,6 +243620,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233149,6 +243642,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233170,6 +243664,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233193,6 +243688,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233216,6 +243712,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233237,6 +243734,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233258,6 +243756,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233281,6 +243780,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233304,6 +243804,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233326,6 +243827,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233348,6 +243850,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233372,6 +243875,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233396,6 +243900,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233418,6 +243923,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233440,6 +243946,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233462,6 +243969,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233484,6 +243992,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233505,6 +244014,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233526,6 +244036,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233549,6 +244060,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233572,6 +244084,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233593,6 +244106,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233614,6 +244128,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233637,6 +244152,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233660,6 +244176,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233682,6 +244199,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233704,6 +244222,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233728,6 +244247,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233752,6 +244272,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233774,6 +244295,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233796,6 +244318,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233818,6 +244341,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233840,6 +244364,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233861,6 +244386,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233882,6 +244408,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233905,6 +244432,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233928,6 +244456,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233949,6 +244478,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233970,6 +244500,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233993,6 +244524,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234016,6 +244548,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234038,6 +244571,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234060,6 +244594,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234084,6 +244619,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234108,6 +244644,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234130,6 +244667,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234152,6 +244690,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234173,6 +244712,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234194,6 +244734,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234216,6 +244757,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234238,6 +244780,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234259,6 +244802,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234280,6 +244824,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234302,6 +244847,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234324,6 +244870,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234346,6 +244893,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234368,6 +244916,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234389,6 +244938,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234410,6 +244960,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234431,6 +244982,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234452,6 +245004,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234475,6 +245028,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234498,6 +245052,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234520,6 +245075,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234542,6 +245098,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234564,6 +245121,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234586,6 +245144,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234608,6 +245167,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234630,6 +245190,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234651,6 +245212,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234672,6 +245234,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234693,6 +245256,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234714,6 +245278,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234737,6 +245302,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234760,6 +245326,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234782,6 +245349,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234804,6 +245372,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234826,6 +245395,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234848,6 +245418,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234870,6 +245441,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234892,6 +245464,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234913,6 +245486,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234934,6 +245508,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234955,6 +245530,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234976,6 +245552,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234999,6 +245576,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235022,6 +245600,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235044,6 +245623,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235066,6 +245646,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235088,6 +245669,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235110,6 +245692,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235132,6 +245715,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235154,6 +245738,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235175,6 +245760,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235196,6 +245782,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235217,6 +245804,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235238,6 +245826,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235261,6 +245850,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235284,6 +245874,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235306,6 +245897,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235328,6 +245920,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235350,6 +245943,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235372,6 +245966,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235394,6 +245989,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235416,6 +246012,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235437,6 +246034,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235458,6 +246056,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235479,6 +246078,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235500,6 +246100,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235523,6 +246124,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235546,6 +246148,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235568,6 +246171,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235590,6 +246194,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235612,6 +246217,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235634,6 +246240,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235656,6 +246263,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235678,6 +246286,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235699,6 +246308,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235720,6 +246330,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235741,6 +246352,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235762,6 +246374,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235785,6 +246398,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235808,6 +246422,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235830,6 +246445,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235852,6 +246468,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235874,6 +246491,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235896,6 +246514,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235917,6 +246536,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235938,6 +246558,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235960,6 +246581,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235982,6 +246604,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -236003,6 +246626,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -236024,6 +246648,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -236046,6 +246671,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes diff --git a/bddisasm_test/x86/avx512/avx512fp16_64.result b/bddisasm_test/x86/avx512/avx512fp16_64.result index 73efd40..ed8f53d 100644 --- a/bddisasm_test/x86/avx512/avx512fp16_64.result +++ b/bddisasm_test/x86/avx512/avx512fp16_64.result @@ -2140,6 +2140,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2161,6 +2162,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2182,6 +2184,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2202,6 +2205,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2222,6 +2226,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2242,6 +2247,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2262,6 +2268,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2284,6 +2291,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2306,6 +2314,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2327,6 +2336,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2348,6 +2358,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2371,6 +2382,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2394,6 +2406,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2416,6 +2429,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2438,6 +2452,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2459,6 +2474,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2480,6 +2496,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2502,6 +2519,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2524,6 +2542,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2545,6 +2564,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2566,6 +2586,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2586,6 +2607,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2606,6 +2628,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2626,6 +2649,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2646,6 +2670,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2668,6 +2693,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2690,6 +2716,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2711,6 +2738,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2732,6 +2760,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2755,6 +2784,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2778,6 +2808,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2800,6 +2831,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2822,6 +2854,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2843,6 +2876,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2864,6 +2898,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2886,6 +2921,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2908,6 +2944,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2929,6 +2966,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2950,6 +2988,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2970,6 +3009,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -2990,6 +3030,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3010,6 +3051,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3030,6 +3072,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3052,6 +3095,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3074,6 +3118,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3095,6 +3140,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3116,6 +3162,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3139,6 +3186,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3162,6 +3210,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3184,6 +3233,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3206,6 +3256,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3227,6 +3278,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3248,6 +3300,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3270,6 +3323,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3292,6 +3346,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3313,6 +3368,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3334,6 +3390,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3354,6 +3411,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3374,6 +3432,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3394,6 +3453,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3414,6 +3474,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3436,6 +3497,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3458,6 +3520,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3479,6 +3542,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3500,6 +3564,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3523,6 +3588,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3546,6 +3612,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3568,6 +3635,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3590,6 +3658,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3611,6 +3680,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3632,6 +3702,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3654,6 +3725,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3676,6 +3748,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3697,6 +3770,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3718,6 +3792,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3738,6 +3813,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3758,6 +3834,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3778,6 +3855,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3798,6 +3876,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3820,6 +3899,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3842,6 +3922,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3863,6 +3944,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3884,6 +3966,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3907,6 +3990,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3930,6 +4014,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3952,6 +4037,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3974,6 +4060,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -3995,6 +4082,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4016,6 +4104,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4038,6 +4127,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4060,6 +4150,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4081,6 +4172,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4102,6 +4194,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4122,6 +4215,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4142,6 +4236,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4162,6 +4257,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4182,6 +4278,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4204,6 +4301,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4226,6 +4324,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4247,6 +4346,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4268,6 +4368,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4291,6 +4392,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4314,6 +4416,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4336,6 +4439,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4358,6 +4462,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4379,6 +4484,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4400,6 +4506,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4422,6 +4529,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4444,6 +4552,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4464,6 +4573,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4484,6 +4594,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4505,6 +4616,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4526,6 +4638,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4548,6 +4661,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4570,6 +4684,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4590,6 +4705,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4610,6 +4726,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4631,6 +4748,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4652,6 +4770,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4674,6 +4793,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4696,6 +4816,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4716,6 +4837,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4736,6 +4858,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4755,6 +4878,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4774,6 +4898,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4795,6 +4920,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4816,6 +4942,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4835,6 +4962,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4854,6 +4982,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4875,6 +5004,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4896,6 +5026,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4916,6 +5047,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4936,6 +5068,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4958,6 +5091,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -4980,6 +5114,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5001,6 +5136,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5022,6 +5158,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5044,6 +5181,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5066,6 +5204,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5086,6 +5225,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5106,6 +5246,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5129,6 +5270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5152,6 +5294,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5173,6 +5316,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5194,6 +5338,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5214,6 +5359,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5234,6 +5380,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5253,6 +5400,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5272,6 +5420,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5293,6 +5442,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5314,6 +5464,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5333,6 +5484,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5352,6 +5504,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5373,6 +5526,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5394,6 +5548,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5414,6 +5569,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5434,6 +5590,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5456,6 +5613,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5478,6 +5636,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5499,6 +5658,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5520,6 +5680,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5542,6 +5703,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5564,6 +5726,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5584,6 +5747,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5604,6 +5768,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5627,6 +5792,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5650,6 +5816,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5671,6 +5838,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5692,6 +5860,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5712,6 +5881,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5732,6 +5902,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5751,6 +5922,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5770,6 +5942,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5791,6 +5964,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5812,6 +5986,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5831,6 +6006,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5850,6 +6026,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5871,6 +6048,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5892,6 +6070,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5912,6 +6091,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5932,6 +6112,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5954,6 +6135,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5976,6 +6158,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -5997,6 +6180,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6018,6 +6202,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6040,6 +6225,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6062,6 +6248,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6082,6 +6269,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6102,6 +6290,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6125,6 +6314,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6148,6 +6338,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6169,6 +6360,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6190,6 +6382,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6209,6 +6402,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6228,6 +6422,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6248,6 +6443,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6268,6 +6464,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6289,6 +6486,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6310,6 +6508,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6330,6 +6529,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6350,6 +6550,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6369,6 +6570,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6388,6 +6590,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6408,6 +6611,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6428,6 +6632,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6447,6 +6652,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6466,6 +6672,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6486,6 +6693,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6506,6 +6714,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6525,6 +6734,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6544,6 +6754,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6564,6 +6775,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6584,6 +6796,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6603,6 +6816,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6622,6 +6836,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6642,6 +6857,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6662,6 +6878,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6681,6 +6898,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6700,6 +6918,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6720,6 +6939,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6740,6 +6960,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6759,6 +6980,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6778,6 +7000,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6798,6 +7021,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6818,6 +7042,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6837,6 +7062,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6856,6 +7082,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6876,6 +7103,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6896,6 +7124,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6915,6 +7144,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6934,6 +7164,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6954,6 +7185,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6974,6 +7206,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -6993,6 +7226,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7012,6 +7246,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7032,6 +7267,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7052,6 +7288,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7071,6 +7308,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7090,6 +7328,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7110,6 +7349,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7130,6 +7370,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7149,6 +7390,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7168,6 +7410,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7188,6 +7431,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7208,6 +7452,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7227,6 +7472,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7246,6 +7492,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7265,6 +7512,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7284,6 +7532,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7302,6 +7551,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7320,6 +7570,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7338,6 +7589,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7356,6 +7608,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7375,6 +7628,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7394,6 +7648,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7412,6 +7667,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7430,6 +7686,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7448,6 +7705,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7466,6 +7724,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7485,6 +7744,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7504,6 +7764,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7522,6 +7783,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7540,6 +7802,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7558,6 +7821,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7576,6 +7840,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7595,6 +7860,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7614,6 +7880,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7632,6 +7899,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7650,6 +7918,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7668,6 +7937,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7686,6 +7956,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7705,6 +7976,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7724,6 +7996,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7742,6 +8015,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7760,6 +8034,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7778,6 +8053,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7796,6 +8072,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7815,6 +8092,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7834,6 +8112,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7852,6 +8131,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7870,6 +8150,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7888,6 +8169,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7906,6 +8188,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7924,6 +8207,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7942,6 +8226,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7960,6 +8245,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7978,6 +8264,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -7997,6 +8284,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8016,6 +8304,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8034,6 +8323,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8052,6 +8342,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8070,6 +8361,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8088,6 +8380,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8107,6 +8400,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8126,6 +8420,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8144,6 +8439,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8162,6 +8458,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8180,6 +8477,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8198,6 +8496,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8217,6 +8516,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8236,6 +8536,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8254,6 +8555,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8272,6 +8574,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8290,6 +8593,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8308,6 +8612,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8327,6 +8632,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8346,6 +8652,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8364,6 +8671,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8382,6 +8690,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8400,6 +8709,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8418,6 +8728,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8437,6 +8748,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8456,6 +8768,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8474,6 +8787,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8492,6 +8806,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8510,6 +8825,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8528,6 +8844,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8547,6 +8864,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8566,6 +8884,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8584,6 +8903,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8602,6 +8922,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8620,6 +8941,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8638,6 +8960,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8656,6 +8979,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8674,6 +8998,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8692,6 +9017,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -8710,6 +9036,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -8732,6 +9059,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -8754,6 +9082,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -8775,6 +9104,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -8796,6 +9126,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -8817,6 +9148,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -8838,6 +9170,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -8860,6 +9193,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -8882,6 +9216,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -8903,6 +9238,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -8924,6 +9260,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -8945,6 +9282,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -8966,6 +9304,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -8988,6 +9327,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -9010,6 +9350,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -9031,6 +9372,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -9052,6 +9394,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -9073,6 +9416,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -9094,6 +9438,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -9115,6 +9460,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -9136,6 +9482,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -9158,6 +9505,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -9180,6 +9528,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -9201,6 +9550,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -9222,6 +9572,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -9243,6 +9594,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -9264,6 +9616,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -9286,6 +9639,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -9308,6 +9662,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -9329,6 +9684,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -9350,6 +9706,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -9371,6 +9728,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -9392,6 +9750,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -9414,6 +9773,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -9436,6 +9796,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -9457,6 +9818,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -9478,6 +9840,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -9499,6 +9862,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -9520,6 +9884,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -9541,6 +9906,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: ID FLAGS access CF: m, PF: m, AF: 0, ZF: m, SF: 0, OF: 0, Valid modes @@ -9562,6 +9928,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9582,6 +9949,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9602,6 +9970,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9621,6 +9990,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9640,6 +10010,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9661,6 +10032,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9682,6 +10054,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9701,6 +10074,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9720,6 +10094,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9741,6 +10116,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9762,6 +10138,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9782,6 +10159,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9802,6 +10180,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9824,6 +10203,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9846,6 +10226,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9867,6 +10248,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9888,6 +10270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9910,6 +10293,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9932,6 +10316,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9952,6 +10337,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9972,6 +10358,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -9995,6 +10382,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10018,6 +10406,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10039,6 +10428,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10060,6 +10450,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10080,6 +10471,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10100,6 +10492,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10119,6 +10512,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10138,6 +10532,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10159,6 +10554,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10180,6 +10576,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10199,6 +10596,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10218,6 +10616,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10239,6 +10638,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10260,6 +10660,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10280,6 +10681,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10300,6 +10702,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10322,6 +10725,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10344,6 +10748,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10365,6 +10770,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10386,6 +10792,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10408,6 +10815,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10430,6 +10838,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10450,6 +10859,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10470,6 +10880,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10493,6 +10904,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10516,6 +10928,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10537,6 +10950,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10558,6 +10972,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10578,6 +10993,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10598,6 +11014,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10617,6 +11034,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10636,6 +11054,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10657,6 +11076,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10678,6 +11098,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10697,6 +11118,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10716,6 +11138,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10737,6 +11160,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10758,6 +11182,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10778,6 +11203,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10798,6 +11224,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10820,6 +11247,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10842,6 +11270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10863,6 +11292,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10884,6 +11314,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10906,6 +11337,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10928,6 +11360,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10948,6 +11381,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10968,6 +11402,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -10991,6 +11426,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11014,6 +11450,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11035,6 +11472,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11056,6 +11494,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11075,6 +11514,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11094,6 +11534,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11114,6 +11555,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11134,6 +11576,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11155,6 +11598,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11176,6 +11620,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11197,6 +11642,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11218,6 +11664,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11238,6 +11685,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11258,6 +11706,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11278,6 +11727,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11298,6 +11748,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11320,6 +11771,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11342,6 +11794,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11363,6 +11816,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11384,6 +11838,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11407,6 +11862,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11430,6 +11886,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11452,6 +11909,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11474,6 +11932,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11495,6 +11954,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11516,6 +11976,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11538,6 +11999,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11560,6 +12022,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11581,6 +12044,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11602,6 +12066,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11622,6 +12087,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11642,6 +12108,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11662,6 +12129,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11682,6 +12150,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11704,6 +12173,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11726,6 +12196,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11747,6 +12218,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11768,6 +12240,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11791,6 +12264,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11814,6 +12288,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11836,6 +12311,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11858,6 +12334,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11879,6 +12356,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11900,6 +12378,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11922,6 +12401,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11944,6 +12424,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11965,6 +12446,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -11986,6 +12468,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12006,6 +12489,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12026,6 +12510,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12046,6 +12531,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12066,6 +12552,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12088,6 +12575,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12110,6 +12598,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12131,6 +12620,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12152,6 +12642,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12175,6 +12666,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12198,6 +12690,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12220,6 +12713,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12242,6 +12736,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12263,6 +12758,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12284,6 +12780,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12306,6 +12803,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12328,6 +12826,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12349,6 +12848,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12370,6 +12870,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12390,6 +12891,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12410,6 +12912,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12430,6 +12933,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12450,6 +12954,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12472,6 +12977,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12494,6 +13000,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12515,6 +13022,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12536,6 +13044,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12559,6 +13068,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12582,6 +13092,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12604,6 +13115,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12626,6 +13138,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12647,6 +13160,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12668,6 +13182,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12690,6 +13205,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12712,6 +13228,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12733,6 +13250,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12754,6 +13272,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12774,6 +13293,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12794,6 +13314,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12814,6 +13335,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12834,6 +13356,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12856,6 +13379,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12878,6 +13402,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12899,6 +13424,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12920,6 +13446,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12943,6 +13470,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12966,6 +13494,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -12988,6 +13517,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13010,6 +13540,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13031,6 +13562,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13052,6 +13584,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13074,6 +13607,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13096,6 +13630,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13117,6 +13652,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13138,6 +13674,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13158,6 +13695,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13178,6 +13716,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13198,6 +13737,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13218,6 +13758,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13240,6 +13781,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13262,6 +13804,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13283,6 +13826,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13304,6 +13848,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13327,6 +13872,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13350,6 +13896,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13372,6 +13919,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13394,6 +13942,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13415,6 +13964,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13436,6 +13986,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13458,6 +14009,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13480,6 +14032,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13500,6 +14053,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13520,6 +14074,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13541,6 +14096,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13562,6 +14118,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13584,6 +14141,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13606,6 +14164,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13626,6 +14185,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13646,6 +14206,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13667,6 +14228,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13688,6 +14250,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13710,6 +14273,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13732,6 +14296,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13753,6 +14318,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13774,6 +14340,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13794,6 +14361,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13814,6 +14382,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13836,6 +14405,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13858,6 +14428,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13878,6 +14449,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13898,6 +14470,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13920,6 +14493,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13942,6 +14516,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13963,6 +14538,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -13984,6 +14560,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14007,6 +14584,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14030,6 +14608,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14052,6 +14631,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14074,6 +14654,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14097,6 +14678,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14120,6 +14702,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14141,6 +14724,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14162,6 +14746,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14186,6 +14771,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14210,6 +14796,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14232,6 +14819,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14254,6 +14842,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14275,6 +14864,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14296,6 +14886,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14316,6 +14907,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14336,6 +14928,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14358,6 +14951,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14380,6 +14974,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14400,6 +14995,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14420,6 +15016,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14442,6 +15039,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14464,6 +15062,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14485,6 +15084,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14506,6 +15106,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14529,6 +15130,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14552,6 +15154,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14574,6 +15177,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14596,6 +15200,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14619,6 +15224,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14642,6 +15248,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14663,6 +15270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14684,6 +15292,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14708,6 +15317,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14732,6 +15342,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14754,6 +15365,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14776,6 +15388,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14797,6 +15410,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14818,6 +15432,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14838,6 +15453,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14858,6 +15474,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14880,6 +15497,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14902,6 +15520,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14922,6 +15541,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14942,6 +15562,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14964,6 +15585,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -14986,6 +15608,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15007,6 +15630,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15028,6 +15652,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15051,6 +15676,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15074,6 +15700,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15096,6 +15723,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15118,6 +15746,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15141,6 +15770,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15164,6 +15794,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15185,6 +15816,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15206,6 +15838,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15230,6 +15863,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15254,6 +15888,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15276,6 +15911,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15298,6 +15934,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15319,6 +15956,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15340,6 +15978,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15360,6 +15999,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15380,6 +16020,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15402,6 +16043,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15424,6 +16066,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15444,6 +16087,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15464,6 +16108,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15486,6 +16131,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15508,6 +16154,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15529,6 +16176,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15550,6 +16198,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15573,6 +16222,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15596,6 +16246,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15618,6 +16269,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15640,6 +16292,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15663,6 +16316,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15686,6 +16340,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15707,6 +16362,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15728,6 +16384,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15752,6 +16409,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15776,6 +16434,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15798,6 +16457,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15820,6 +16480,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15841,6 +16502,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15862,6 +16524,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15882,6 +16545,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15902,6 +16566,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15924,6 +16589,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15946,6 +16612,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15966,6 +16633,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -15986,6 +16654,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16008,6 +16677,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16030,6 +16700,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16051,6 +16722,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16072,6 +16744,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16095,6 +16768,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16118,6 +16792,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16140,6 +16815,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16162,6 +16838,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16185,6 +16862,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16208,6 +16886,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16229,6 +16908,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16250,6 +16930,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16274,6 +16955,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16298,6 +16980,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16320,6 +17003,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16342,6 +17026,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16363,6 +17048,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16384,6 +17070,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16404,6 +17091,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16424,6 +17112,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16446,6 +17135,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16468,6 +17158,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16488,6 +17179,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16508,6 +17200,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16530,6 +17223,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16552,6 +17246,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16573,6 +17268,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16594,6 +17290,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16617,6 +17314,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16640,6 +17338,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16662,6 +17361,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16684,6 +17384,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16707,6 +17408,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16730,6 +17432,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16751,6 +17454,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16772,6 +17476,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16796,6 +17501,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16820,6 +17526,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16842,6 +17549,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16864,6 +17572,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16884,6 +17593,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16904,6 +17614,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16925,6 +17636,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16946,6 +17658,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16968,6 +17681,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -16990,6 +17704,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17010,6 +17725,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17030,6 +17746,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17051,6 +17768,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17072,6 +17790,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17094,6 +17813,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17116,6 +17836,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17137,6 +17858,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17158,6 +17880,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17178,6 +17901,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17198,6 +17922,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17218,6 +17943,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17238,6 +17964,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17260,6 +17987,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17282,6 +18010,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17303,6 +18032,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17324,6 +18054,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17347,6 +18078,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17370,6 +18102,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17392,6 +18125,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17414,6 +18148,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17435,6 +18170,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17456,6 +18192,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17478,6 +18215,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17500,6 +18238,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17521,6 +18260,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17542,6 +18282,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17562,6 +18303,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17582,6 +18324,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17602,6 +18345,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17622,6 +18366,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17644,6 +18389,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17666,6 +18412,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17687,6 +18434,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17708,6 +18456,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17731,6 +18480,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17754,6 +18504,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17776,6 +18527,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17798,6 +18550,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17819,6 +18572,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17840,6 +18594,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17862,6 +18617,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17884,6 +18640,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17905,6 +18662,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17926,6 +18684,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17946,6 +18705,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17966,6 +18726,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -17986,6 +18747,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18006,6 +18768,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18028,6 +18791,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18050,6 +18814,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18071,6 +18836,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18092,6 +18858,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18115,6 +18882,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18138,6 +18906,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18160,6 +18929,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18182,6 +18952,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18203,6 +18974,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18224,6 +18996,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18246,6 +19019,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18268,6 +19042,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18289,6 +19064,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18310,6 +19086,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18330,6 +19107,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18350,6 +19128,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18370,6 +19149,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18390,6 +19170,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18412,6 +19193,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18434,6 +19216,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18455,6 +19238,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18476,6 +19260,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18499,6 +19284,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18522,6 +19308,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18544,6 +19331,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18566,6 +19354,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18587,6 +19376,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18608,6 +19398,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18630,6 +19421,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18652,6 +19444,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18673,6 +19466,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18694,6 +19488,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18714,6 +19509,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18734,6 +19530,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18754,6 +19551,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18774,6 +19572,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18796,6 +19595,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18818,6 +19618,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18839,6 +19640,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18860,6 +19662,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18883,6 +19686,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18906,6 +19710,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18928,6 +19733,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18950,6 +19756,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18971,6 +19778,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -18992,6 +19800,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19014,6 +19823,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19036,6 +19846,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19057,6 +19868,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19078,6 +19890,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19098,6 +19911,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19118,6 +19932,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19138,6 +19953,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19158,6 +19974,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19180,6 +19997,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19202,6 +20020,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19223,6 +20042,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19244,6 +20064,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19267,6 +20088,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19290,6 +20112,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19312,6 +20135,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19334,6 +20158,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19355,6 +20180,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19376,6 +20202,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19398,6 +20225,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19420,6 +20248,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19440,6 +20269,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19460,6 +20290,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19481,6 +20312,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19502,6 +20334,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19524,6 +20357,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19546,6 +20380,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19566,6 +20401,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19586,6 +20422,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19607,6 +20444,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19628,6 +20466,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19650,6 +20489,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19672,6 +20512,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19693,6 +20534,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19714,6 +20556,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19734,6 +20577,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19754,6 +20598,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19776,6 +20621,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19798,6 +20644,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19818,6 +20665,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19838,6 +20686,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19860,6 +20709,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19882,6 +20732,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19903,6 +20754,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19924,6 +20776,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19947,6 +20800,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19970,6 +20824,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -19992,6 +20847,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20014,6 +20870,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20037,6 +20894,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20060,6 +20918,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20081,6 +20940,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20102,6 +20962,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20126,6 +20987,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20150,6 +21012,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20172,6 +21035,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20194,6 +21058,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20215,6 +21080,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20236,6 +21102,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20256,6 +21123,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20276,6 +21144,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20298,6 +21167,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20320,6 +21190,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20340,6 +21211,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20360,6 +21232,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20382,6 +21255,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20404,6 +21278,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20425,6 +21300,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20446,6 +21322,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20469,6 +21346,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20492,6 +21370,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20514,6 +21393,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20536,6 +21416,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20559,6 +21440,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20582,6 +21464,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20603,6 +21486,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20624,6 +21508,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20648,6 +21533,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20672,6 +21558,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20694,6 +21581,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20716,6 +21604,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20737,6 +21626,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20758,6 +21648,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20778,6 +21669,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20798,6 +21690,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20820,6 +21713,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20842,6 +21736,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20862,6 +21757,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20882,6 +21778,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20904,6 +21801,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20926,6 +21824,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20947,6 +21846,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20968,6 +21868,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -20991,6 +21892,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21014,6 +21916,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21036,6 +21939,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21058,6 +21962,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21081,6 +21986,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21104,6 +22010,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21125,6 +22032,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21146,6 +22054,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21170,6 +22079,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21194,6 +22104,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21216,6 +22127,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21238,6 +22150,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21259,6 +22172,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21280,6 +22194,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21300,6 +22215,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21320,6 +22236,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21342,6 +22259,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21364,6 +22282,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21384,6 +22303,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21404,6 +22324,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21426,6 +22347,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21448,6 +22370,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21469,6 +22392,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21490,6 +22414,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21513,6 +22438,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21536,6 +22462,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21558,6 +22485,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21580,6 +22508,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21603,6 +22532,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21626,6 +22556,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21647,6 +22578,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21668,6 +22600,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21692,6 +22625,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21716,6 +22650,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21738,6 +22673,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21760,6 +22696,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21781,6 +22718,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21802,6 +22740,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21822,6 +22761,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21842,6 +22782,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21864,6 +22805,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21886,6 +22828,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21906,6 +22849,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21926,6 +22870,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21948,6 +22893,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21970,6 +22916,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -21991,6 +22938,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22012,6 +22960,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22035,6 +22984,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22058,6 +23008,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22080,6 +23031,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22102,6 +23054,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22125,6 +23078,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22148,6 +23102,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22169,6 +23124,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22190,6 +23146,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22214,6 +23171,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22238,6 +23196,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22260,6 +23219,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22282,6 +23242,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22303,6 +23264,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22324,6 +23286,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22344,6 +23307,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22364,6 +23328,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22386,6 +23351,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22408,6 +23374,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22428,6 +23395,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22448,6 +23416,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22470,6 +23439,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22492,6 +23462,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22513,6 +23484,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22534,6 +23506,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22557,6 +23530,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22580,6 +23554,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22602,6 +23577,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22624,6 +23600,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22647,6 +23624,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22670,6 +23648,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22691,6 +23670,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22712,6 +23692,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22736,6 +23717,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22760,6 +23742,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22782,6 +23765,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22804,6 +23788,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22824,6 +23809,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22844,6 +23830,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22865,6 +23852,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22886,6 +23874,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22908,6 +23897,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22930,6 +23920,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22950,6 +23941,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22970,6 +23962,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -22991,6 +23984,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23012,6 +24006,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23034,6 +24029,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23056,6 +24052,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23077,6 +24074,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23098,6 +24096,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23118,6 +24117,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23138,6 +24138,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23158,6 +24159,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23178,6 +24180,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23200,6 +24203,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23222,6 +24226,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23243,6 +24248,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23264,6 +24270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23287,6 +24294,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23310,6 +24318,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23332,6 +24341,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23354,6 +24364,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23375,6 +24386,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23396,6 +24408,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23418,6 +24431,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23440,6 +24454,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23461,6 +24476,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23482,6 +24498,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23502,6 +24519,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23522,6 +24540,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23542,6 +24561,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23562,6 +24582,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23584,6 +24605,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23606,6 +24628,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23627,6 +24650,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23648,6 +24672,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23671,6 +24696,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23694,6 +24720,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23716,6 +24743,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23738,6 +24766,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23759,6 +24788,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23780,6 +24810,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23802,6 +24833,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23824,6 +24856,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23845,6 +24878,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23866,6 +24900,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23886,6 +24921,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23906,6 +24942,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23926,6 +24963,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23946,6 +24984,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23968,6 +25007,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -23990,6 +25030,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24011,6 +25052,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24032,6 +25074,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24055,6 +25098,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24078,6 +25122,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24100,6 +25145,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24122,6 +25168,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24143,6 +25190,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24164,6 +25212,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24186,6 +25235,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24208,6 +25258,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24229,6 +25280,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24250,6 +25302,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24270,6 +25323,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24290,6 +25344,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24310,6 +25365,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24330,6 +25386,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24352,6 +25409,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24374,6 +25432,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24395,6 +25454,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24416,6 +25476,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24439,6 +25500,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24462,6 +25524,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24484,6 +25547,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24506,6 +25570,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24527,6 +25592,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24548,6 +25614,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24570,6 +25637,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24592,6 +25660,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24613,6 +25682,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24634,6 +25704,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24654,6 +25725,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24674,6 +25746,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24694,6 +25767,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24714,6 +25788,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24736,6 +25811,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24758,6 +25834,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24779,6 +25856,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24800,6 +25878,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24823,6 +25902,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24846,6 +25926,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24868,6 +25949,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24890,6 +25972,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24911,6 +25994,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24932,6 +26016,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24954,6 +26039,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24976,6 +26062,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -24997,6 +26084,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25018,6 +26106,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25038,6 +26127,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25058,6 +26148,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25078,6 +26169,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25098,6 +26190,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25120,6 +26213,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25142,6 +26236,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25163,6 +26258,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25184,6 +26280,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25207,6 +26304,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25230,6 +26328,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25252,6 +26351,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25274,6 +26374,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25295,6 +26396,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25316,6 +26418,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25338,6 +26441,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25360,6 +26464,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25380,6 +26485,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25400,6 +26506,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25421,6 +26528,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25442,6 +26550,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25464,6 +26573,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25486,6 +26596,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25506,6 +26617,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25526,6 +26638,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25547,6 +26660,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25568,6 +26682,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25590,6 +26705,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25612,6 +26728,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25632,6 +26749,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25652,6 +26770,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25671,6 +26790,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25690,6 +26810,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25711,6 +26832,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25732,6 +26854,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25751,6 +26874,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25770,6 +26894,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25791,6 +26916,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25812,6 +26938,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25832,6 +26959,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25852,6 +26980,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25874,6 +27003,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25896,6 +27026,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25917,6 +27048,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25938,6 +27070,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25960,6 +27093,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -25982,6 +27116,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26002,6 +27137,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26022,6 +27158,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26045,6 +27182,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26068,6 +27206,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26089,6 +27228,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26110,6 +27250,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26130,6 +27271,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26150,6 +27292,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26169,6 +27312,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26188,6 +27332,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26209,6 +27354,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26230,6 +27376,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26249,6 +27396,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26268,6 +27416,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26289,6 +27438,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26310,6 +27460,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26330,6 +27481,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26350,6 +27502,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26372,6 +27525,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26394,6 +27548,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26415,6 +27570,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26436,6 +27592,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26458,6 +27615,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26480,6 +27638,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26500,6 +27659,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26520,6 +27680,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26543,6 +27704,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26566,6 +27728,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26587,6 +27750,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26608,6 +27772,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26628,6 +27793,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26648,6 +27814,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26667,6 +27834,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26686,6 +27854,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26707,6 +27876,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26728,6 +27898,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26747,6 +27918,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26766,6 +27938,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26787,6 +27960,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26808,6 +27982,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26828,6 +28003,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26848,6 +28024,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26870,6 +28047,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26892,6 +28070,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26913,6 +28092,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26934,6 +28114,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26956,6 +28137,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26978,6 +28160,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -26998,6 +28181,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27018,6 +28202,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27041,6 +28226,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27064,6 +28250,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27085,6 +28272,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27106,6 +28294,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27125,6 +28314,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27144,6 +28334,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27164,6 +28355,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27184,6 +28376,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27205,6 +28398,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27226,6 +28420,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27246,6 +28441,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27266,6 +28462,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27285,6 +28482,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27304,6 +28502,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27325,6 +28524,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27346,6 +28546,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27365,6 +28566,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27384,6 +28586,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27405,6 +28608,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27426,6 +28630,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27446,6 +28651,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27466,6 +28672,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27488,6 +28695,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27510,6 +28718,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27531,6 +28740,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27552,6 +28762,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27574,6 +28785,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27596,6 +28808,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27616,6 +28829,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27636,6 +28850,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27659,6 +28874,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27682,6 +28898,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27703,6 +28920,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27724,6 +28942,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27744,6 +28963,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27764,6 +28984,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27783,6 +29004,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27802,6 +29024,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27823,6 +29046,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27844,6 +29068,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27863,6 +29088,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27882,6 +29108,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27903,6 +29130,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27924,6 +29152,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27944,6 +29173,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27964,6 +29194,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -27986,6 +29217,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28008,6 +29240,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28029,6 +29262,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28050,6 +29284,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28072,6 +29307,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28094,6 +29330,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28114,6 +29351,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28134,6 +29372,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28157,6 +29396,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28180,6 +29420,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28201,6 +29442,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28222,6 +29464,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28242,6 +29485,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28262,6 +29506,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28281,6 +29526,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28300,6 +29546,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28321,6 +29568,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28342,6 +29590,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28361,6 +29610,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28380,6 +29630,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28401,6 +29652,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28422,6 +29674,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28442,6 +29695,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28462,6 +29716,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28484,6 +29739,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28506,6 +29762,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28527,6 +29784,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28548,6 +29806,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28570,6 +29829,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28592,6 +29852,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28612,6 +29873,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28632,6 +29894,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28655,6 +29918,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28678,6 +29942,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28699,6 +29964,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28720,6 +29986,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28739,6 +30006,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28758,6 +30026,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28778,6 +30047,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28798,6 +30068,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28819,6 +30090,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28840,6 +30112,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28861,6 +30134,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28882,6 +30156,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28902,6 +30177,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28922,6 +30198,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28942,6 +30219,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28962,6 +30240,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -28984,6 +30263,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29006,6 +30286,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29027,6 +30308,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29048,6 +30330,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29071,6 +30354,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29094,6 +30378,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29116,6 +30401,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29138,6 +30424,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29159,6 +30446,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29180,6 +30468,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29202,6 +30491,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29224,6 +30514,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29245,6 +30536,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29266,6 +30558,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29286,6 +30579,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29306,6 +30600,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29326,6 +30621,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29346,6 +30642,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29368,6 +30665,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29390,6 +30688,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29411,6 +30710,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29432,6 +30732,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29455,6 +30756,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29478,6 +30780,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29500,6 +30803,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29522,6 +30826,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29543,6 +30848,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29564,6 +30870,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29586,6 +30893,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29608,6 +30916,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29629,6 +30938,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29650,6 +30960,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29670,6 +30981,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29690,6 +31002,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29710,6 +31023,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29730,6 +31044,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29752,6 +31067,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29774,6 +31090,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29795,6 +31112,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29816,6 +31134,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29839,6 +31158,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29862,6 +31182,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29884,6 +31205,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29906,6 +31228,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29927,6 +31250,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29948,6 +31272,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29970,6 +31295,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -29992,6 +31318,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30013,6 +31340,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30034,6 +31362,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30054,6 +31383,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30074,6 +31404,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30094,6 +31425,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30114,6 +31446,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30136,6 +31469,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30158,6 +31492,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30179,6 +31514,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30200,6 +31536,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30223,6 +31560,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30246,6 +31584,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30268,6 +31607,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30290,6 +31630,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30311,6 +31652,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30332,6 +31674,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30354,6 +31697,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30376,6 +31720,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30397,6 +31742,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30418,6 +31764,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30438,6 +31785,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30458,6 +31806,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30478,6 +31827,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30498,6 +31848,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30520,6 +31871,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30542,6 +31894,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30563,6 +31916,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30584,6 +31938,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30607,6 +31962,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30630,6 +31986,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30652,6 +32009,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30674,6 +32032,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30695,6 +32054,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30716,6 +32076,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30738,6 +32099,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30760,6 +32122,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30781,6 +32144,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30802,6 +32166,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30822,6 +32187,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30842,6 +32208,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30862,6 +32229,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30882,6 +32250,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30904,6 +32273,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30926,6 +32296,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30947,6 +32318,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30968,6 +32340,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -30991,6 +32364,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31014,6 +32388,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31036,6 +32411,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31058,6 +32434,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31079,6 +32456,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31100,6 +32478,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31122,6 +32501,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31144,6 +32524,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31164,6 +32545,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31184,6 +32566,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31205,6 +32588,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31226,6 +32610,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31248,6 +32633,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31270,6 +32656,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31290,6 +32677,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31310,6 +32698,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31331,6 +32720,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31352,6 +32742,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31374,6 +32765,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31396,6 +32788,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31417,6 +32810,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31438,6 +32832,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31458,6 +32853,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31478,6 +32874,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31498,6 +32895,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31518,6 +32916,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31540,6 +32939,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31562,6 +32962,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31583,6 +32984,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31604,6 +33006,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31627,6 +33030,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31650,6 +33054,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31672,6 +33077,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31694,6 +33100,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31715,6 +33122,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31736,6 +33144,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31758,6 +33167,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31780,6 +33190,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31801,6 +33212,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31822,6 +33234,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31842,6 +33255,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31862,6 +33276,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31882,6 +33297,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31902,6 +33318,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31924,6 +33341,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31946,6 +33364,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31967,6 +33386,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -31988,6 +33408,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32011,6 +33432,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32034,6 +33456,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32056,6 +33479,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32078,6 +33502,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32099,6 +33524,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32120,6 +33546,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32142,6 +33569,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32164,6 +33592,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32185,6 +33614,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32206,6 +33636,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32226,6 +33657,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32246,6 +33678,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32266,6 +33699,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32286,6 +33720,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32308,6 +33743,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32330,6 +33766,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32351,6 +33788,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32372,6 +33810,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32395,6 +33834,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32418,6 +33858,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32440,6 +33881,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32462,6 +33904,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32483,6 +33926,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32504,6 +33948,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32526,6 +33971,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32548,6 +33994,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32569,6 +34016,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32590,6 +34038,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32610,6 +34059,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32630,6 +34080,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32650,6 +34101,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32670,6 +34122,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32692,6 +34145,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32714,6 +34168,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32735,6 +34190,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32756,6 +34212,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32779,6 +34236,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32802,6 +34260,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32824,6 +34283,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32846,6 +34306,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32867,6 +34328,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32888,6 +34350,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32910,6 +34373,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32932,6 +34396,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32953,6 +34418,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32974,6 +34440,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -32994,6 +34461,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33014,6 +34482,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33034,6 +34503,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33054,6 +34524,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33076,6 +34547,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33098,6 +34570,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33119,6 +34592,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33140,6 +34614,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33163,6 +34638,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33186,6 +34662,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33208,6 +34685,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33230,6 +34708,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33251,6 +34730,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33272,6 +34752,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33294,6 +34775,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33316,6 +34798,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33337,6 +34820,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33358,6 +34842,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33378,6 +34863,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33398,6 +34884,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33418,6 +34905,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33438,6 +34926,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33460,6 +34949,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33482,6 +34972,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33503,6 +34994,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33524,6 +35016,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33547,6 +35040,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33570,6 +35064,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33592,6 +35087,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33614,6 +35110,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33635,6 +35132,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33656,6 +35154,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33678,6 +35177,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33700,6 +35200,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33720,6 +35221,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33740,6 +35242,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33761,6 +35264,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33782,6 +35286,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33804,6 +35309,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33826,6 +35332,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33846,6 +35353,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33866,6 +35374,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33887,6 +35396,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33908,6 +35418,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33930,6 +35441,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33952,6 +35464,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33972,6 +35485,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -33992,6 +35506,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34011,6 +35526,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34030,6 +35546,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34051,6 +35568,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34072,6 +35590,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34091,6 +35610,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34110,6 +35630,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34131,6 +35652,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34152,6 +35674,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34172,6 +35695,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34192,6 +35716,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34214,6 +35739,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34236,6 +35762,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34257,6 +35784,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34278,6 +35806,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34300,6 +35829,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34322,6 +35852,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34342,6 +35873,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34362,6 +35894,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34385,6 +35918,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34408,6 +35942,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34429,6 +35964,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34450,6 +35986,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34470,6 +36007,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34490,6 +36028,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34509,6 +36048,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34528,6 +36068,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34549,6 +36090,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34570,6 +36112,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34589,6 +36132,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34608,6 +36152,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34629,6 +36174,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34650,6 +36196,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34670,6 +36217,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34690,6 +36238,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34712,6 +36261,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34734,6 +36284,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34755,6 +36306,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34776,6 +36328,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34798,6 +36351,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34820,6 +36374,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34840,6 +36395,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34860,6 +36416,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34883,6 +36440,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34906,6 +36464,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34927,6 +36486,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34948,6 +36508,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34968,6 +36529,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -34988,6 +36550,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35007,6 +36570,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35026,6 +36590,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35047,6 +36612,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35068,6 +36634,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35087,6 +36654,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35106,6 +36674,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35127,6 +36696,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35148,6 +36718,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35168,6 +36739,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35188,6 +36760,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35210,6 +36783,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35232,6 +36806,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35253,6 +36828,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35274,6 +36850,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35296,6 +36873,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35318,6 +36896,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35338,6 +36917,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35358,6 +36938,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35381,6 +36962,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35404,6 +36986,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35425,6 +37008,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35446,6 +37030,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35466,6 +37051,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35486,6 +37072,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35505,6 +37092,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35524,6 +37112,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35545,6 +37134,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35566,6 +37156,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35585,6 +37176,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35604,6 +37196,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35625,6 +37218,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35646,6 +37240,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35666,6 +37261,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35686,6 +37282,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35708,6 +37305,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35730,6 +37328,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35751,6 +37350,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35772,6 +37372,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35794,6 +37395,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35816,6 +37418,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35836,6 +37439,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35856,6 +37460,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35879,6 +37484,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35902,6 +37508,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35923,6 +37530,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35944,6 +37552,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35964,6 +37573,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -35984,6 +37594,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36003,6 +37614,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36022,6 +37634,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36043,6 +37656,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36064,6 +37678,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36083,6 +37698,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36102,6 +37718,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36123,6 +37740,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36144,6 +37762,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36164,6 +37783,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36184,6 +37804,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36206,6 +37827,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36228,6 +37850,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36249,6 +37872,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36270,6 +37894,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36292,6 +37917,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36314,6 +37940,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36334,6 +37961,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36354,6 +37982,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36377,6 +38006,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36400,6 +38030,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36421,6 +38052,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36442,6 +38074,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36462,6 +38095,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36482,6 +38116,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36501,6 +38136,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36520,6 +38156,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36541,6 +38178,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36562,6 +38200,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36581,6 +38220,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36600,6 +38240,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36621,6 +38262,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36642,6 +38284,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36662,6 +38305,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36682,6 +38326,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36704,6 +38349,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36726,6 +38372,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36747,6 +38394,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36768,6 +38416,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36790,6 +38439,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36812,6 +38462,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36832,6 +38483,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36852,6 +38504,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36875,6 +38528,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36898,6 +38552,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36919,6 +38574,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36940,6 +38596,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36959,6 +38616,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36978,6 +38636,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -36998,6 +38657,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37018,6 +38678,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37039,6 +38700,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37060,6 +38722,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37079,6 +38742,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37098,6 +38762,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37118,6 +38783,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37138,6 +38804,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37159,6 +38826,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37180,6 +38848,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37200,6 +38869,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37220,6 +38890,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37239,6 +38910,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37258,6 +38930,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37279,6 +38952,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37300,6 +38974,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37319,6 +38994,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37338,6 +39014,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37359,6 +39036,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37380,6 +39058,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37400,6 +39079,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37420,6 +39100,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37442,6 +39123,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37464,6 +39146,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37485,6 +39168,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37506,6 +39190,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37528,6 +39213,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37550,6 +39236,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37570,6 +39257,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37590,6 +39278,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37613,6 +39302,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37636,6 +39326,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37657,6 +39348,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37678,6 +39370,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37698,6 +39391,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37718,6 +39412,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37737,6 +39432,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37756,6 +39452,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37777,6 +39474,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37798,6 +39496,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37817,6 +39516,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37836,6 +39536,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37857,6 +39558,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37878,6 +39580,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37898,6 +39601,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37918,6 +39622,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37940,6 +39645,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37962,6 +39668,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -37983,6 +39690,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38004,6 +39712,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38026,6 +39735,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38048,6 +39758,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38068,6 +39779,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38088,6 +39800,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38111,6 +39824,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38134,6 +39848,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38155,6 +39870,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38176,6 +39892,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38196,6 +39913,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38216,6 +39934,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38235,6 +39954,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38254,6 +39974,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38275,6 +39996,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38296,6 +40018,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38315,6 +40038,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38334,6 +40058,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38355,6 +40080,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38376,6 +40102,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38396,6 +40123,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38416,6 +40144,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38438,6 +40167,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38460,6 +40190,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38481,6 +40212,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38502,6 +40234,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38524,6 +40257,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38546,6 +40280,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38566,6 +40301,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38586,6 +40322,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38609,6 +40346,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38632,6 +40370,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38653,6 +40392,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38674,6 +40414,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38693,6 +40434,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38712,6 +40454,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38732,6 +40475,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38752,6 +40496,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38773,6 +40518,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38794,6 +40540,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38814,6 +40561,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38834,6 +40582,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38853,6 +40602,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38872,6 +40622,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38893,6 +40644,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38914,6 +40666,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38933,6 +40686,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38952,6 +40706,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38973,6 +40728,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -38994,6 +40750,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39014,6 +40771,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39034,6 +40792,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39056,6 +40815,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39078,6 +40838,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39099,6 +40860,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39120,6 +40882,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39142,6 +40905,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39164,6 +40928,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39184,6 +40949,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39204,6 +40970,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39227,6 +40994,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39250,6 +41018,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39271,6 +41040,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39292,6 +41062,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39312,6 +41083,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39332,6 +41104,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39351,6 +41124,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39370,6 +41144,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39391,6 +41166,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39412,6 +41188,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39431,6 +41208,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39450,6 +41228,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39471,6 +41250,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39492,6 +41272,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39512,6 +41293,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39532,6 +41314,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39554,6 +41337,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39576,6 +41360,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39597,6 +41382,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39618,6 +41404,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39640,6 +41427,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39662,6 +41450,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39682,6 +41471,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39702,6 +41492,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39725,6 +41516,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39748,6 +41540,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39769,6 +41562,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39790,6 +41584,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39810,6 +41605,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39830,6 +41626,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39849,6 +41646,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39868,6 +41666,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39889,6 +41688,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39910,6 +41710,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39929,6 +41730,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39948,6 +41750,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39969,6 +41772,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -39990,6 +41794,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40010,6 +41815,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40030,6 +41836,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40052,6 +41859,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40074,6 +41882,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40095,6 +41904,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40116,6 +41926,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40138,6 +41949,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40160,6 +41972,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40180,6 +41993,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40200,6 +42014,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40223,6 +42038,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40246,6 +42062,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40267,6 +42084,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40288,6 +42106,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40307,6 +42126,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40326,6 +42146,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40346,6 +42167,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40366,6 +42188,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40387,6 +42210,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40408,6 +42232,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40429,6 +42254,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40450,6 +42276,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40470,6 +42297,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40490,6 +42318,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40512,6 +42341,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40534,6 +42364,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40554,6 +42385,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40574,6 +42406,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40596,6 +42429,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40618,6 +42452,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40639,6 +42474,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40660,6 +42496,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40683,6 +42520,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40706,6 +42544,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40728,6 +42567,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40750,6 +42590,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40773,6 +42614,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40796,6 +42638,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40817,6 +42660,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40838,6 +42682,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40862,6 +42707,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40886,6 +42732,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40908,6 +42755,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40930,6 +42778,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40951,6 +42800,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40972,6 +42822,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -40992,6 +42843,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41012,6 +42864,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41034,6 +42887,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41056,6 +42910,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41076,6 +42931,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41096,6 +42952,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41118,6 +42975,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41140,6 +42998,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41161,6 +43020,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41182,6 +43042,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41205,6 +43066,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41228,6 +43090,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41250,6 +43113,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41272,6 +43136,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41295,6 +43160,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41318,6 +43184,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41339,6 +43206,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41360,6 +43228,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41384,6 +43253,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41408,6 +43278,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41430,6 +43301,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41452,6 +43324,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41473,6 +43346,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41494,6 +43368,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41514,6 +43389,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41534,6 +43410,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41556,6 +43433,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41578,6 +43456,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41598,6 +43477,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41618,6 +43498,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41640,6 +43521,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41662,6 +43544,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41683,6 +43566,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41704,6 +43588,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41727,6 +43612,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41750,6 +43636,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41772,6 +43659,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41794,6 +43682,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41817,6 +43706,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41840,6 +43730,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41861,6 +43752,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41882,6 +43774,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41906,6 +43799,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41930,6 +43824,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41952,6 +43847,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41974,6 +43870,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -41995,6 +43892,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42016,6 +43914,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42036,6 +43935,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42056,6 +43956,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42078,6 +43979,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42100,6 +44002,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42120,6 +44023,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42140,6 +44044,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42162,6 +44067,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42184,6 +44090,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42205,6 +44112,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42226,6 +44134,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42249,6 +44158,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42272,6 +44182,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42294,6 +44205,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42316,6 +44228,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42339,6 +44252,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42362,6 +44276,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42383,6 +44298,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42404,6 +44320,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42428,6 +44345,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42452,6 +44370,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42474,6 +44393,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42496,6 +44416,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42517,6 +44438,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42538,6 +44460,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42558,6 +44481,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42578,6 +44502,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42600,6 +44525,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42622,6 +44548,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42642,6 +44569,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42662,6 +44590,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42684,6 +44613,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42706,6 +44636,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42727,6 +44658,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42748,6 +44680,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42771,6 +44704,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42794,6 +44728,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42816,6 +44751,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42838,6 +44774,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42861,6 +44798,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42884,6 +44822,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42905,6 +44844,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42926,6 +44866,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42950,6 +44891,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42974,6 +44916,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -42996,6 +44939,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43018,6 +44962,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43039,6 +44984,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43060,6 +45006,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43080,6 +45027,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43100,6 +45048,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43122,6 +45071,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43144,6 +45094,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43164,6 +45115,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43184,6 +45136,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43206,6 +45159,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43228,6 +45182,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43249,6 +45204,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43270,6 +45226,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43293,6 +45250,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43316,6 +45274,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43338,6 +45297,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43360,6 +45320,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43383,6 +45344,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43406,6 +45368,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43427,6 +45390,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43448,6 +45412,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43472,6 +45437,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43496,6 +45462,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43518,6 +45485,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43540,6 +45508,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43560,6 +45529,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43580,6 +45550,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43601,6 +45572,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43622,6 +45594,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43644,6 +45617,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43666,6 +45640,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43686,6 +45661,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43706,6 +45682,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43727,6 +45704,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43748,6 +45726,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43770,6 +45749,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43792,6 +45772,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43813,6 +45794,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43834,6 +45816,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43854,6 +45837,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43874,6 +45858,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43894,6 +45879,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43914,6 +45900,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43936,6 +45923,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43958,6 +45946,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -43979,6 +45968,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44000,6 +45990,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44023,6 +46014,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44046,6 +46038,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44068,6 +46061,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44090,6 +46084,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44111,6 +46106,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44132,6 +46128,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44154,6 +46151,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44176,6 +46174,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44197,6 +46196,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44218,6 +46218,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44238,6 +46239,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44258,6 +46260,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44278,6 +46281,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44298,6 +46302,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44320,6 +46325,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44342,6 +46348,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44363,6 +46370,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44384,6 +46392,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44407,6 +46416,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44430,6 +46440,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44452,6 +46463,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44474,6 +46486,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44495,6 +46508,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44516,6 +46530,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44538,6 +46553,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44560,6 +46576,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44581,6 +46598,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44602,6 +46620,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44622,6 +46641,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44642,6 +46662,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44662,6 +46683,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44682,6 +46704,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44704,6 +46727,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44726,6 +46750,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44747,6 +46772,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44768,6 +46794,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44791,6 +46818,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44814,6 +46842,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44836,6 +46865,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44858,6 +46888,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44879,6 +46910,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44900,6 +46932,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44922,6 +46955,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44944,6 +46978,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44965,6 +47000,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -44986,6 +47022,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45006,6 +47043,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45026,6 +47064,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45046,6 +47085,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45066,6 +47106,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45088,6 +47129,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45110,6 +47152,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45131,6 +47174,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45152,6 +47196,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45175,6 +47220,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45198,6 +47244,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45220,6 +47267,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45242,6 +47290,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45263,6 +47312,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45284,6 +47334,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45306,6 +47357,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45328,6 +47380,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45349,6 +47402,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45370,6 +47424,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45390,6 +47445,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45410,6 +47466,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45430,6 +47487,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45450,6 +47508,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45472,6 +47531,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45494,6 +47554,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45515,6 +47576,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45536,6 +47598,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45559,6 +47622,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45582,6 +47646,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45604,6 +47669,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45626,6 +47692,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45647,6 +47714,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45668,6 +47736,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45690,6 +47759,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45712,6 +47782,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45733,6 +47804,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45754,6 +47826,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45774,6 +47847,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45794,6 +47868,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45814,6 +47889,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45834,6 +47910,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45856,6 +47933,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45878,6 +47956,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45899,6 +47978,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45920,6 +48000,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45943,6 +48024,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45966,6 +48048,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -45988,6 +48071,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46010,6 +48094,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46031,6 +48116,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46052,6 +48138,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46074,6 +48161,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46096,6 +48184,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46116,6 +48205,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46136,6 +48226,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46157,6 +48248,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46178,6 +48270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46200,6 +48293,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46222,6 +48316,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46242,6 +48337,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46262,6 +48358,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46283,6 +48380,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46304,6 +48402,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46326,6 +48425,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46348,6 +48448,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46369,6 +48470,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46390,6 +48492,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46410,6 +48513,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46430,6 +48534,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46452,6 +48557,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46474,6 +48580,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46494,6 +48601,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46514,6 +48622,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46536,6 +48645,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46558,6 +48668,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46579,6 +48690,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46600,6 +48712,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46623,6 +48736,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46646,6 +48760,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46668,6 +48783,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46690,6 +48806,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46713,6 +48830,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46736,6 +48854,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46757,6 +48876,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46778,6 +48898,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46802,6 +48923,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46826,6 +48948,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46848,6 +48971,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46870,6 +48994,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46891,6 +49016,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46912,6 +49038,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46932,6 +49059,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46952,6 +49080,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46974,6 +49103,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -46996,6 +49126,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47016,6 +49147,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47036,6 +49168,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47058,6 +49191,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47080,6 +49214,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47101,6 +49236,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47122,6 +49258,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47145,6 +49282,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47168,6 +49306,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47190,6 +49329,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47212,6 +49352,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47235,6 +49376,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47258,6 +49400,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47279,6 +49422,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47300,6 +49444,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47324,6 +49469,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47348,6 +49494,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47370,6 +49517,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47392,6 +49540,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47413,6 +49562,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47434,6 +49584,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47454,6 +49605,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47474,6 +49626,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47496,6 +49649,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47518,6 +49672,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47538,6 +49693,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47558,6 +49714,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47580,6 +49737,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47602,6 +49760,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47623,6 +49782,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47644,6 +49804,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47667,6 +49828,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47690,6 +49852,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47712,6 +49875,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47734,6 +49898,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47757,6 +49922,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47780,6 +49946,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47801,6 +49968,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47822,6 +49990,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47846,6 +50015,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47870,6 +50040,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47892,6 +50063,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47914,6 +50086,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47935,6 +50108,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47956,6 +50130,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47976,6 +50151,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -47996,6 +50172,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48018,6 +50195,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48040,6 +50218,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48060,6 +50239,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48080,6 +50260,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48102,6 +50283,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48124,6 +50306,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48145,6 +50328,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48166,6 +50350,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48189,6 +50374,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48212,6 +50398,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48234,6 +50421,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48256,6 +50444,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48279,6 +50468,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48302,6 +50492,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48323,6 +50514,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48344,6 +50536,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48368,6 +50561,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48392,6 +50586,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48414,6 +50609,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48436,6 +50632,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48457,6 +50654,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48478,6 +50676,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48498,6 +50697,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48518,6 +50718,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48540,6 +50741,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48562,6 +50764,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48582,6 +50785,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48602,6 +50806,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48624,6 +50829,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48646,6 +50852,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48667,6 +50874,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48688,6 +50896,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48711,6 +50920,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48734,6 +50944,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48756,6 +50967,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48778,6 +50990,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48801,6 +51014,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48824,6 +51038,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48845,6 +51060,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48866,6 +51082,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48890,6 +51107,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48914,6 +51132,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48936,6 +51155,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48958,6 +51178,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -48979,6 +51200,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49000,6 +51222,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49020,6 +51243,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49040,6 +51264,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49062,6 +51287,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49084,6 +51310,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49104,6 +51331,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49124,6 +51352,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49146,6 +51375,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49168,6 +51398,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49189,6 +51420,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49210,6 +51442,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49233,6 +51466,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49256,6 +51490,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49278,6 +51513,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49300,6 +51536,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49323,6 +51560,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49346,6 +51584,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49367,6 +51606,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49388,6 +51628,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49412,6 +51653,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49436,6 +51678,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49458,6 +51701,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49480,6 +51724,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49500,6 +51745,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49520,6 +51766,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49541,6 +51788,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49562,6 +51810,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49584,6 +51833,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49606,6 +51856,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49626,6 +51877,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49646,6 +51898,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49667,6 +51920,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49688,6 +51942,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49710,6 +51965,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49732,6 +51988,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49753,6 +52010,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49774,6 +52032,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49794,6 +52053,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49814,6 +52074,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49834,6 +52095,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49854,6 +52116,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49876,6 +52139,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49898,6 +52162,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49919,6 +52184,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49940,6 +52206,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49963,6 +52230,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -49986,6 +52254,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50008,6 +52277,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50030,6 +52300,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50051,6 +52322,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50072,6 +52344,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50094,6 +52367,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50116,6 +52390,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50137,6 +52412,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50158,6 +52434,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50178,6 +52455,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50198,6 +52476,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50218,6 +52497,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50238,6 +52518,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50260,6 +52541,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50282,6 +52564,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50303,6 +52586,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50324,6 +52608,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50347,6 +52632,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50370,6 +52656,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50392,6 +52679,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50414,6 +52702,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50435,6 +52724,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50456,6 +52746,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50478,6 +52769,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50500,6 +52792,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50521,6 +52814,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50542,6 +52836,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50562,6 +52857,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50582,6 +52878,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50602,6 +52899,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50622,6 +52920,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50644,6 +52943,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50666,6 +52966,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50687,6 +52988,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50708,6 +53010,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50731,6 +53034,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50754,6 +53058,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50776,6 +53081,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50798,6 +53104,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50819,6 +53126,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50840,6 +53148,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50862,6 +53171,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50884,6 +53194,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50905,6 +53216,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50926,6 +53238,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50946,6 +53259,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50966,6 +53280,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -50986,6 +53301,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51006,6 +53322,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51028,6 +53345,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51050,6 +53368,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51071,6 +53390,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51092,6 +53412,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51115,6 +53436,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51138,6 +53460,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51160,6 +53483,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51182,6 +53506,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51203,6 +53528,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51224,6 +53550,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51246,6 +53573,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51268,6 +53596,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51289,6 +53618,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51310,6 +53640,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51330,6 +53661,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51350,6 +53682,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51370,6 +53703,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51390,6 +53724,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51412,6 +53747,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51434,6 +53770,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51455,6 +53792,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51476,6 +53814,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51499,6 +53838,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51522,6 +53862,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51544,6 +53885,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51566,6 +53908,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51587,6 +53930,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51608,6 +53952,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51630,6 +53975,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51652,6 +53998,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51673,6 +54020,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51694,6 +54042,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51714,6 +54063,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51734,6 +54084,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51754,6 +54105,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51774,6 +54126,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51796,6 +54149,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51818,6 +54172,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51839,6 +54194,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51860,6 +54216,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51883,6 +54240,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51906,6 +54264,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51928,6 +54287,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51950,6 +54310,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51971,6 +54332,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -51992,6 +54354,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52014,6 +54377,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52036,6 +54400,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52056,6 +54421,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52076,6 +54442,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52097,6 +54464,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52118,6 +54486,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52140,6 +54509,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52162,6 +54532,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52182,6 +54553,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52202,6 +54574,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52223,6 +54596,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52244,6 +54618,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52266,6 +54641,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52288,6 +54664,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52309,6 +54686,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52330,6 +54708,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52350,6 +54729,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52370,6 +54750,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52392,6 +54773,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52414,6 +54796,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52434,6 +54817,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52454,6 +54838,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52476,6 +54861,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52498,6 +54884,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52519,6 +54906,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52540,6 +54928,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52563,6 +54952,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52586,6 +54976,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52608,6 +54999,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52630,6 +55022,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52653,6 +55046,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52676,6 +55070,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52697,6 +55092,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52718,6 +55114,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52742,6 +55139,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52766,6 +55164,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52788,6 +55187,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52810,6 +55210,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52831,6 +55232,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52852,6 +55254,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52872,6 +55275,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52892,6 +55296,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52914,6 +55319,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52936,6 +55342,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52956,6 +55363,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52976,6 +55384,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -52998,6 +55407,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53020,6 +55430,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53041,6 +55452,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53062,6 +55474,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53085,6 +55498,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53108,6 +55522,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53130,6 +55545,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53152,6 +55568,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53175,6 +55592,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53198,6 +55616,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53219,6 +55638,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53240,6 +55660,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53264,6 +55685,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53288,6 +55710,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53310,6 +55733,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53332,6 +55756,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53353,6 +55778,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53374,6 +55800,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53394,6 +55821,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53414,6 +55842,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53436,6 +55865,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53458,6 +55888,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53478,6 +55909,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53498,6 +55930,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53520,6 +55953,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53542,6 +55976,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53563,6 +55998,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53584,6 +56020,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53607,6 +56044,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53630,6 +56068,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53652,6 +56091,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53674,6 +56114,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53697,6 +56138,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53720,6 +56162,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53741,6 +56184,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53762,6 +56206,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53786,6 +56231,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53810,6 +56256,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53832,6 +56279,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53854,6 +56302,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53875,6 +56324,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53896,6 +56346,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53916,6 +56367,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53936,6 +56388,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53958,6 +56411,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -53980,6 +56434,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54000,6 +56455,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54020,6 +56476,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54042,6 +56499,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54064,6 +56522,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54085,6 +56544,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54106,6 +56566,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54129,6 +56590,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54152,6 +56614,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54174,6 +56637,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54196,6 +56660,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54219,6 +56684,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54242,6 +56708,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54263,6 +56730,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54284,6 +56752,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54308,6 +56777,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54332,6 +56802,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54354,6 +56825,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54376,6 +56848,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54397,6 +56870,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54418,6 +56892,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54438,6 +56913,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54458,6 +56934,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54480,6 +56957,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54502,6 +56980,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54522,6 +57001,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54542,6 +57022,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54564,6 +57045,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54586,6 +57068,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54607,6 +57090,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54628,6 +57112,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54651,6 +57136,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54674,6 +57160,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54696,6 +57183,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54718,6 +57206,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54741,6 +57230,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54764,6 +57254,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54785,6 +57276,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54806,6 +57298,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54830,6 +57323,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54854,6 +57348,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54876,6 +57371,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54898,6 +57394,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54919,6 +57416,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54940,6 +57438,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54960,6 +57459,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -54980,6 +57480,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55002,6 +57503,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55024,6 +57526,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55044,6 +57547,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55064,6 +57568,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55086,6 +57591,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55108,6 +57614,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55129,6 +57636,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55150,6 +57658,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55173,6 +57682,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55196,6 +57706,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55218,6 +57729,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55240,6 +57752,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55263,6 +57776,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55286,6 +57800,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55307,6 +57822,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55328,6 +57844,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55352,6 +57869,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55376,6 +57894,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55398,6 +57917,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55420,6 +57940,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55440,6 +57961,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55460,6 +57982,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55481,6 +58004,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55502,6 +58026,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55524,6 +58049,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55546,6 +58072,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55566,6 +58093,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55586,6 +58114,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55607,6 +58136,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55628,6 +58158,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55650,6 +58181,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55672,6 +58204,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55693,6 +58226,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55714,6 +58248,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55734,6 +58269,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55754,6 +58290,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55774,6 +58311,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55794,6 +58332,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55816,6 +58355,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55838,6 +58378,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55859,6 +58400,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55880,6 +58422,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55903,6 +58446,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55926,6 +58470,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55948,6 +58493,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55970,6 +58516,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -55991,6 +58538,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56012,6 +58560,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56034,6 +58583,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56056,6 +58606,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56077,6 +58628,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56098,6 +58650,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56118,6 +58671,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56138,6 +58692,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56158,6 +58713,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56178,6 +58734,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56200,6 +58757,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56222,6 +58780,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56243,6 +58802,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56264,6 +58824,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56287,6 +58848,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56310,6 +58872,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56332,6 +58895,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56354,6 +58918,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56375,6 +58940,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56396,6 +58962,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56418,6 +58985,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56440,6 +59008,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56461,6 +59030,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56482,6 +59052,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56502,6 +59073,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56522,6 +59094,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56542,6 +59115,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56562,6 +59136,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56584,6 +59159,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56606,6 +59182,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56627,6 +59204,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56648,6 +59226,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56671,6 +59250,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56694,6 +59274,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56716,6 +59297,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56738,6 +59320,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56759,6 +59342,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56780,6 +59364,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56802,6 +59387,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56824,6 +59410,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56845,6 +59432,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56866,6 +59454,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56886,6 +59475,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56906,6 +59496,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56926,6 +59517,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56946,6 +59538,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56968,6 +59561,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -56990,6 +59584,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57011,6 +59606,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57032,6 +59628,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57055,6 +59652,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57078,6 +59676,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57100,6 +59699,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57122,6 +59722,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57143,6 +59744,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57164,6 +59766,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57186,6 +59789,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57208,6 +59812,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57229,6 +59834,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57250,6 +59856,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57270,6 +59877,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57290,6 +59898,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57310,6 +59919,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57330,6 +59940,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57352,6 +59963,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57374,6 +59986,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57395,6 +60008,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57416,6 +60030,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57439,6 +60054,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57462,6 +60078,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57484,6 +60101,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57506,6 +60124,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57527,6 +60146,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57548,6 +60168,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57570,6 +60191,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57592,6 +60214,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57613,6 +60236,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57634,6 +60258,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57654,6 +60279,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57674,6 +60300,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57694,6 +60321,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57714,6 +60342,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57736,6 +60365,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57758,6 +60388,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57779,6 +60410,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57800,6 +60432,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57823,6 +60456,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57846,6 +60480,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57868,6 +60503,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57890,6 +60526,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57911,6 +60548,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57932,6 +60570,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57954,6 +60593,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57976,6 +60616,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -57996,6 +60637,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58016,6 +60658,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58037,6 +60680,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58058,6 +60702,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58080,6 +60725,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58102,6 +60748,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58122,6 +60769,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58142,6 +60790,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58163,6 +60812,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58184,6 +60834,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58206,6 +60857,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58228,6 +60880,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58249,6 +60902,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58270,6 +60924,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58290,6 +60945,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58310,6 +60966,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58332,6 +60989,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58354,6 +61012,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58374,6 +61033,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58394,6 +61054,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58416,6 +61077,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58438,6 +61100,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58459,6 +61122,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58480,6 +61144,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58503,6 +61168,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58526,6 +61192,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58548,6 +61215,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58570,6 +61238,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58593,6 +61262,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58616,6 +61286,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58637,6 +61308,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58658,6 +61330,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58682,6 +61355,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58706,6 +61380,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58728,6 +61403,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58750,6 +61426,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58771,6 +61448,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58792,6 +61470,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58812,6 +61491,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58832,6 +61512,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58854,6 +61535,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58876,6 +61558,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58896,6 +61579,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58916,6 +61600,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58938,6 +61623,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58960,6 +61646,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -58981,6 +61668,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59002,6 +61690,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59025,6 +61714,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59048,6 +61738,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59070,6 +61761,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59092,6 +61784,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59115,6 +61808,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59138,6 +61832,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59159,6 +61854,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59180,6 +61876,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59204,6 +61901,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59228,6 +61926,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59250,6 +61949,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59272,6 +61972,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59293,6 +61994,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59314,6 +62016,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59334,6 +62037,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59354,6 +62058,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59376,6 +62081,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59398,6 +62104,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59418,6 +62125,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59438,6 +62146,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59460,6 +62169,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59482,6 +62192,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59503,6 +62214,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59524,6 +62236,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59547,6 +62260,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59570,6 +62284,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59592,6 +62307,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59614,6 +62330,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59637,6 +62354,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59660,6 +62378,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59681,6 +62400,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59702,6 +62422,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59726,6 +62447,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59750,6 +62472,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59772,6 +62495,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59794,6 +62518,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59815,6 +62540,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59836,6 +62562,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59856,6 +62583,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59876,6 +62604,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59898,6 +62627,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59920,6 +62650,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59940,6 +62671,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59960,6 +62692,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59982,6 +62715,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60004,6 +62738,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60025,6 +62760,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60046,6 +62782,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60069,6 +62806,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60092,6 +62830,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60114,6 +62853,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60136,6 +62876,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60159,6 +62900,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60182,6 +62924,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60203,6 +62946,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60224,6 +62968,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60248,6 +62993,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60272,6 +63018,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60294,6 +63041,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60316,6 +63064,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60337,6 +63086,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60358,6 +63108,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60378,6 +63129,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60398,6 +63150,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60420,6 +63173,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60442,6 +63196,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60462,6 +63217,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60482,6 +63238,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60504,6 +63261,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60526,6 +63284,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60547,6 +63306,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60568,6 +63328,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60591,6 +63352,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60614,6 +63376,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60636,6 +63399,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60658,6 +63422,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60681,6 +63446,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60704,6 +63470,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60725,6 +63492,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60746,6 +63514,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60770,6 +63539,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60794,6 +63564,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60816,6 +63587,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60838,6 +63610,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60859,6 +63632,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60880,6 +63654,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60900,6 +63675,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60920,6 +63696,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60942,6 +63719,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60964,6 +63742,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -60984,6 +63763,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61004,6 +63784,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61026,6 +63807,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61048,6 +63830,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61069,6 +63852,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61090,6 +63874,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61113,6 +63898,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61136,6 +63922,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61158,6 +63945,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61180,6 +63968,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61203,6 +63992,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61226,6 +64016,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61247,6 +64038,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61268,6 +64060,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61292,6 +64085,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61316,6 +64110,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61338,6 +64133,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61360,6 +64156,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61380,6 +64177,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61400,6 +64198,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61421,6 +64220,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61442,6 +64242,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61464,6 +64265,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61486,6 +64288,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61506,6 +64309,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61526,6 +64330,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61547,6 +64352,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61568,6 +64374,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61590,6 +64397,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61612,6 +64420,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61633,6 +64442,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61654,6 +64464,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61674,6 +64485,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61694,6 +64506,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61714,6 +64527,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61734,6 +64548,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61756,6 +64571,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61778,6 +64594,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61799,6 +64616,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61820,6 +64638,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61843,6 +64662,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61866,6 +64686,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61888,6 +64709,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61910,6 +64732,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61931,6 +64754,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61952,6 +64776,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61974,6 +64799,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -61996,6 +64822,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62017,6 +64844,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62038,6 +64866,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62058,6 +64887,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62078,6 +64908,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62098,6 +64929,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62118,6 +64950,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62140,6 +64973,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62162,6 +64996,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62183,6 +65018,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62204,6 +65040,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62227,6 +65064,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62250,6 +65088,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62272,6 +65111,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62294,6 +65134,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62315,6 +65156,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62336,6 +65178,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62358,6 +65201,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62380,6 +65224,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62401,6 +65246,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62422,6 +65268,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62442,6 +65289,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62462,6 +65310,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62482,6 +65331,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62502,6 +65352,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62524,6 +65375,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62546,6 +65398,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62567,6 +65420,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62588,6 +65442,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62611,6 +65466,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62634,6 +65490,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62656,6 +65513,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62678,6 +65536,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62699,6 +65558,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62720,6 +65580,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62742,6 +65603,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62764,6 +65626,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62785,6 +65648,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62806,6 +65670,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62826,6 +65691,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62846,6 +65712,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62866,6 +65733,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62886,6 +65754,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62908,6 +65777,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62930,6 +65800,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62951,6 +65822,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62972,6 +65844,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -62995,6 +65868,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63018,6 +65892,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63040,6 +65915,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63062,6 +65938,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63083,6 +65960,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63104,6 +65982,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63126,6 +66005,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63148,6 +66028,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63169,6 +66050,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63190,6 +66072,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63210,6 +66093,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63230,6 +66114,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63250,6 +66135,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63270,6 +66156,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63292,6 +66179,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63314,6 +66202,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63335,6 +66224,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63356,6 +66246,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63379,6 +66270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63402,6 +66294,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63424,6 +66317,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63446,6 +66340,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63467,6 +66362,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63488,6 +66384,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63510,6 +66407,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63532,6 +66430,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63553,6 +66452,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63574,6 +66474,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63594,6 +66495,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63614,6 +66516,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63634,6 +66537,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63654,6 +66558,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63676,6 +66581,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63698,6 +66604,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63719,6 +66626,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63740,6 +66648,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63763,6 +66672,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63786,6 +66696,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63808,6 +66719,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63830,6 +66742,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63851,6 +66764,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63872,6 +66786,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63894,6 +66809,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63916,6 +66832,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63936,6 +66853,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63956,6 +66874,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63977,6 +66896,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -63998,6 +66918,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64020,6 +66941,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64042,6 +66964,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64062,6 +66985,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64082,6 +67006,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64103,6 +67028,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64124,6 +67050,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64146,6 +67073,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64316,6 +67244,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64336,6 +67265,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64356,6 +67286,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64375,6 +67306,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64394,6 +67326,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64415,6 +67348,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64436,6 +67370,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64455,6 +67390,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64474,6 +67410,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64495,6 +67432,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64516,6 +67454,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64536,6 +67475,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64556,6 +67496,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64578,6 +67519,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64600,6 +67542,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64621,6 +67564,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64642,6 +67586,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64664,6 +67609,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64686,6 +67632,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64706,6 +67653,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64726,6 +67674,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64749,6 +67698,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64772,6 +67722,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64793,6 +67744,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64814,6 +67766,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64834,6 +67787,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64854,6 +67808,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64873,6 +67828,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64892,6 +67848,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64913,6 +67870,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64934,6 +67892,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64953,6 +67912,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64972,6 +67932,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -64993,6 +67954,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65014,6 +67976,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65034,6 +67997,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65054,6 +68018,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65076,6 +68041,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65098,6 +68064,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65119,6 +68086,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65140,6 +68108,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65162,6 +68131,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65184,6 +68154,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65204,6 +68175,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65224,6 +68196,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65247,6 +68220,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65270,6 +68244,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65291,6 +68266,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65312,6 +68288,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65332,6 +68309,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65352,6 +68330,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65371,6 +68350,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65390,6 +68370,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65411,6 +68392,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65432,6 +68414,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65451,6 +68434,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65470,6 +68454,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65491,6 +68476,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65512,6 +68498,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65532,6 +68519,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65552,6 +68540,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65574,6 +68563,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65596,6 +68586,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65617,6 +68608,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65638,6 +68630,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65660,6 +68653,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65682,6 +68676,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65702,6 +68697,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65722,6 +68718,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65745,6 +68742,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65768,6 +68766,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65789,6 +68788,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65810,6 +68810,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65829,6 +68830,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65848,6 +68850,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65868,6 +68871,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65888,6 +68892,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65909,6 +68914,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65930,6 +68936,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65950,6 +68957,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65970,6 +68978,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -65989,6 +68998,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66008,6 +69018,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66029,6 +69040,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66050,6 +69062,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66069,6 +69082,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66088,6 +69102,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66109,6 +69124,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66130,6 +69146,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66150,6 +69167,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66170,6 +69188,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66192,6 +69211,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66214,6 +69234,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66235,6 +69256,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66256,6 +69278,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66278,6 +69301,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66300,6 +69324,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66320,6 +69345,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66340,6 +69366,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66363,6 +69390,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66386,6 +69414,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66407,6 +69436,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66428,6 +69458,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66448,6 +69479,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66468,6 +69500,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66487,6 +69520,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66506,6 +69540,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66527,6 +69562,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66548,6 +69584,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66567,6 +69604,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66586,6 +69624,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66607,6 +69646,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66628,6 +69668,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66648,6 +69689,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66668,6 +69710,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66690,6 +69733,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66712,6 +69756,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66733,6 +69778,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66754,6 +69800,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66776,6 +69823,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66798,6 +69846,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66818,6 +69867,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66838,6 +69888,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66861,6 +69912,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66884,6 +69936,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66905,6 +69958,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66926,6 +69980,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66946,6 +70001,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66966,6 +70022,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -66985,6 +70042,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67004,6 +70062,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67025,6 +70084,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67046,6 +70106,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67065,6 +70126,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67084,6 +70146,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67105,6 +70168,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67126,6 +70190,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67146,6 +70211,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67166,6 +70232,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67188,6 +70255,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67210,6 +70278,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67231,6 +70300,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67252,6 +70322,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67274,6 +70345,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67296,6 +70368,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67316,6 +70389,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67336,6 +70410,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67359,6 +70434,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67382,6 +70458,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67403,6 +70480,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67424,6 +70502,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67443,6 +70522,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67462,6 +70542,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67482,6 +70563,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67502,6 +70584,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67523,6 +70606,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67544,6 +70628,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67563,6 +70648,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67582,6 +70668,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67600,6 +70687,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67618,6 +70706,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67636,6 +70725,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67654,6 +70744,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67673,6 +70764,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67692,6 +70784,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67710,6 +70803,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67728,6 +70822,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67746,6 +70841,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67764,6 +70860,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67783,6 +70880,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67802,6 +70900,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67820,6 +70919,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67838,6 +70938,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67856,6 +70957,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67874,6 +70976,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67892,6 +70995,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67910,6 +71014,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67930,6 +71035,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67950,6 +71056,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67969,6 +71076,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -67988,6 +71096,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68009,6 +71118,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68030,6 +71140,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68049,6 +71160,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68068,6 +71180,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68089,6 +71202,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68110,6 +71224,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68130,6 +71245,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68150,6 +71266,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68172,6 +71289,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68194,6 +71312,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68215,6 +71334,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68236,6 +71356,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68258,6 +71379,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68280,6 +71402,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68300,6 +71423,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68320,6 +71444,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68343,6 +71468,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68366,6 +71492,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68387,6 +71514,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68408,6 +71536,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68428,6 +71557,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68448,6 +71578,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68467,6 +71598,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68486,6 +71618,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68507,6 +71640,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68528,6 +71662,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68547,6 +71682,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68566,6 +71702,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68587,6 +71724,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68608,6 +71746,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68628,6 +71767,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68648,6 +71788,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68670,6 +71811,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68692,6 +71834,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68713,6 +71856,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68734,6 +71878,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68756,6 +71901,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68778,6 +71924,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68798,6 +71945,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68818,6 +71966,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68841,6 +71990,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68864,6 +72014,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68885,6 +72036,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68906,6 +72058,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68926,6 +72079,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68946,6 +72100,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68965,6 +72120,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -68984,6 +72140,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69005,6 +72162,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69026,6 +72184,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69045,6 +72204,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69064,6 +72224,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69085,6 +72246,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69106,6 +72268,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69126,6 +72289,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69146,6 +72310,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69168,6 +72333,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69190,6 +72356,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69211,6 +72378,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69232,6 +72400,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69254,6 +72423,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69276,6 +72446,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69296,6 +72467,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69316,6 +72488,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69339,6 +72512,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69362,6 +72536,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69383,6 +72558,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69404,6 +72580,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69423,6 +72600,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69442,6 +72620,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69462,6 +72641,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69482,6 +72662,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69503,6 +72684,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69524,6 +72706,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69544,6 +72727,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69564,6 +72748,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69583,6 +72768,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69602,6 +72788,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69623,6 +72810,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69644,6 +72832,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69663,6 +72852,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69682,6 +72872,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69703,6 +72894,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69724,6 +72916,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69744,6 +72937,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69764,6 +72958,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69786,6 +72981,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69808,6 +73004,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69829,6 +73026,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69850,6 +73048,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69872,6 +73071,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69894,6 +73094,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69914,6 +73115,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69934,6 +73136,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69957,6 +73160,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -69980,6 +73184,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70001,6 +73206,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70022,6 +73228,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70042,6 +73249,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70062,6 +73270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70081,6 +73290,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70100,6 +73310,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70121,6 +73332,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70142,6 +73354,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70161,6 +73374,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70180,6 +73394,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70201,6 +73416,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70222,6 +73438,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70242,6 +73459,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70262,6 +73480,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70284,6 +73503,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70306,6 +73526,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70327,6 +73548,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70348,6 +73570,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70370,6 +73593,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70392,6 +73616,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70412,6 +73637,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70432,6 +73658,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70455,6 +73682,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70478,6 +73706,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70499,6 +73728,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70520,6 +73750,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70540,6 +73771,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70560,6 +73792,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70579,6 +73812,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70598,6 +73832,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70619,6 +73854,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70640,6 +73876,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70659,6 +73896,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70678,6 +73916,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70699,6 +73938,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70720,6 +73960,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70740,6 +73981,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70760,6 +74002,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70782,6 +74025,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70804,6 +74048,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70825,6 +74070,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70846,6 +74092,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70868,6 +74115,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70890,6 +74138,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70910,6 +74159,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70930,6 +74180,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70953,6 +74204,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70976,6 +74228,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -70997,6 +74250,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71018,6 +74272,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71037,6 +74292,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71056,6 +74312,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71076,6 +74333,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71096,6 +74354,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71117,6 +74376,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71138,6 +74398,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71157,6 +74418,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71176,6 +74438,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71194,6 +74457,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71212,6 +74476,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71230,6 +74495,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71248,6 +74514,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71267,6 +74534,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71286,6 +74554,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71304,6 +74573,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71322,6 +74592,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71340,6 +74611,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71358,6 +74630,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71377,6 +74650,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71396,6 +74670,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71414,6 +74689,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71432,6 +74708,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71450,6 +74727,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71468,6 +74746,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71487,6 +74766,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71506,6 +74786,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71524,6 +74805,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71542,6 +74824,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71560,6 +74843,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71578,6 +74862,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71597,6 +74882,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71616,6 +74902,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71634,6 +74921,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71652,6 +74940,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71670,6 +74959,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71688,6 +74978,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71707,6 +74998,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71726,6 +75018,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71744,6 +75037,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71762,6 +75056,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71780,6 +75075,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71798,6 +75094,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71816,6 +75113,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71834,6 +75132,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71852,6 +75151,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71870,6 +75170,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71890,6 +75191,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71910,6 +75212,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71929,6 +75232,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71948,6 +75252,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71969,6 +75274,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -71990,6 +75296,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72009,6 +75316,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72028,6 +75336,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72049,6 +75358,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72070,6 +75380,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72090,6 +75401,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72110,6 +75422,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72132,6 +75445,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72154,6 +75468,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72175,6 +75490,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72196,6 +75512,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72218,6 +75535,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72240,6 +75558,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72260,6 +75579,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72280,6 +75600,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72303,6 +75624,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72326,6 +75648,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72347,6 +75670,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72368,6 +75692,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72388,6 +75713,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72408,6 +75734,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72427,6 +75754,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72446,6 +75774,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72467,6 +75796,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72488,6 +75818,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72507,6 +75838,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72526,6 +75858,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72547,6 +75880,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72568,6 +75902,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72588,6 +75923,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72608,6 +75944,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72630,6 +75967,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72652,6 +75990,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72673,6 +76012,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72694,6 +76034,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72716,6 +76057,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72738,6 +76080,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72758,6 +76101,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72778,6 +76122,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72801,6 +76146,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72824,6 +76170,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72845,6 +76192,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72866,6 +76214,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72886,6 +76235,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72906,6 +76256,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72925,6 +76276,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72944,6 +76296,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72965,6 +76318,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -72986,6 +76340,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73005,6 +76360,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73024,6 +76380,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73045,6 +76402,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73066,6 +76424,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73086,6 +76445,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73106,6 +76466,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73128,6 +76489,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73150,6 +76512,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73171,6 +76534,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73192,6 +76556,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73214,6 +76579,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73236,6 +76602,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73256,6 +76623,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73276,6 +76644,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73299,6 +76668,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73322,6 +76692,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73343,6 +76714,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73364,6 +76736,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73383,6 +76756,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73402,6 +76776,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73422,6 +76797,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73442,6 +76818,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73463,6 +76840,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73484,6 +76862,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73504,6 +76883,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73524,6 +76904,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73543,6 +76924,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73562,6 +76944,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73583,6 +76966,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73604,6 +76988,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73623,6 +77008,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73642,6 +77028,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73663,6 +77050,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73684,6 +77072,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73704,6 +77093,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73724,6 +77114,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73746,6 +77137,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73768,6 +77160,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73789,6 +77182,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73810,6 +77204,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73832,6 +77227,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73854,6 +77250,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73874,6 +77271,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73894,6 +77292,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73917,6 +77316,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73940,6 +77340,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73961,6 +77362,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -73982,6 +77384,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74002,6 +77405,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74022,6 +77426,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74041,6 +77446,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74060,6 +77466,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74081,6 +77488,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74102,6 +77510,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74121,6 +77530,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74140,6 +77550,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74161,6 +77572,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74182,6 +77594,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74202,6 +77615,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74222,6 +77636,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74244,6 +77659,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74266,6 +77682,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74287,6 +77704,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74308,6 +77726,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74330,6 +77749,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74352,6 +77772,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74372,6 +77793,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74392,6 +77814,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74415,6 +77838,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74438,6 +77862,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74459,6 +77884,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74480,6 +77906,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74500,6 +77927,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74520,6 +77948,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74539,6 +77968,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74558,6 +77988,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74579,6 +78010,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74600,6 +78032,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74619,6 +78052,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74638,6 +78072,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74659,6 +78094,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74680,6 +78116,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74700,6 +78137,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74720,6 +78158,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74742,6 +78181,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74764,6 +78204,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74785,6 +78226,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74806,6 +78248,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74828,6 +78271,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74850,6 +78294,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74870,6 +78315,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74890,6 +78336,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74913,6 +78360,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74936,6 +78384,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74957,6 +78406,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74978,6 +78428,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -74998,6 +78449,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75018,6 +78470,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75037,6 +78490,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75056,6 +78510,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75077,6 +78532,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75098,6 +78554,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75117,6 +78574,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75136,6 +78594,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75157,6 +78616,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75178,6 +78638,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75198,6 +78659,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75218,6 +78680,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75240,6 +78703,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75262,6 +78726,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75283,6 +78748,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75304,6 +78770,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75326,6 +78793,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75348,6 +78816,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75368,6 +78837,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75388,6 +78858,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75411,6 +78882,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75434,6 +78906,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75455,6 +78928,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75476,6 +78950,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75496,6 +78971,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75516,6 +78992,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75535,6 +79012,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75554,6 +79032,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75575,6 +79054,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75596,6 +79076,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75615,6 +79096,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75634,6 +79116,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75655,6 +79138,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75676,6 +79160,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75696,6 +79181,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75716,6 +79202,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75738,6 +79225,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75760,6 +79248,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75781,6 +79270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75802,6 +79292,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75824,6 +79315,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75846,6 +79338,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75866,6 +79359,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75886,6 +79380,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75909,6 +79404,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75932,6 +79428,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75953,6 +79450,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75974,6 +79472,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -75994,6 +79493,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76014,6 +79514,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76033,6 +79534,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76052,6 +79554,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76073,6 +79576,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76094,6 +79598,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76113,6 +79618,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76132,6 +79638,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76153,6 +79660,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76174,6 +79682,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76194,6 +79703,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76214,6 +79724,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76236,6 +79747,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76258,6 +79770,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76279,6 +79792,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76300,6 +79814,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76322,6 +79837,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76344,6 +79860,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76364,6 +79881,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76384,6 +79902,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76407,6 +79926,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76430,6 +79950,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76451,6 +79972,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76472,6 +79994,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76491,6 +80014,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76510,6 +80034,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76530,6 +80055,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76550,6 +80076,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76571,6 +80098,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76592,6 +80120,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76611,6 +80140,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76630,6 +80160,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76650,6 +80181,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76670,6 +80202,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76691,6 +80224,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76712,6 +80246,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76732,6 +80267,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76752,6 +80288,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76771,6 +80308,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76790,6 +80328,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76811,6 +80350,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76832,6 +80372,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76851,6 +80392,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76870,6 +80412,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76891,6 +80434,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76912,6 +80456,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76932,6 +80477,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76952,6 +80498,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76974,6 +80521,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -76996,6 +80544,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77017,6 +80566,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77038,6 +80588,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77060,6 +80611,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77082,6 +80634,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77102,6 +80655,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77122,6 +80676,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77145,6 +80700,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77168,6 +80724,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77189,6 +80746,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77210,6 +80768,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77230,6 +80789,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77250,6 +80810,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77269,6 +80830,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77288,6 +80850,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77309,6 +80872,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77330,6 +80894,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77349,6 +80914,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77368,6 +80934,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77389,6 +80956,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77410,6 +80978,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77430,6 +80999,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77450,6 +81020,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77472,6 +81043,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77494,6 +81066,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77515,6 +81088,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77536,6 +81110,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77558,6 +81133,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77580,6 +81156,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77600,6 +81177,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77620,6 +81198,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77643,6 +81222,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77666,6 +81246,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77687,6 +81268,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77708,6 +81290,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77728,6 +81311,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77748,6 +81332,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77767,6 +81352,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77786,6 +81372,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77807,6 +81394,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77828,6 +81416,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77847,6 +81436,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77866,6 +81456,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77887,6 +81478,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77908,6 +81500,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77928,6 +81521,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77948,6 +81542,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77970,6 +81565,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -77992,6 +81588,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78013,6 +81610,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78034,6 +81632,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78056,6 +81655,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78078,6 +81678,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78098,6 +81699,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78118,6 +81720,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78141,6 +81744,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78164,6 +81768,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78185,6 +81790,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78206,6 +81812,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78225,6 +81832,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78244,6 +81852,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78264,6 +81873,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78284,6 +81894,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78305,6 +81916,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: None Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78326,6 +81938,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78346,6 +81959,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78366,6 +81980,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78385,6 +82000,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78404,6 +82020,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78423,6 +82040,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78442,6 +82060,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78462,6 +82081,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78482,6 +82102,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78501,6 +82122,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78520,6 +82142,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78539,6 +82162,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78558,6 +82182,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78578,6 +82203,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78598,6 +82224,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78617,6 +82244,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78636,6 +82264,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78655,6 +82284,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78674,6 +82304,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78694,6 +82325,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78714,6 +82346,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78733,6 +82366,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78752,6 +82386,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78771,6 +82406,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78790,6 +82426,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78810,6 +82447,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78830,6 +82468,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78849,6 +82488,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78868,6 +82508,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78887,6 +82528,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78906,6 +82548,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78926,6 +82569,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78946,6 +82590,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78965,6 +82610,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78984,6 +82630,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79003,6 +82650,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79022,6 +82670,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79042,6 +82691,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79062,6 +82712,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79081,6 +82732,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79100,6 +82752,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79119,6 +82772,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79138,6 +82792,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79158,6 +82813,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79178,6 +82834,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79197,6 +82854,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79216,6 +82874,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79235,6 +82894,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79254,6 +82914,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79274,6 +82935,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79294,6 +82956,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79313,6 +82976,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79332,6 +82996,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79351,6 +83016,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79370,6 +83036,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79390,6 +83057,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79410,6 +83078,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79429,6 +83098,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79448,6 +83118,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79467,6 +83138,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79486,6 +83158,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79506,6 +83179,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79526,6 +83200,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79545,6 +83220,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79564,6 +83240,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79583,6 +83260,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79602,6 +83280,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79622,6 +83301,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79642,6 +83322,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79661,6 +83342,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79680,6 +83362,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79699,6 +83382,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79718,6 +83402,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79737,6 +83422,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79756,6 +83442,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79775,6 +83462,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79794,6 +83482,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79813,6 +83502,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79832,6 +83522,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79851,6 +83542,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3NF + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79870,6 +83562,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79890,6 +83583,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79910,6 +83604,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79929,6 +83624,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79948,6 +83644,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79969,6 +83666,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -79990,6 +83688,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80009,6 +83708,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80028,6 +83728,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80049,6 +83750,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80070,6 +83772,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80090,6 +83793,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80110,6 +83814,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80132,6 +83837,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80154,6 +83860,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80175,6 +83882,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80196,6 +83904,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80218,6 +83927,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80240,6 +83950,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80260,6 +83971,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80280,6 +83992,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80303,6 +84016,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80326,6 +84040,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80347,6 +84062,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80368,6 +84084,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80388,6 +84105,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80408,6 +84126,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80427,6 +84146,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80446,6 +84166,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80467,6 +84188,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80488,6 +84210,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80507,6 +84230,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80526,6 +84250,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80547,6 +84272,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80568,6 +84294,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80588,6 +84315,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80608,6 +84336,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80630,6 +84359,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80652,6 +84382,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80673,6 +84404,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80694,6 +84426,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80716,6 +84449,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80738,6 +84472,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80758,6 +84493,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80778,6 +84514,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80801,6 +84538,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80824,6 +84562,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80845,6 +84584,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80866,6 +84606,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80886,6 +84627,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80906,6 +84648,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80925,6 +84668,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80944,6 +84688,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80965,6 +84710,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -80986,6 +84732,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81005,6 +84752,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81024,6 +84772,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81045,6 +84794,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81066,6 +84816,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81086,6 +84837,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81106,6 +84858,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81128,6 +84881,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81150,6 +84904,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81171,6 +84926,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81192,6 +84948,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81214,6 +84971,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81236,6 +84994,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81256,6 +85015,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81276,6 +85036,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81299,6 +85060,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81322,6 +85084,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81343,6 +85106,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81364,6 +85128,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81383,6 +85148,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81402,6 +85168,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81422,6 +85189,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81442,6 +85210,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81463,6 +85232,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81484,6 +85254,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81504,6 +85275,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81524,6 +85296,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81543,6 +85316,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81562,6 +85336,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81583,6 +85358,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81604,6 +85380,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81623,6 +85400,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81642,6 +85420,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81663,6 +85442,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81684,6 +85464,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81704,6 +85485,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81724,6 +85506,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81746,6 +85529,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81768,6 +85552,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81789,6 +85574,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81810,6 +85596,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81832,6 +85619,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81854,6 +85642,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81874,6 +85663,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81894,6 +85684,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81917,6 +85708,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81940,6 +85732,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81961,6 +85754,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -81982,6 +85776,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82002,6 +85797,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82022,6 +85818,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82041,6 +85838,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82060,6 +85858,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82081,6 +85880,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82102,6 +85902,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82121,6 +85922,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82140,6 +85942,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82161,6 +85964,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82182,6 +85986,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82202,6 +86007,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82222,6 +86028,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82244,6 +86051,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82266,6 +86074,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82287,6 +86096,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82308,6 +86118,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82330,6 +86141,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82352,6 +86164,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82372,6 +86185,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82392,6 +86206,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82415,6 +86230,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82438,6 +86254,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82459,6 +86276,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82480,6 +86298,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82500,6 +86319,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82520,6 +86340,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82539,6 +86360,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82558,6 +86380,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82579,6 +86402,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82600,6 +86424,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82619,6 +86444,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82638,6 +86464,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82659,6 +86486,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82680,6 +86508,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82700,6 +86529,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82720,6 +86550,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82742,6 +86573,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82764,6 +86596,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82785,6 +86618,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82806,6 +86640,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82828,6 +86663,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82850,6 +86686,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82870,6 +86707,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82890,6 +86728,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82913,6 +86752,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82936,6 +86776,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82957,6 +86798,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82978,6 +86820,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -82997,6 +86840,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83016,6 +86860,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83036,6 +86881,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83056,6 +86902,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83077,6 +86924,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83098,6 +86946,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83118,6 +86967,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83138,6 +86988,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83157,6 +87008,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83176,6 +87028,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83197,6 +87050,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83218,6 +87072,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83237,6 +87092,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83256,6 +87112,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83277,6 +87134,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83298,6 +87156,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83318,6 +87177,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83338,6 +87198,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83360,6 +87221,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83382,6 +87244,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83403,6 +87266,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83424,6 +87288,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83446,6 +87311,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83468,6 +87334,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83488,6 +87355,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83508,6 +87376,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83531,6 +87400,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83554,6 +87424,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83575,6 +87446,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83596,6 +87468,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83616,6 +87489,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83636,6 +87510,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83655,6 +87530,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83674,6 +87550,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83695,6 +87572,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83716,6 +87594,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83735,6 +87614,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83754,6 +87634,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83775,6 +87656,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83796,6 +87678,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83816,6 +87699,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83836,6 +87720,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83858,6 +87743,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83880,6 +87766,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83901,6 +87788,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83922,6 +87810,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83944,6 +87833,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83966,6 +87856,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -83986,6 +87877,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84006,6 +87898,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84029,6 +87922,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84052,6 +87946,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84073,6 +87968,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84094,6 +87990,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84114,6 +88011,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84134,6 +88032,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84153,6 +88052,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84172,6 +88072,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84193,6 +88094,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84214,6 +88116,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84233,6 +88136,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84252,6 +88156,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84273,6 +88178,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84294,6 +88200,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84314,6 +88221,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84334,6 +88242,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84356,6 +88265,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84378,6 +88288,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84399,6 +88310,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84420,6 +88332,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84442,6 +88355,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84464,6 +88378,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84484,6 +88399,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84504,6 +88420,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84527,6 +88444,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84550,6 +88468,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84571,6 +88490,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84592,6 +88512,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84611,6 +88532,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84630,6 +88552,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84650,6 +88573,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84670,6 +88594,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84691,6 +88616,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84712,6 +88638,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84732,6 +88659,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84752,6 +88680,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84771,6 +88700,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84790,6 +88720,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84811,6 +88742,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84832,6 +88764,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84851,6 +88784,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84870,6 +88804,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84891,6 +88826,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84912,6 +88848,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84932,6 +88869,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84952,6 +88890,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84974,6 +88913,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -84996,6 +88936,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85017,6 +88958,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85038,6 +88980,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85060,6 +89003,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85082,6 +89026,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85102,6 +89047,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85122,6 +89068,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85145,6 +89092,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85168,6 +89116,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85189,6 +89138,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85210,6 +89160,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85230,6 +89181,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85250,6 +89202,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85269,6 +89222,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85288,6 +89242,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85309,6 +89264,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85330,6 +89286,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85349,6 +89306,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85368,6 +89326,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85389,6 +89348,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85410,6 +89370,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85430,6 +89391,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85450,6 +89412,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85472,6 +89435,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85494,6 +89458,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85515,6 +89480,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85536,6 +89502,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85558,6 +89525,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85580,6 +89548,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85600,6 +89569,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85620,6 +89590,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85643,6 +89614,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85666,6 +89638,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85687,6 +89660,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85708,6 +89682,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85728,6 +89703,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85748,6 +89724,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85767,6 +89744,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85786,6 +89764,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85807,6 +89786,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85828,6 +89808,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85847,6 +89828,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85866,6 +89848,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85887,6 +89870,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85908,6 +89892,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85928,6 +89913,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85948,6 +89934,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85970,6 +89957,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -85992,6 +89980,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86013,6 +90002,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86034,6 +90024,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86056,6 +90047,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86078,6 +90070,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86098,6 +90091,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86118,6 +90112,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86141,6 +90136,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86164,6 +90160,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86185,6 +90182,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86206,6 +90204,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86225,6 +90224,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86244,6 +90244,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86264,6 +90265,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86284,6 +90286,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86305,6 +90308,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86326,6 +90330,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86346,6 +90351,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86366,6 +90372,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86385,6 +90392,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86404,6 +90412,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86425,6 +90434,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86446,6 +90456,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86465,6 +90476,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86484,6 +90496,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86505,6 +90518,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86526,6 +90540,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86546,6 +90561,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86566,6 +90582,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86588,6 +90605,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86610,6 +90628,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86631,6 +90650,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86652,6 +90672,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86674,6 +90695,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86696,6 +90718,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86716,6 +90739,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86736,6 +90760,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86759,6 +90784,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86782,6 +90808,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86803,6 +90830,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86824,6 +90852,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86844,6 +90873,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86864,6 +90894,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86883,6 +90914,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86902,6 +90934,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86923,6 +90956,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86944,6 +90978,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86963,6 +90998,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -86982,6 +91018,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87003,6 +91040,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87024,6 +91062,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87044,6 +91083,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87064,6 +91104,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87086,6 +91127,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87108,6 +91150,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87129,6 +91172,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87150,6 +91194,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87172,6 +91217,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87194,6 +91240,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87214,6 +91261,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87234,6 +91282,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87257,6 +91306,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87280,6 +91330,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87301,6 +91352,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87322,6 +91374,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87342,6 +91395,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87362,6 +91416,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87381,6 +91436,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87400,6 +91456,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87421,6 +91478,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87442,6 +91500,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87461,6 +91520,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87480,6 +91540,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87501,6 +91562,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87522,6 +91584,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87542,6 +91605,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87562,6 +91626,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87584,6 +91649,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87606,6 +91672,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87627,6 +91694,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87648,6 +91716,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87670,6 +91739,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87692,6 +91762,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87712,6 +91783,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87732,6 +91804,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87755,6 +91828,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87778,6 +91852,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87799,6 +91874,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87820,6 +91896,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87839,6 +91916,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87858,6 +91936,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87878,6 +91957,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87898,6 +91978,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87919,6 +92000,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87940,6 +92022,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87960,6 +92043,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87980,6 +92064,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -87999,6 +92084,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88018,6 +92104,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88039,6 +92126,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88060,6 +92148,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88079,6 +92168,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88098,6 +92188,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88119,6 +92210,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88140,6 +92232,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88160,6 +92253,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88180,6 +92274,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88202,6 +92297,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88224,6 +92320,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88245,6 +92342,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88266,6 +92364,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88288,6 +92387,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88310,6 +92410,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88330,6 +92431,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88350,6 +92452,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88373,6 +92476,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88396,6 +92500,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88417,6 +92522,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88438,6 +92544,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88458,6 +92565,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88478,6 +92586,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88497,6 +92606,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88516,6 +92626,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88537,6 +92648,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88558,6 +92670,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88577,6 +92690,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88596,6 +92710,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88617,6 +92732,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88638,6 +92754,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88658,6 +92775,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88678,6 +92796,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88700,6 +92819,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88722,6 +92842,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88743,6 +92864,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88764,6 +92886,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88786,6 +92909,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88808,6 +92932,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88828,6 +92953,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88848,6 +92974,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88871,6 +92998,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88894,6 +93022,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88915,6 +93044,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88936,6 +93066,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88956,6 +93087,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88976,6 +93108,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -88995,6 +93128,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89014,6 +93148,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89035,6 +93170,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89056,6 +93192,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89075,6 +93212,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89094,6 +93232,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89115,6 +93254,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89136,6 +93276,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89156,6 +93297,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89176,6 +93318,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89198,6 +93341,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89220,6 +93364,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89241,6 +93386,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89262,6 +93408,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89284,6 +93431,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89306,6 +93454,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89326,6 +93475,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89346,6 +93496,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89369,6 +93520,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89392,6 +93544,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89413,6 +93566,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89434,6 +93588,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89453,6 +93608,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89472,6 +93628,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89492,6 +93649,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89512,6 +93670,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89533,6 +93692,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: OP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89702,6 +93862,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89723,6 +93884,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89744,6 +93906,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89764,6 +93927,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89784,6 +93948,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89804,6 +93969,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89824,6 +93990,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89846,6 +94013,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89868,6 +94036,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89889,6 +94058,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89910,6 +94080,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89933,6 +94104,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89956,6 +94128,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -89978,6 +94151,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90000,6 +94174,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90021,6 +94196,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90042,6 +94218,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90064,6 +94241,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90086,6 +94264,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90107,6 +94286,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90128,6 +94308,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90148,6 +94329,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90168,6 +94350,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90188,6 +94371,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90208,6 +94392,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90230,6 +94415,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90252,6 +94438,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90273,6 +94460,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90294,6 +94482,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90317,6 +94506,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90340,6 +94530,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90362,6 +94553,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90384,6 +94576,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90405,6 +94598,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90426,6 +94620,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90448,6 +94643,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90470,6 +94666,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90491,6 +94688,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90512,6 +94710,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90532,6 +94731,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90552,6 +94752,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90572,6 +94773,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90592,6 +94794,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90614,6 +94817,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90636,6 +94840,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90657,6 +94862,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90678,6 +94884,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90701,6 +94908,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90724,6 +94932,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90746,6 +94955,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90768,6 +94978,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90789,6 +95000,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90810,6 +95022,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90832,6 +95045,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90854,6 +95068,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90875,6 +95090,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90896,6 +95112,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90916,6 +95133,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90936,6 +95154,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90956,6 +95175,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90976,6 +95196,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -90998,6 +95219,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91020,6 +95242,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91041,6 +95264,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91062,6 +95286,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91085,6 +95310,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91108,6 +95334,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91130,6 +95357,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91152,6 +95380,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91173,6 +95402,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91194,6 +95424,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91216,6 +95447,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91238,6 +95470,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91259,6 +95492,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91280,6 +95514,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91300,6 +95535,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91320,6 +95556,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91340,6 +95577,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91360,6 +95598,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91382,6 +95621,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91404,6 +95644,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91425,6 +95666,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91446,6 +95688,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91469,6 +95712,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91492,6 +95736,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91514,6 +95759,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91536,6 +95782,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91557,6 +95804,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91578,6 +95826,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91600,6 +95849,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91622,6 +95872,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91643,6 +95894,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91664,6 +95916,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91684,6 +95937,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91704,6 +95958,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91724,6 +95979,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91744,6 +96000,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91766,6 +96023,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91788,6 +96046,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91809,6 +96068,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91830,6 +96090,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91853,6 +96114,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91876,6 +96138,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91898,6 +96161,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91920,6 +96184,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91941,6 +96206,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91962,6 +96228,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -91984,6 +96251,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92006,6 +96274,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92026,6 +96295,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92046,6 +96316,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92067,6 +96338,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92088,6 +96360,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92110,6 +96383,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92132,6 +96406,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92152,6 +96427,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92172,6 +96448,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92193,6 +96470,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92214,6 +96492,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92236,6 +96515,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92258,6 +96538,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92278,6 +96559,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92298,6 +96580,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92317,6 +96600,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92336,6 +96620,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92357,6 +96642,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92378,6 +96664,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92397,6 +96684,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92416,6 +96704,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92437,6 +96726,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92458,6 +96748,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92478,6 +96769,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92498,6 +96790,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92520,6 +96813,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92542,6 +96836,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92563,6 +96858,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92584,6 +96880,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92606,6 +96903,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92628,6 +96926,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92648,6 +96947,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92668,6 +96968,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92691,6 +96992,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92714,6 +97016,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92735,6 +97038,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92756,6 +97060,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92776,6 +97081,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92796,6 +97102,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92815,6 +97122,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92834,6 +97142,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92855,6 +97164,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92876,6 +97186,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92895,6 +97206,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92914,6 +97226,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92935,6 +97248,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92956,6 +97270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92976,6 +97291,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -92996,6 +97312,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93018,6 +97335,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93040,6 +97358,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93061,6 +97380,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93082,6 +97402,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93104,6 +97425,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93126,6 +97448,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93146,6 +97469,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93166,6 +97490,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93189,6 +97514,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93212,6 +97538,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93233,6 +97560,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93254,6 +97582,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93274,6 +97603,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93294,6 +97624,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93313,6 +97644,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93332,6 +97664,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93353,6 +97686,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93374,6 +97708,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93393,6 +97728,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93412,6 +97748,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93433,6 +97770,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93454,6 +97792,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93474,6 +97813,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93494,6 +97834,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93516,6 +97857,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93538,6 +97880,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93559,6 +97902,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93580,6 +97924,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93602,6 +97947,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93624,6 +97970,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93644,6 +97991,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93664,6 +98012,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93687,6 +98036,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93710,6 +98060,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93731,6 +98082,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93752,6 +98104,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93771,6 +98124,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93790,6 +98144,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93810,6 +98165,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93830,6 +98186,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93851,6 +98208,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Half Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93872,6 +98230,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93893,6 +98252,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93914,6 +98274,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93934,6 +98295,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93954,6 +98316,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93976,6 +98339,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -93998,6 +98362,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94018,6 +98383,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94038,6 +98404,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94060,6 +98427,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94082,6 +98450,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94103,6 +98472,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94124,6 +98494,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94147,6 +98518,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94170,6 +98542,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94192,6 +98565,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94214,6 +98588,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94237,6 +98612,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94260,6 +98636,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94281,6 +98658,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94302,6 +98680,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94326,6 +98705,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94350,6 +98730,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94372,6 +98753,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94394,6 +98776,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94415,6 +98798,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94436,6 +98820,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94456,6 +98841,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94476,6 +98862,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94498,6 +98885,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94520,6 +98908,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94540,6 +98929,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94560,6 +98950,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94582,6 +98973,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94604,6 +98996,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94625,6 +99018,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94646,6 +99040,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94669,6 +99064,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94692,6 +99088,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94714,6 +99111,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94736,6 +99134,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94759,6 +99158,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94782,6 +99182,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94803,6 +99204,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94824,6 +99226,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94848,6 +99251,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94872,6 +99276,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94894,6 +99299,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94916,6 +99322,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94937,6 +99344,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94958,6 +99366,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94978,6 +99387,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -94998,6 +99408,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95020,6 +99431,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95042,6 +99454,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95062,6 +99475,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95082,6 +99496,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95104,6 +99519,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95126,6 +99542,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95147,6 +99564,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95168,6 +99586,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95191,6 +99610,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95214,6 +99634,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95236,6 +99657,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95258,6 +99680,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95281,6 +99704,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95304,6 +99728,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95325,6 +99750,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95346,6 +99772,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95370,6 +99797,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95394,6 +99822,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95416,6 +99845,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95438,6 +99868,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95459,6 +99890,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95480,6 +99912,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95500,6 +99933,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95520,6 +99954,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95542,6 +99977,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95564,6 +100000,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95584,6 +100021,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95604,6 +100042,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95626,6 +100065,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95648,6 +100088,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95669,6 +100110,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95690,6 +100132,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95713,6 +100156,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95736,6 +100180,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95758,6 +100203,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95780,6 +100226,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95803,6 +100250,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95826,6 +100274,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95847,6 +100296,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95868,6 +100318,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95892,6 +100343,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95916,6 +100368,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95938,6 +100391,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95960,6 +100414,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -95981,6 +100436,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96002,6 +100458,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96022,6 +100479,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96042,6 +100500,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96064,6 +100523,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96086,6 +100546,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96106,6 +100567,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96126,6 +100588,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96148,6 +100611,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96170,6 +100634,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96191,6 +100656,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96212,6 +100678,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96235,6 +100702,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96258,6 +100726,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96280,6 +100749,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96302,6 +100772,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96325,6 +100796,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96348,6 +100820,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96369,6 +100842,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96390,6 +100864,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96414,6 +100889,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96438,6 +100914,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96460,6 +100937,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96482,6 +100960,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96503,6 +100982,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96524,6 +101004,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96544,6 +101025,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96564,6 +101046,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96586,6 +101069,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96608,6 +101092,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96628,6 +101113,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96648,6 +101134,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96670,6 +101157,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96692,6 +101180,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96713,6 +101202,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96734,6 +101224,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96757,6 +101248,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96780,6 +101272,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96802,6 +101295,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96824,6 +101318,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96847,6 +101342,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96870,6 +101366,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96891,6 +101388,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96912,6 +101410,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96936,6 +101435,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96960,6 +101460,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96982,6 +101483,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97004,6 +101506,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97024,6 +101527,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97044,6 +101548,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97065,6 +101570,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97086,6 +101592,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97108,6 +101615,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97130,6 +101638,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97150,6 +101659,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97170,6 +101680,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97191,6 +101702,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97212,6 +101724,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97234,6 +101747,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97256,6 +101770,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97277,6 +101792,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97298,6 +101814,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97318,6 +101835,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97338,6 +101856,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97358,6 +101877,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97378,6 +101898,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97400,6 +101921,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97422,6 +101944,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97443,6 +101966,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97464,6 +101988,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97487,6 +102012,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97510,6 +102036,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97532,6 +102059,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97554,6 +102082,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97575,6 +102104,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97596,6 +102126,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97618,6 +102149,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97640,6 +102172,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97661,6 +102194,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97682,6 +102216,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97702,6 +102237,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97722,6 +102258,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97742,6 +102279,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97762,6 +102300,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97784,6 +102323,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97806,6 +102346,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97827,6 +102368,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97848,6 +102390,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97871,6 +102414,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97894,6 +102438,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97916,6 +102461,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97938,6 +102484,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97959,6 +102506,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -97980,6 +102528,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98002,6 +102551,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98024,6 +102574,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98045,6 +102596,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98066,6 +102618,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98086,6 +102639,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98106,6 +102660,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98126,6 +102681,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98146,6 +102702,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98168,6 +102725,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98190,6 +102748,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98211,6 +102770,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98232,6 +102792,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98255,6 +102816,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98278,6 +102840,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98300,6 +102863,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98322,6 +102886,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98343,6 +102908,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98364,6 +102930,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98386,6 +102953,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98408,6 +102976,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98429,6 +102998,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98450,6 +103020,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98470,6 +103041,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98490,6 +103062,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98510,6 +103083,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98530,6 +103104,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98552,6 +103127,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98574,6 +103150,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98595,6 +103172,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98616,6 +103194,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98639,6 +103218,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98662,6 +103242,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98684,6 +103265,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98706,6 +103288,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98727,6 +103310,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98748,6 +103332,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98770,6 +103355,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98792,6 +103378,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98813,6 +103400,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98834,6 +103422,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98854,6 +103443,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98874,6 +103464,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98894,6 +103485,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98914,6 +103506,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98936,6 +103529,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98958,6 +103552,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -98979,6 +103574,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99000,6 +103596,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99023,6 +103620,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99046,6 +103644,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99068,6 +103667,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99090,6 +103690,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99111,6 +103712,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99132,6 +103734,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99154,6 +103757,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99176,6 +103780,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99197,6 +103802,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99218,6 +103824,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99238,6 +103845,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99258,6 +103866,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99278,6 +103887,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99298,6 +103908,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99320,6 +103931,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99342,6 +103954,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99363,6 +103976,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99384,6 +103998,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99407,6 +104022,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99430,6 +104046,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99452,6 +104069,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99474,6 +104092,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99495,6 +104114,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99516,6 +104136,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99538,6 +104159,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99560,6 +104182,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99580,6 +104203,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99600,6 +104224,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99621,6 +104246,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99642,6 +104268,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99664,6 +104291,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99686,6 +104314,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99706,6 +104335,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99726,6 +104356,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99747,6 +104378,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99768,6 +104400,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99790,6 +104423,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99812,6 +104446,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99832,6 +104467,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99852,6 +104488,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99871,6 +104508,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99890,6 +104528,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99911,6 +104550,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99932,6 +104572,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99951,6 +104592,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99970,6 +104612,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -99991,6 +104634,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100012,6 +104656,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100032,6 +104677,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100052,6 +104698,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100074,6 +104721,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100096,6 +104744,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100117,6 +104766,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100138,6 +104788,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100160,6 +104811,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100182,6 +104834,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100202,6 +104855,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100222,6 +104876,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100245,6 +104900,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100268,6 +104924,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100289,6 +104946,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100310,6 +104968,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100330,6 +104989,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100350,6 +105010,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100369,6 +105030,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100388,6 +105050,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100409,6 +105072,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100430,6 +105094,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100449,6 +105114,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100468,6 +105134,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100489,6 +105156,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100510,6 +105178,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100530,6 +105199,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100550,6 +105220,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100572,6 +105243,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100594,6 +105266,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100615,6 +105288,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100636,6 +105310,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100658,6 +105333,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100680,6 +105356,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100700,6 +105377,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100720,6 +105398,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100743,6 +105422,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100766,6 +105446,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100787,6 +105468,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100808,6 +105490,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100828,6 +105511,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100848,6 +105532,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100867,6 +105552,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100886,6 +105572,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100907,6 +105594,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100928,6 +105616,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100947,6 +105636,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100966,6 +105656,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -100987,6 +105678,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101008,6 +105700,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101028,6 +105721,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101048,6 +105742,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101070,6 +105765,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101092,6 +105788,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101113,6 +105810,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101134,6 +105832,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101156,6 +105855,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101178,6 +105878,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101198,6 +105899,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101218,6 +105920,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101241,6 +105944,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101264,6 +105968,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101285,6 +105990,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101306,6 +106012,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101325,6 +106032,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101344,6 +106052,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101364,6 +106073,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101384,6 +106094,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101405,6 +106116,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101426,6 +106138,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101447,6 +106160,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101468,6 +106182,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101488,6 +106203,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101508,6 +106224,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101528,6 +106245,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101548,6 +106266,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101570,6 +106289,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101592,6 +106312,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101613,6 +106334,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101634,6 +106356,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101657,6 +106380,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101680,6 +106404,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101702,6 +106427,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101724,6 +106450,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101745,6 +106472,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101766,6 +106494,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101788,6 +106517,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101810,6 +106540,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101831,6 +106562,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101852,6 +106584,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101872,6 +106605,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101892,6 +106626,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101912,6 +106647,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101932,6 +106668,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101954,6 +106691,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101976,6 +106714,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -101997,6 +106736,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102018,6 +106758,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102041,6 +106782,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102064,6 +106806,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102086,6 +106829,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102108,6 +106852,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102129,6 +106874,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102150,6 +106896,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102172,6 +106919,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102194,6 +106942,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102215,6 +106964,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102236,6 +106986,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102256,6 +107007,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102276,6 +107028,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102296,6 +107049,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102316,6 +107070,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102338,6 +107093,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102360,6 +107116,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102381,6 +107138,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102402,6 +107160,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102425,6 +107184,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102448,6 +107208,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102470,6 +107231,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102492,6 +107254,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102513,6 +107276,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102534,6 +107298,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102556,6 +107321,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102578,6 +107344,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102599,6 +107366,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102620,6 +107388,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102640,6 +107409,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102660,6 +107430,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102680,6 +107451,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102700,6 +107472,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102722,6 +107495,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102744,6 +107518,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102765,6 +107540,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102786,6 +107562,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102809,6 +107586,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102832,6 +107610,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102854,6 +107633,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102876,6 +107656,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102897,6 +107678,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102918,6 +107700,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102940,6 +107723,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102962,6 +107746,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -102983,6 +107768,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103004,6 +107790,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103024,6 +107811,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103044,6 +107832,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103064,6 +107853,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103084,6 +107874,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103106,6 +107897,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103128,6 +107920,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103149,6 +107942,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103170,6 +107964,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103193,6 +107988,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103216,6 +108012,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103238,6 +108035,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103260,6 +108058,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103281,6 +108080,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103302,6 +108102,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103324,6 +108125,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103346,6 +108148,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103367,6 +108170,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103388,6 +108192,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103408,6 +108213,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103428,6 +108234,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103448,6 +108255,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103468,6 +108276,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103490,6 +108299,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103512,6 +108322,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103533,6 +108344,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103554,6 +108366,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103577,6 +108390,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103600,6 +108414,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103622,6 +108437,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103644,6 +108460,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103665,6 +108482,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103686,6 +108504,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103708,6 +108527,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103730,6 +108550,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103750,6 +108571,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103770,6 +108592,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103791,6 +108614,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103812,6 +108636,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103834,6 +108659,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103856,6 +108682,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103876,6 +108703,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103896,6 +108724,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103917,6 +108746,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103938,6 +108768,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -103960,6 +108791,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109346,6 +114178,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109367,6 +114200,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109388,6 +114222,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109408,6 +114243,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109430,6 +114266,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109452,6 +114289,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109472,6 +114310,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109494,6 +114333,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109516,6 +114356,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109537,6 +114378,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109560,6 +114402,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109583,6 +114426,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109605,6 +114449,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109628,6 +114473,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109651,6 +114497,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109672,6 +114519,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109696,6 +114544,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109720,6 +114569,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109742,6 +114592,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109763,6 +114614,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109784,6 +114636,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109804,6 +114657,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109826,6 +114680,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109848,6 +114703,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109868,6 +114724,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109890,6 +114747,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109912,6 +114770,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109933,6 +114792,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109956,6 +114816,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -109979,6 +114840,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110001,6 +114863,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110024,6 +114887,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110047,6 +114911,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110068,6 +114933,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110092,6 +114958,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110116,6 +114983,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110138,6 +115006,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110159,6 +115028,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110180,6 +115050,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110200,6 +115071,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110222,6 +115094,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110244,6 +115117,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110264,6 +115138,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110286,6 +115161,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110308,6 +115184,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110329,6 +115206,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110352,6 +115230,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110375,6 +115254,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110397,6 +115277,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110420,6 +115301,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110443,6 +115325,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110464,6 +115347,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110488,6 +115372,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110512,6 +115397,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110534,6 +115420,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110555,6 +115442,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110576,6 +115464,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110596,6 +115485,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110618,6 +115508,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110640,6 +115531,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110660,6 +115552,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110682,6 +115575,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110704,6 +115598,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110725,6 +115620,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110748,6 +115644,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110771,6 +115668,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110793,6 +115691,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110816,6 +115715,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110839,6 +115739,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110860,6 +115761,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110884,6 +115786,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110908,6 +115811,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110930,6 +115834,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110951,6 +115856,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110972,6 +115878,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -110992,6 +115899,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111014,6 +115922,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111036,6 +115945,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111056,6 +115966,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111078,6 +115989,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111100,6 +116012,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111121,6 +116034,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111144,6 +116058,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111167,6 +116082,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111189,6 +116105,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111212,6 +116129,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111235,6 +116153,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111256,6 +116175,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111280,6 +116200,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111304,6 +116225,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111326,6 +116248,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111347,6 +116270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111368,6 +116292,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111388,6 +116313,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111410,6 +116336,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111432,6 +116359,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111452,6 +116380,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111474,6 +116403,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111496,6 +116426,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111517,6 +116448,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111540,6 +116472,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111563,6 +116496,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111585,6 +116519,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111608,6 +116543,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111631,6 +116567,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111652,6 +116589,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111676,6 +116614,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111700,6 +116639,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111722,6 +116662,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111742,6 +116683,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111763,6 +116705,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111785,6 +116728,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111805,6 +116749,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111826,6 +116771,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111848,6 +116794,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111869,6 +116816,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111890,6 +116838,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111910,6 +116859,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111932,6 +116882,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111954,6 +116905,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111974,6 +116926,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -111996,6 +116949,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112018,6 +116972,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112039,6 +116994,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112062,6 +117018,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112085,6 +117042,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112107,6 +117065,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112130,6 +117089,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112153,6 +117113,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112174,6 +117135,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112198,6 +117160,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112222,6 +117185,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112244,6 +117208,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112265,6 +117230,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112286,6 +117252,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112306,6 +117273,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112328,6 +117296,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112350,6 +117319,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112370,6 +117340,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112392,6 +117363,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112414,6 +117386,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112435,6 +117408,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112458,6 +117432,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112481,6 +117456,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112503,6 +117479,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112526,6 +117503,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112549,6 +117527,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112570,6 +117549,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112594,6 +117574,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112618,6 +117599,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112640,6 +117622,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112661,6 +117644,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112682,6 +117666,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112702,6 +117687,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112724,6 +117710,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112746,6 +117733,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112766,6 +117754,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112788,6 +117777,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112810,6 +117800,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112831,6 +117822,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112854,6 +117846,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112877,6 +117870,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112899,6 +117893,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112922,6 +117917,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112945,6 +117941,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112966,6 +117963,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -112990,6 +117988,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113014,6 +118013,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113036,6 +118036,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113057,6 +118058,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113078,6 +118080,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113098,6 +118101,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113120,6 +118124,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113142,6 +118147,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113162,6 +118168,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113184,6 +118191,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113206,6 +118214,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113227,6 +118236,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113250,6 +118260,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113273,6 +118284,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113295,6 +118307,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113318,6 +118331,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113341,6 +118355,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113362,6 +118377,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113386,6 +118402,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113410,6 +118427,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113432,6 +118450,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113453,6 +118472,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113474,6 +118494,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113494,6 +118515,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113516,6 +118538,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113538,6 +118561,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113558,6 +118582,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113580,6 +118605,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113602,6 +118628,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113623,6 +118650,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113646,6 +118674,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113669,6 +118698,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113691,6 +118721,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113714,6 +118745,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113737,6 +118769,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113758,6 +118791,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113782,6 +118816,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113806,6 +118841,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113828,6 +118864,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113849,6 +118886,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113870,6 +118908,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113890,6 +118929,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113912,6 +118952,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113934,6 +118975,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113954,6 +118996,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113976,6 +119019,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -113998,6 +119042,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114019,6 +119064,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114042,6 +119088,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114065,6 +119112,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114087,6 +119135,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114110,6 +119159,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114133,6 +119183,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114154,6 +119205,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114178,6 +119230,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114202,6 +119255,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114224,6 +119278,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114244,6 +119299,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114265,6 +119321,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114287,6 +119344,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114307,6 +119365,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114328,6 +119387,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114350,6 +119410,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114371,6 +119432,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114392,6 +119454,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114412,6 +119475,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114432,6 +119496,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114454,6 +119519,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114476,6 +119542,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114497,6 +119564,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114520,6 +119588,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114543,6 +119612,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114565,6 +119635,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114586,6 +119657,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114608,6 +119680,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114629,6 +119702,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114650,6 +119724,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114670,6 +119745,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114690,6 +119766,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114712,6 +119789,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114734,6 +119812,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114755,6 +119834,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114778,6 +119858,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114801,6 +119882,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114823,6 +119905,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114844,6 +119927,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114866,6 +119950,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114887,6 +119972,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114908,6 +119994,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114928,6 +120015,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114948,6 +120036,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114970,6 +120059,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -114992,6 +120082,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115013,6 +120104,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115036,6 +120128,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115059,6 +120152,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115081,6 +120175,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115102,6 +120197,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115124,6 +120220,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115145,6 +120242,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115166,6 +120264,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115186,6 +120285,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115206,6 +120306,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115228,6 +120329,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115250,6 +120352,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115271,6 +120374,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115294,6 +120398,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115317,6 +120422,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115339,6 +120445,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115360,6 +120467,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115382,6 +120490,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115403,6 +120512,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115424,6 +120534,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115444,6 +120555,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115464,6 +120576,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115486,6 +120599,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115508,6 +120622,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115529,6 +120644,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115552,6 +120668,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115575,6 +120692,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115597,6 +120715,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115618,6 +120737,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115640,6 +120760,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115661,6 +120782,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115682,6 +120804,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115702,6 +120825,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115722,6 +120846,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115744,6 +120869,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115766,6 +120892,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115787,6 +120914,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115810,6 +120938,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115833,6 +120962,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115855,6 +120985,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115876,6 +121007,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115898,6 +121030,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115918,6 +121051,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115939,6 +121073,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115961,6 +121096,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -115981,6 +121117,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116002,6 +121139,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116024,6 +121162,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116045,6 +121184,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116066,6 +121206,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116086,6 +121227,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116106,6 +121248,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116128,6 +121271,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116150,6 +121294,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116171,6 +121316,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116194,6 +121340,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116217,6 +121364,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116239,6 +121387,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116260,6 +121409,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116282,6 +121432,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116303,6 +121454,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116324,6 +121476,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116344,6 +121497,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116364,6 +121518,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116386,6 +121541,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116408,6 +121564,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116429,6 +121586,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116452,6 +121610,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116475,6 +121634,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116497,6 +121657,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116518,6 +121679,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116540,6 +121702,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116561,6 +121724,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116582,6 +121746,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116602,6 +121767,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116622,6 +121788,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116644,6 +121811,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116666,6 +121834,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116687,6 +121856,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116710,6 +121880,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116733,6 +121904,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116755,6 +121927,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116776,6 +121949,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116798,6 +121972,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116819,6 +121994,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116840,6 +122016,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116860,6 +122037,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116880,6 +122058,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116902,6 +122081,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116924,6 +122104,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116945,6 +122126,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116968,6 +122150,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -116991,6 +122174,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117013,6 +122197,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117034,6 +122219,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117056,6 +122242,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117077,6 +122264,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117098,6 +122286,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117118,6 +122307,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117138,6 +122328,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117160,6 +122351,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117182,6 +122374,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117203,6 +122396,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117226,6 +122420,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117249,6 +122444,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117271,6 +122467,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117292,6 +122489,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117314,6 +122512,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117335,6 +122534,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117356,6 +122556,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117376,6 +122577,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117396,6 +122598,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117418,6 +122621,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117440,6 +122644,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117461,6 +122666,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117484,6 +122690,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117507,6 +122714,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117529,6 +122737,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117550,6 +122759,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117572,6 +122782,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117592,6 +122803,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117613,6 +122825,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117635,6 +122848,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117655,6 +122869,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117676,6 +122891,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117698,6 +122914,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117719,6 +122936,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117740,6 +122958,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117760,6 +122979,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117780,6 +123000,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117802,6 +123023,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117824,6 +123046,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117844,6 +123067,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117864,6 +123088,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117886,6 +123111,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117908,6 +123134,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117929,6 +123156,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117950,6 +123178,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117973,6 +123202,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -117996,6 +123226,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118018,6 +123249,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118040,6 +123272,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118063,6 +123296,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118086,6 +123320,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118107,6 +123342,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118128,6 +123364,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118152,6 +123389,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118176,6 +123414,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118198,6 +123437,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118220,6 +123460,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118241,6 +123482,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118262,6 +123504,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118282,6 +123525,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118302,6 +123546,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118324,6 +123569,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118346,6 +123592,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118366,6 +123613,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118386,6 +123634,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118408,6 +123657,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118430,6 +123680,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118451,6 +123702,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118472,6 +123724,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118495,6 +123748,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118518,6 +123772,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118540,6 +123795,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118562,6 +123818,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118585,6 +123842,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118608,6 +123866,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118629,6 +123888,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118650,6 +123910,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118674,6 +123935,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118698,6 +123960,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118720,6 +123983,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118742,6 +124006,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118763,6 +124028,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118784,6 +124050,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118804,6 +124071,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118824,6 +124092,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118846,6 +124115,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118868,6 +124138,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118888,6 +124159,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118908,6 +124180,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118930,6 +124203,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118952,6 +124226,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118973,6 +124248,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -118994,6 +124270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119017,6 +124294,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119040,6 +124318,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119062,6 +124341,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119084,6 +124364,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119107,6 +124388,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119130,6 +124412,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119151,6 +124434,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119172,6 +124456,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119196,6 +124481,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119220,6 +124506,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119242,6 +124529,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119264,6 +124552,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119285,6 +124574,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119306,6 +124596,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119326,6 +124617,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119346,6 +124638,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119368,6 +124661,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119390,6 +124684,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119410,6 +124705,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119430,6 +124726,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119452,6 +124749,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119474,6 +124772,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119495,6 +124794,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119516,6 +124816,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119539,6 +124840,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119562,6 +124864,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119584,6 +124887,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119606,6 +124910,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119629,6 +124934,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119652,6 +124958,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119673,6 +124980,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119694,6 +125002,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119718,6 +125027,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119742,6 +125052,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119764,6 +125075,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119786,6 +125098,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119807,6 +125120,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119828,6 +125142,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119848,6 +125163,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119868,6 +125184,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119890,6 +125207,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119912,6 +125230,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119932,6 +125251,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119952,6 +125272,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119974,6 +125295,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -119996,6 +125318,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120017,6 +125340,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120038,6 +125362,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120061,6 +125386,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120084,6 +125410,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120106,6 +125433,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120128,6 +125456,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120151,6 +125480,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120174,6 +125504,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120195,6 +125526,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120216,6 +125548,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120240,6 +125573,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120264,6 +125598,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120286,6 +125621,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120308,6 +125644,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120329,6 +125666,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120350,6 +125688,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120370,6 +125709,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120390,6 +125730,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120412,6 +125753,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120434,6 +125776,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120454,6 +125797,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120474,6 +125818,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120496,6 +125841,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120518,6 +125864,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120539,6 +125886,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120560,6 +125908,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120583,6 +125932,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120606,6 +125956,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120628,6 +125979,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120650,6 +126002,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120673,6 +126026,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120696,6 +126050,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120717,6 +126072,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120738,6 +126094,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120762,6 +126119,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120786,6 +126144,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120808,6 +126167,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120830,6 +126190,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120850,6 +126211,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120870,6 +126232,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120891,6 +126254,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120912,6 +126276,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120934,6 +126299,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120956,6 +126322,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120976,6 +126343,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -120996,6 +126364,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121017,6 +126386,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121038,6 +126408,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121060,6 +126431,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121082,6 +126454,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121103,6 +126476,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121124,6 +126498,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121144,6 +126519,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121164,6 +126540,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121186,6 +126563,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121208,6 +126586,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121228,6 +126607,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121248,6 +126628,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121270,6 +126651,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121292,6 +126674,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121313,6 +126696,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121334,6 +126718,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121357,6 +126742,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121380,6 +126766,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121402,6 +126789,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121424,6 +126812,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121447,6 +126836,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121470,6 +126860,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121491,6 +126882,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121512,6 +126904,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121536,6 +126929,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121560,6 +126954,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121582,6 +126977,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121604,6 +127000,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121625,6 +127022,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121646,6 +127044,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121666,6 +127065,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121686,6 +127086,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121708,6 +127109,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121730,6 +127132,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121750,6 +127153,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121770,6 +127174,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121792,6 +127197,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121814,6 +127220,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121835,6 +127242,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121856,6 +127264,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121879,6 +127288,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121902,6 +127312,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121924,6 +127335,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121946,6 +127358,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121969,6 +127382,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -121992,6 +127406,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122013,6 +127428,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122034,6 +127450,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122058,6 +127475,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122082,6 +127500,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122104,6 +127523,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122126,6 +127546,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122147,6 +127568,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122168,6 +127590,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122188,6 +127611,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122208,6 +127632,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122230,6 +127655,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122252,6 +127678,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122272,6 +127699,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122292,6 +127720,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122314,6 +127743,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122336,6 +127766,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122357,6 +127788,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122378,6 +127810,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122401,6 +127834,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122424,6 +127858,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122446,6 +127881,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122468,6 +127904,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122491,6 +127928,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122514,6 +127952,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122535,6 +127974,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122556,6 +127996,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122580,6 +128021,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122604,6 +128046,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122626,6 +128069,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122648,6 +128092,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122669,6 +128114,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122690,6 +128136,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122710,6 +128157,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122730,6 +128178,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122752,6 +128201,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122774,6 +128224,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122794,6 +128245,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122814,6 +128266,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122836,6 +128289,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122858,6 +128312,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122879,6 +128334,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122900,6 +128356,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122923,6 +128380,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122946,6 +128404,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122968,6 +128427,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -122990,6 +128450,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123013,6 +128474,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123036,6 +128498,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123057,6 +128520,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123078,6 +128542,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123102,6 +128567,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123126,6 +128592,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123148,6 +128615,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123170,6 +128638,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123191,6 +128660,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123212,6 +128682,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123232,6 +128703,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123252,6 +128724,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123274,6 +128747,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123296,6 +128770,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123316,6 +128791,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123336,6 +128812,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123358,6 +128835,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123380,6 +128858,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123401,6 +128880,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123422,6 +128902,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123445,6 +128926,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123468,6 +128950,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123490,6 +128973,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123512,6 +128996,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123535,6 +129020,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123558,6 +129044,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123579,6 +129066,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123600,6 +129088,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123624,6 +129113,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123648,6 +129138,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123670,6 +129161,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123692,6 +129184,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123713,6 +129206,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123734,6 +129228,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123754,6 +129249,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123774,6 +129270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123796,6 +129293,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123818,6 +129316,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123838,6 +129337,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123858,6 +129358,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123880,6 +129381,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123902,6 +129404,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123923,6 +129426,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123944,6 +129448,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123967,6 +129472,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -123990,6 +129496,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124012,6 +129519,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124034,6 +129542,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124057,6 +129566,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124080,6 +129590,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124101,6 +129612,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124122,6 +129634,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124146,6 +129659,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124170,6 +129684,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124192,6 +129707,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124214,6 +129730,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124234,6 +129751,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124254,6 +129772,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124275,6 +129794,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124296,6 +129816,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124318,6 +129839,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124340,6 +129862,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124360,6 +129883,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124380,6 +129904,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124401,6 +129926,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124422,6 +129948,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124444,6 +129971,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124466,6 +129994,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124487,6 +130016,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124508,6 +130038,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124528,6 +130059,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124548,6 +130080,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124570,6 +130103,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124592,6 +130126,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124612,6 +130147,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124632,6 +130168,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124654,6 +130191,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124676,6 +130214,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124697,6 +130236,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124718,6 +130258,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124741,6 +130282,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124764,6 +130306,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124786,6 +130329,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124808,6 +130352,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124831,6 +130376,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124854,6 +130400,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124875,6 +130422,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124896,6 +130444,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124920,6 +130469,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124944,6 +130494,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124966,6 +130517,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -124988,6 +130540,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125009,6 +130562,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125030,6 +130584,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125050,6 +130605,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125070,6 +130626,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125092,6 +130649,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125114,6 +130672,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125134,6 +130693,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125154,6 +130714,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125176,6 +130737,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125198,6 +130760,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125219,6 +130782,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125240,6 +130804,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125263,6 +130828,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125286,6 +130852,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125308,6 +130875,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125330,6 +130898,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125353,6 +130922,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125376,6 +130946,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125397,6 +130968,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125418,6 +130990,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125442,6 +131015,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125466,6 +131040,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125488,6 +131063,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125510,6 +131086,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125531,6 +131108,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125552,6 +131130,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125572,6 +131151,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125592,6 +131172,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125614,6 +131195,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125636,6 +131218,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125656,6 +131239,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125676,6 +131260,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125698,6 +131283,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125720,6 +131306,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125741,6 +131328,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125762,6 +131350,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125785,6 +131374,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125808,6 +131398,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125830,6 +131421,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125852,6 +131444,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125875,6 +131468,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125898,6 +131492,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125919,6 +131514,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125940,6 +131536,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125964,6 +131561,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -125988,6 +131586,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126010,6 +131609,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126032,6 +131632,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126053,6 +131654,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126074,6 +131676,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126094,6 +131697,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126114,6 +131718,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126136,6 +131741,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126158,6 +131764,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126178,6 +131785,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126198,6 +131806,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126220,6 +131829,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126242,6 +131852,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126263,6 +131874,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126284,6 +131896,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126307,6 +131920,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126330,6 +131944,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126352,6 +131967,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126374,6 +131990,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126397,6 +132014,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126420,6 +132038,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126441,6 +132060,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126462,6 +132082,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126486,6 +132107,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126510,6 +132132,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126532,6 +132155,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126554,6 +132178,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126575,6 +132200,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126596,6 +132222,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126616,6 +132243,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126636,6 +132264,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126658,6 +132287,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126680,6 +132310,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126700,6 +132331,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126720,6 +132352,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126742,6 +132375,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126764,6 +132398,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126785,6 +132420,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126806,6 +132442,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126829,6 +132466,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126852,6 +132490,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126874,6 +132513,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126896,6 +132536,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126919,6 +132560,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126942,6 +132584,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126963,6 +132606,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -126984,6 +132628,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127008,6 +132653,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127032,6 +132678,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127054,6 +132701,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127076,6 +132724,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127097,6 +132746,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127118,6 +132768,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127138,6 +132789,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127158,6 +132810,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127180,6 +132833,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127202,6 +132856,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127222,6 +132877,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127242,6 +132898,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127264,6 +132921,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127286,6 +132944,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127307,6 +132966,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127328,6 +132988,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127351,6 +133012,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127374,6 +133036,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127396,6 +133059,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127418,6 +133082,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127441,6 +133106,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127464,6 +133130,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127485,6 +133152,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127506,6 +133174,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127530,6 +133199,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127554,6 +133224,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127576,6 +133247,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127598,6 +133270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127618,6 +133291,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127638,6 +133312,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127659,6 +133334,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127680,6 +133356,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127702,6 +133379,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127724,6 +133402,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127744,6 +133423,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127764,6 +133444,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127785,6 +133466,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127806,6 +133488,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127828,6 +133511,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127850,6 +133534,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127871,6 +133556,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127892,6 +133578,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127912,6 +133599,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127932,6 +133620,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127952,6 +133641,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127972,6 +133662,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -127994,6 +133685,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128016,6 +133708,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128037,6 +133730,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128058,6 +133752,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128081,6 +133776,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128104,6 +133800,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128126,6 +133823,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128148,6 +133846,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128169,6 +133868,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128190,6 +133890,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128212,6 +133913,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128234,6 +133936,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128255,6 +133958,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128276,6 +133980,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128296,6 +134001,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128316,6 +134022,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128336,6 +134043,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128356,6 +134064,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128378,6 +134087,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128400,6 +134110,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128421,6 +134132,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128442,6 +134154,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128465,6 +134178,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128488,6 +134202,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128510,6 +134225,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128532,6 +134248,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128553,6 +134270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128574,6 +134292,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128596,6 +134315,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128618,6 +134338,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128639,6 +134360,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128660,6 +134382,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128680,6 +134403,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128700,6 +134424,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128720,6 +134445,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128740,6 +134466,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128762,6 +134489,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128784,6 +134512,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128805,6 +134534,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128826,6 +134556,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128849,6 +134580,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128872,6 +134604,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128894,6 +134627,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128916,6 +134650,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128937,6 +134672,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128958,6 +134694,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -128980,6 +134717,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129002,6 +134740,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129023,6 +134762,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129044,6 +134784,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129064,6 +134805,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129084,6 +134826,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129104,6 +134847,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129124,6 +134868,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129146,6 +134891,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129168,6 +134914,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129189,6 +134936,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129210,6 +134958,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129233,6 +134982,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129256,6 +135006,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129278,6 +135029,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129300,6 +135052,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129321,6 +135074,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129342,6 +135096,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129364,6 +135119,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129386,6 +135142,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129407,6 +135164,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129428,6 +135186,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129448,6 +135207,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129468,6 +135228,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129488,6 +135249,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129508,6 +135270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129530,6 +135293,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129552,6 +135316,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129573,6 +135338,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129594,6 +135360,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129617,6 +135384,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129640,6 +135408,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129662,6 +135431,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129684,6 +135454,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129705,6 +135476,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129726,6 +135498,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129748,6 +135521,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129770,6 +135544,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129791,6 +135566,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129812,6 +135588,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129832,6 +135609,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129852,6 +135630,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129872,6 +135651,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129892,6 +135672,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129914,6 +135695,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129936,6 +135718,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129957,6 +135740,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -129978,6 +135762,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130001,6 +135786,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130024,6 +135810,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130046,6 +135833,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130068,6 +135856,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130089,6 +135878,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130110,6 +135900,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130132,6 +135923,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130154,6 +135946,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130174,6 +135967,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130194,6 +135988,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130215,6 +136010,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130236,6 +136032,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130258,6 +136055,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130280,6 +136078,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130300,6 +136099,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130320,6 +136120,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130341,6 +136142,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130362,6 +136164,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130384,6 +136187,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130406,6 +136210,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130427,6 +136232,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130448,6 +136254,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130468,6 +136275,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130488,6 +136296,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130510,6 +136319,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130532,6 +136342,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130552,6 +136363,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130572,6 +136384,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130594,6 +136407,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130616,6 +136430,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130637,6 +136452,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130658,6 +136474,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130681,6 +136498,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130704,6 +136522,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130726,6 +136545,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130748,6 +136568,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130771,6 +136592,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130794,6 +136616,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130815,6 +136638,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130836,6 +136660,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130860,6 +136685,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130884,6 +136710,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130906,6 +136733,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130928,6 +136756,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130949,6 +136778,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130970,6 +136800,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -130990,6 +136821,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131010,6 +136842,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131032,6 +136865,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131054,6 +136888,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131074,6 +136909,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131094,6 +136930,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131116,6 +136953,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131138,6 +136976,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131159,6 +136998,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131180,6 +137020,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131203,6 +137044,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131226,6 +137068,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131248,6 +137091,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131270,6 +137114,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131293,6 +137138,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131316,6 +137162,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131337,6 +137184,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131358,6 +137206,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131382,6 +137231,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131406,6 +137256,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131428,6 +137279,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131450,6 +137302,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131471,6 +137324,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131492,6 +137346,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131512,6 +137367,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131532,6 +137388,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131554,6 +137411,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131576,6 +137434,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131596,6 +137455,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131616,6 +137476,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131638,6 +137499,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131660,6 +137522,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131681,6 +137544,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131702,6 +137566,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131725,6 +137590,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131748,6 +137614,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131770,6 +137637,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131792,6 +137660,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131815,6 +137684,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131838,6 +137708,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131859,6 +137730,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131880,6 +137752,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131904,6 +137777,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131928,6 +137802,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131950,6 +137825,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131972,6 +137848,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -131993,6 +137870,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132014,6 +137892,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132034,6 +137913,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132054,6 +137934,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132076,6 +137957,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132098,6 +137980,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132118,6 +138001,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132138,6 +138022,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132160,6 +138045,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132182,6 +138068,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132203,6 +138090,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132224,6 +138112,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132247,6 +138136,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132270,6 +138160,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132292,6 +138183,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132314,6 +138206,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132337,6 +138230,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132360,6 +138254,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132381,6 +138276,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132402,6 +138298,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132426,6 +138323,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132450,6 +138348,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132472,6 +138371,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132494,6 +138394,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132515,6 +138416,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132536,6 +138438,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132556,6 +138459,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132576,6 +138480,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132598,6 +138503,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132620,6 +138526,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132640,6 +138547,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132660,6 +138568,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132682,6 +138591,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132704,6 +138614,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132725,6 +138636,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132746,6 +138658,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132769,6 +138682,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132792,6 +138706,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132814,6 +138729,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132836,6 +138752,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132859,6 +138776,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132882,6 +138800,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132903,6 +138822,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132924,6 +138844,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132948,6 +138869,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132972,6 +138894,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -132994,6 +138917,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133016,6 +138940,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133037,6 +138962,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133058,6 +138984,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133078,6 +139005,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133098,6 +139026,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133120,6 +139049,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133142,6 +139072,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133162,6 +139093,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133182,6 +139114,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133204,6 +139137,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133226,6 +139160,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133247,6 +139182,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133268,6 +139204,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133291,6 +139228,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133314,6 +139252,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133336,6 +139275,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133358,6 +139298,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133381,6 +139322,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133404,6 +139346,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133425,6 +139368,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133446,6 +139390,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133470,6 +139415,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133494,6 +139440,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133516,6 +139463,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133538,6 +139486,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133558,6 +139507,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133578,6 +139528,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133599,6 +139550,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133620,6 +139572,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133642,6 +139595,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133664,6 +139618,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133684,6 +139639,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133704,6 +139660,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133725,6 +139682,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133746,6 +139704,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133768,6 +139727,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133790,6 +139750,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133811,6 +139772,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133832,6 +139794,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133852,6 +139815,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133872,6 +139836,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133892,6 +139857,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133912,6 +139878,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133934,6 +139901,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133956,6 +139924,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133977,6 +139946,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -133998,6 +139968,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134021,6 +139992,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134044,6 +140016,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134066,6 +140039,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134088,6 +140062,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134109,6 +140084,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134130,6 +140106,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134152,6 +140129,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134174,6 +140152,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134195,6 +140174,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134216,6 +140196,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134236,6 +140217,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134256,6 +140238,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134276,6 +140259,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134296,6 +140280,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134318,6 +140303,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134340,6 +140326,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134361,6 +140348,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134382,6 +140370,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134405,6 +140394,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134428,6 +140418,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134450,6 +140441,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134472,6 +140464,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134493,6 +140486,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134514,6 +140508,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134536,6 +140531,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134558,6 +140554,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134579,6 +140576,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134600,6 +140598,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134620,6 +140619,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134640,6 +140640,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134660,6 +140661,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134680,6 +140682,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134702,6 +140705,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134724,6 +140728,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134745,6 +140750,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134766,6 +140772,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134789,6 +140796,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134812,6 +140820,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134834,6 +140843,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134856,6 +140866,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134877,6 +140888,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134898,6 +140910,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134920,6 +140933,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134942,6 +140956,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134963,6 +140978,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -134984,6 +141000,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135004,6 +141021,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135024,6 +141042,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135044,6 +141063,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135064,6 +141084,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135086,6 +141107,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135108,6 +141130,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135129,6 +141152,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135150,6 +141174,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135173,6 +141198,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135196,6 +141222,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135218,6 +141245,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135240,6 +141268,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135261,6 +141290,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135282,6 +141312,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135304,6 +141335,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135326,6 +141358,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135347,6 +141380,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135368,6 +141402,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135388,6 +141423,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135408,6 +141444,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135428,6 +141465,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135448,6 +141486,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135470,6 +141509,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135492,6 +141532,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135513,6 +141554,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135534,6 +141576,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135557,6 +141600,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135580,6 +141624,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135602,6 +141647,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135624,6 +141670,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135645,6 +141692,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135666,6 +141714,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135688,6 +141737,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135710,6 +141760,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135731,6 +141782,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135752,6 +141804,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135772,6 +141825,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135792,6 +141846,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135812,6 +141867,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135832,6 +141888,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135854,6 +141911,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135876,6 +141934,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135897,6 +141956,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135918,6 +141978,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135941,6 +142002,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135964,6 +142026,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -135986,6 +142049,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136008,6 +142072,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136029,6 +142094,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136050,6 +142116,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136072,6 +142139,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136094,6 +142162,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136114,6 +142183,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136134,6 +142204,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136155,6 +142226,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136176,6 +142248,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136198,6 +142271,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136220,6 +142294,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136240,6 +142315,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136260,6 +142336,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136281,6 +142358,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136302,6 +142380,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136324,6 +142403,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136346,6 +142426,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136367,6 +142448,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136388,6 +142470,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136408,6 +142491,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136428,6 +142512,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136450,6 +142535,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136472,6 +142558,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136492,6 +142579,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136512,6 +142600,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136534,6 +142623,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136556,6 +142646,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136577,6 +142668,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136598,6 +142690,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136621,6 +142714,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136644,6 +142738,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136666,6 +142761,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136688,6 +142784,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136711,6 +142808,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136734,6 +142832,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136755,6 +142854,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136776,6 +142876,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136800,6 +142901,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136824,6 +142926,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136846,6 +142949,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136868,6 +142972,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136889,6 +142994,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136910,6 +143016,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136930,6 +143037,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136950,6 +143058,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136972,6 +143081,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -136994,6 +143104,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137014,6 +143125,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137034,6 +143146,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137056,6 +143169,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137078,6 +143192,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137099,6 +143214,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137120,6 +143236,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137143,6 +143260,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137166,6 +143284,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137188,6 +143307,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137210,6 +143330,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137233,6 +143354,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137256,6 +143378,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137277,6 +143400,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137298,6 +143422,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137322,6 +143447,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137346,6 +143472,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137368,6 +143495,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137390,6 +143518,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137411,6 +143540,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137432,6 +143562,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137452,6 +143583,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137472,6 +143604,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137494,6 +143627,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137516,6 +143650,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137536,6 +143671,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137556,6 +143692,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137578,6 +143715,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137600,6 +143738,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137621,6 +143760,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137642,6 +143782,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137665,6 +143806,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137688,6 +143830,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137710,6 +143853,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137732,6 +143876,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137755,6 +143900,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137778,6 +143924,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137799,6 +143946,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137820,6 +143968,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137844,6 +143993,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137868,6 +144018,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137890,6 +144041,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137912,6 +144064,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137933,6 +144086,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137954,6 +144108,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137974,6 +144129,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -137994,6 +144150,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138016,6 +144173,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138038,6 +144196,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138058,6 +144217,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138078,6 +144238,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138100,6 +144261,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138122,6 +144284,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138143,6 +144306,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138164,6 +144328,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138187,6 +144352,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138210,6 +144376,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138232,6 +144399,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138254,6 +144422,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138277,6 +144446,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138300,6 +144470,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138321,6 +144492,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138342,6 +144514,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138366,6 +144539,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138390,6 +144564,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138412,6 +144587,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138434,6 +144610,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138455,6 +144632,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138476,6 +144654,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138496,6 +144675,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138516,6 +144696,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138538,6 +144719,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138560,6 +144742,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138580,6 +144763,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138600,6 +144784,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138622,6 +144807,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138644,6 +144830,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138665,6 +144852,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138686,6 +144874,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138709,6 +144898,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138732,6 +144922,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138754,6 +144945,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138776,6 +144968,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138799,6 +144992,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138822,6 +145016,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138843,6 +145038,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138864,6 +145060,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138888,6 +145085,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138912,6 +145110,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138934,6 +145133,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138956,6 +145156,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138977,6 +145178,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -138998,6 +145200,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139018,6 +145221,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139038,6 +145242,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139060,6 +145265,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139082,6 +145288,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139102,6 +145309,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139122,6 +145330,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139144,6 +145353,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139166,6 +145376,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139187,6 +145398,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139208,6 +145420,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139231,6 +145444,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139254,6 +145468,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139276,6 +145491,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139298,6 +145514,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139321,6 +145538,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139344,6 +145562,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139365,6 +145584,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139386,6 +145606,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139410,6 +145631,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139434,6 +145656,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139456,6 +145679,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139478,6 +145702,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139498,6 +145723,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139518,6 +145744,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139539,6 +145766,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139560,6 +145788,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139582,6 +145811,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139604,6 +145834,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139624,6 +145855,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139644,6 +145876,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139665,6 +145898,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139686,6 +145920,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139708,6 +145943,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139730,6 +145966,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139751,6 +145988,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139772,6 +146010,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139792,6 +146031,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139812,6 +146052,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139832,6 +146073,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139852,6 +146094,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139874,6 +146117,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139896,6 +146140,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139917,6 +146162,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139938,6 +146184,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139961,6 +146208,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -139984,6 +146232,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140006,6 +146255,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140028,6 +146278,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140049,6 +146300,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140070,6 +146322,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140092,6 +146345,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140114,6 +146368,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140135,6 +146390,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140156,6 +146412,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140176,6 +146433,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140196,6 +146454,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140216,6 +146475,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140236,6 +146496,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140258,6 +146519,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140280,6 +146542,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140301,6 +146564,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140322,6 +146586,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140345,6 +146610,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140368,6 +146634,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140390,6 +146657,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140412,6 +146680,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140433,6 +146702,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140454,6 +146724,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140476,6 +146747,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140498,6 +146770,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140519,6 +146792,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140540,6 +146814,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140560,6 +146835,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140580,6 +146856,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140600,6 +146877,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140620,6 +146898,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140642,6 +146921,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140664,6 +146944,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140685,6 +146966,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140706,6 +146988,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140729,6 +147012,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140752,6 +147036,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140774,6 +147059,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140796,6 +147082,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140817,6 +147104,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140838,6 +147126,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140860,6 +147149,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140882,6 +147172,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140903,6 +147194,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140924,6 +147216,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140944,6 +147237,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140964,6 +147258,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -140984,6 +147279,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141004,6 +147300,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141026,6 +147323,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141048,6 +147346,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141069,6 +147368,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141090,6 +147390,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141113,6 +147414,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141136,6 +147438,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141158,6 +147461,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141180,6 +147484,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141201,6 +147506,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141222,6 +147528,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141244,6 +147551,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141266,6 +147574,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141287,6 +147596,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141308,6 +147618,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141328,6 +147639,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141348,6 +147660,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141368,6 +147681,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141388,6 +147702,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141410,6 +147725,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141432,6 +147748,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141453,6 +147770,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141474,6 +147792,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141497,6 +147816,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141520,6 +147840,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141542,6 +147863,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141564,6 +147886,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141585,6 +147908,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141606,6 +147930,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141628,6 +147953,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141650,6 +147976,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141671,6 +147998,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141692,6 +148020,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141712,6 +148041,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141732,6 +148062,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141752,6 +148083,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141772,6 +148104,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141794,6 +148127,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141816,6 +148150,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141837,6 +148172,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141858,6 +148194,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141881,6 +148218,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141904,6 +148242,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141926,6 +148265,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141948,6 +148288,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141969,6 +148310,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -141990,6 +148332,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142012,6 +148355,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142034,6 +148378,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142054,6 +148399,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142074,6 +148420,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142095,6 +148442,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142116,6 +148464,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142138,6 +148487,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142160,6 +148510,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142180,6 +148531,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142200,6 +148552,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142221,6 +148574,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142242,6 +148596,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142264,6 +148619,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142286,6 +148642,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142307,6 +148664,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142328,6 +148686,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142348,6 +148707,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142368,6 +148728,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142390,6 +148751,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142412,6 +148774,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142432,6 +148795,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142452,6 +148816,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142474,6 +148839,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142496,6 +148862,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142517,6 +148884,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142538,6 +148906,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142561,6 +148930,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142584,6 +148954,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142606,6 +148977,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142628,6 +149000,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142651,6 +149024,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142674,6 +149048,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142695,6 +149070,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142716,6 +149092,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142740,6 +149117,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142764,6 +149142,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142786,6 +149165,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142808,6 +149188,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142829,6 +149210,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142850,6 +149232,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142870,6 +149253,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142890,6 +149274,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142912,6 +149297,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142934,6 +149320,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142954,6 +149341,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142974,6 +149362,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -142996,6 +149385,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143018,6 +149408,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143039,6 +149430,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143060,6 +149452,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143083,6 +149476,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143106,6 +149500,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143128,6 +149523,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143150,6 +149546,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143173,6 +149570,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143196,6 +149594,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143217,6 +149616,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143238,6 +149638,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143262,6 +149663,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143286,6 +149688,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143308,6 +149711,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143330,6 +149734,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143351,6 +149756,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143372,6 +149778,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143392,6 +149799,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143412,6 +149820,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143434,6 +149843,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143456,6 +149866,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143476,6 +149887,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143496,6 +149908,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143518,6 +149931,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143540,6 +149954,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143561,6 +149976,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143582,6 +149998,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143605,6 +150022,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143628,6 +150046,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143650,6 +150069,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143672,6 +150092,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143695,6 +150116,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143718,6 +150140,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143739,6 +150162,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143760,6 +150184,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143784,6 +150209,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143808,6 +150234,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143830,6 +150257,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143852,6 +150280,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143873,6 +150302,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143894,6 +150324,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143914,6 +150345,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143934,6 +150366,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143956,6 +150389,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143978,6 +150412,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -143998,6 +150433,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144018,6 +150454,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144040,6 +150477,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144062,6 +150500,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144083,6 +150522,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144104,6 +150544,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144127,6 +150568,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144150,6 +150592,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144172,6 +150615,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144194,6 +150638,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144217,6 +150662,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144240,6 +150686,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144261,6 +150708,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144282,6 +150730,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144306,6 +150755,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144330,6 +150780,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144352,6 +150803,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144374,6 +150826,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144395,6 +150848,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144416,6 +150870,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144436,6 +150891,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144456,6 +150912,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144478,6 +150935,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144500,6 +150958,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144520,6 +150979,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144540,6 +151000,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144562,6 +151023,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144584,6 +151046,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144605,6 +151068,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144626,6 +151090,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144649,6 +151114,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144672,6 +151138,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144694,6 +151161,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144716,6 +151184,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144739,6 +151208,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144762,6 +151232,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144783,6 +151254,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144804,6 +151276,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144828,6 +151301,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144852,6 +151326,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144874,6 +151349,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144896,6 +151372,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144917,6 +151394,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144938,6 +151416,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144958,6 +151437,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -144978,6 +151458,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145000,6 +151481,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145022,6 +151504,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145042,6 +151525,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145062,6 +151546,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145084,6 +151569,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145106,6 +151592,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145127,6 +151614,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145148,6 +151636,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145171,6 +151660,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145194,6 +151684,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145216,6 +151707,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145238,6 +151730,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145261,6 +151754,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145284,6 +151778,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145305,6 +151800,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145326,6 +151822,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145350,6 +151847,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145374,6 +151872,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145396,6 +151895,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145418,6 +151918,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145438,6 +151939,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145458,6 +151960,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145479,6 +151982,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145500,6 +152004,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145522,6 +152027,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145544,6 +152050,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145564,6 +152071,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145584,6 +152092,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145605,6 +152114,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145626,6 +152136,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145648,6 +152159,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145670,6 +152182,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145691,6 +152204,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145712,6 +152226,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145732,6 +152247,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145752,6 +152268,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145772,6 +152289,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145792,6 +152310,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145814,6 +152333,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145836,6 +152356,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145857,6 +152378,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145878,6 +152400,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145901,6 +152424,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145924,6 +152448,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145946,6 +152471,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145968,6 +152494,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -145989,6 +152516,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146010,6 +152538,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146032,6 +152561,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146054,6 +152584,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146075,6 +152606,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146096,6 +152628,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146116,6 +152649,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146136,6 +152670,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146156,6 +152691,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146176,6 +152712,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146198,6 +152735,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146220,6 +152758,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146241,6 +152780,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146262,6 +152802,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146285,6 +152826,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146308,6 +152850,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146330,6 +152873,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146352,6 +152896,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146373,6 +152918,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146394,6 +152940,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146416,6 +152963,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146438,6 +152986,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146459,6 +153008,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146480,6 +153030,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146500,6 +153051,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146520,6 +153072,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146540,6 +153093,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146560,6 +153114,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146582,6 +153137,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146604,6 +153160,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146625,6 +153182,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146646,6 +153204,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146669,6 +153228,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146692,6 +153252,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146714,6 +153275,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146736,6 +153298,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146757,6 +153320,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146778,6 +153342,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146800,6 +153365,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146822,6 +153388,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146843,6 +153410,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146864,6 +153432,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146884,6 +153453,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146904,6 +153474,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146924,6 +153495,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146944,6 +153516,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146966,6 +153539,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -146988,6 +153562,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147009,6 +153584,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147030,6 +153606,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147053,6 +153630,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147076,6 +153654,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147098,6 +153677,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147120,6 +153700,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147141,6 +153722,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147162,6 +153744,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147184,6 +153767,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147206,6 +153790,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147227,6 +153812,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147248,6 +153834,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147268,6 +153855,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147288,6 +153876,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147308,6 +153897,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147328,6 +153918,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147350,6 +153941,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147372,6 +153964,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147393,6 +153986,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147414,6 +154008,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147437,6 +154032,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147460,6 +154056,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147482,6 +154079,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147504,6 +154102,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147525,6 +154124,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147546,6 +154146,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147568,6 +154169,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147590,6 +154192,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147611,6 +154214,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147632,6 +154236,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147652,6 +154257,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147672,6 +154278,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147692,6 +154299,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147712,6 +154320,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147734,6 +154343,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147756,6 +154366,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147777,6 +154388,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147798,6 +154410,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147821,6 +154434,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147844,6 +154458,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147866,6 +154481,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147888,6 +154504,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147909,6 +154526,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147930,6 +154548,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147952,6 +154571,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147974,6 +154594,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -147994,6 +154615,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148014,6 +154636,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148035,6 +154658,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148056,6 +154680,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148078,6 +154703,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148100,6 +154726,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148120,6 +154747,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148140,6 +154768,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148161,6 +154790,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148182,6 +154812,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148204,6 +154835,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148226,6 +154858,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148247,6 +154880,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148268,6 +154902,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148288,6 +154923,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148308,6 +154944,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148330,6 +154967,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148352,6 +154990,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148372,6 +155011,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148392,6 +155032,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148414,6 +155055,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148436,6 +155078,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148457,6 +155100,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148478,6 +155122,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148501,6 +155146,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148524,6 +155170,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148546,6 +155193,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148568,6 +155216,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148591,6 +155240,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148614,6 +155264,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148635,6 +155286,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148656,6 +155308,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148680,6 +155333,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148704,6 +155358,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148726,6 +155381,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148748,6 +155404,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148769,6 +155426,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148790,6 +155448,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148810,6 +155469,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148830,6 +155490,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148852,6 +155513,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148874,6 +155536,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148894,6 +155557,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148914,6 +155578,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148936,6 +155601,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148958,6 +155624,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -148979,6 +155646,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149000,6 +155668,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149023,6 +155692,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149046,6 +155716,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149068,6 +155739,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149090,6 +155762,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149113,6 +155786,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149136,6 +155810,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149157,6 +155832,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149178,6 +155854,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149202,6 +155879,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149226,6 +155904,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149248,6 +155927,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149270,6 +155950,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149291,6 +155972,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149312,6 +155994,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149332,6 +156015,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149352,6 +156036,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149374,6 +156059,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149396,6 +156082,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149416,6 +156103,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149436,6 +156124,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149458,6 +156147,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149480,6 +156170,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149501,6 +156192,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149522,6 +156214,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149545,6 +156238,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149568,6 +156262,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149590,6 +156285,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149612,6 +156308,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149635,6 +156332,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149658,6 +156356,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149679,6 +156378,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149700,6 +156400,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149724,6 +156425,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149748,6 +156450,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149770,6 +156473,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149792,6 +156496,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149813,6 +156518,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149834,6 +156540,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149854,6 +156561,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149874,6 +156582,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149896,6 +156605,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149918,6 +156628,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149938,6 +156649,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149958,6 +156670,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -149980,6 +156693,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150002,6 +156716,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150023,6 +156738,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150044,6 +156760,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150067,6 +156784,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150090,6 +156808,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150112,6 +156831,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150134,6 +156854,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150157,6 +156878,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150180,6 +156902,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150201,6 +156924,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150222,6 +156946,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150246,6 +156971,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150270,6 +156996,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150292,6 +157019,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150314,6 +157042,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150335,6 +157064,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150356,6 +157086,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150376,6 +157107,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150396,6 +157128,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150418,6 +157151,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150440,6 +157174,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150460,6 +157195,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150480,6 +157216,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150502,6 +157239,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150524,6 +157262,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150545,6 +157284,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150566,6 +157306,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150589,6 +157330,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150612,6 +157354,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150634,6 +157377,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150656,6 +157400,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150679,6 +157424,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150702,6 +157448,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150723,6 +157470,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150744,6 +157492,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150768,6 +157517,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150792,6 +157542,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150814,6 +157565,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150836,6 +157588,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150857,6 +157610,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150878,6 +157632,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150898,6 +157653,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150918,6 +157674,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150940,6 +157697,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150962,6 +157720,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -150982,6 +157741,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151002,6 +157762,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151024,6 +157785,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151046,6 +157808,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151067,6 +157830,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151088,6 +157852,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151111,6 +157876,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151134,6 +157900,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151156,6 +157923,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151178,6 +157946,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151201,6 +157970,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151224,6 +157994,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151245,6 +158016,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151266,6 +158038,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151290,6 +158063,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151314,6 +158088,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151336,6 +158111,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151358,6 +158134,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151378,6 +158155,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151398,6 +158176,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151419,6 +158198,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151440,6 +158220,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151462,6 +158243,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151484,6 +158266,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151504,6 +158287,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151524,6 +158308,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151545,6 +158330,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151566,6 +158352,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151588,6 +158375,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151610,6 +158398,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151631,6 +158420,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151652,6 +158442,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151672,6 +158463,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151692,6 +158484,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151714,6 +158507,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151736,6 +158530,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151756,6 +158551,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151776,6 +158572,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151798,6 +158595,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151820,6 +158618,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151841,6 +158640,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151862,6 +158662,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151885,6 +158686,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151908,6 +158710,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151930,6 +158733,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151952,6 +158756,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151975,6 +158780,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -151998,6 +158804,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152019,6 +158826,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152040,6 +158848,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152064,6 +158873,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152088,6 +158898,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152110,6 +158921,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152132,6 +158944,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152153,6 +158966,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152174,6 +158988,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152194,6 +159009,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152214,6 +159030,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152236,6 +159053,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152258,6 +159076,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152278,6 +159097,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152298,6 +159118,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152320,6 +159141,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152342,6 +159164,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152363,6 +159186,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152384,6 +159208,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152407,6 +159232,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152430,6 +159256,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152452,6 +159279,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152474,6 +159302,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152497,6 +159326,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152520,6 +159350,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152541,6 +159372,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152562,6 +159394,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152586,6 +159419,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152610,6 +159444,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152632,6 +159467,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152654,6 +159490,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152675,6 +159512,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152696,6 +159534,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152716,6 +159555,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152736,6 +159576,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152758,6 +159599,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152780,6 +159622,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152800,6 +159643,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152820,6 +159664,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152842,6 +159687,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152864,6 +159710,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152885,6 +159732,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152906,6 +159754,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152929,6 +159778,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152952,6 +159802,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152974,6 +159825,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -152996,6 +159848,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153019,6 +159872,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153042,6 +159896,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153063,6 +159918,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153084,6 +159940,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153108,6 +159965,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153132,6 +159990,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153154,6 +160013,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153176,6 +160036,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153197,6 +160058,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153218,6 +160080,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153238,6 +160101,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153258,6 +160122,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153280,6 +160145,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153302,6 +160168,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153322,6 +160189,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153342,6 +160210,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153364,6 +160233,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153386,6 +160256,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153407,6 +160278,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153428,6 +160300,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153451,6 +160324,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153474,6 +160348,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153496,6 +160371,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153518,6 +160394,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153541,6 +160418,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153564,6 +160442,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153585,6 +160464,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153606,6 +160486,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153630,6 +160511,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153654,6 +160536,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153676,6 +160559,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153698,6 +160582,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153719,6 +160604,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153740,6 +160626,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153760,6 +160647,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153780,6 +160668,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153802,6 +160691,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153824,6 +160714,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153844,6 +160735,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153864,6 +160756,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153886,6 +160779,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153908,6 +160802,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153929,6 +160824,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153950,6 +160846,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153973,6 +160870,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -153996,6 +160894,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154018,6 +160917,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154040,6 +160940,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154063,6 +160964,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154086,6 +160988,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154107,6 +161010,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154128,6 +161032,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154152,6 +161057,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154176,6 +161082,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154198,6 +161105,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154220,6 +161128,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154241,6 +161150,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154262,6 +161172,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154282,6 +161193,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154302,6 +161214,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154324,6 +161237,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154346,6 +161260,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154366,6 +161281,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154386,6 +161302,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154408,6 +161325,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154430,6 +161348,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154451,6 +161370,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154472,6 +161392,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154495,6 +161416,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154518,6 +161440,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154540,6 +161463,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154562,6 +161486,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154585,6 +161510,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154608,6 +161534,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154629,6 +161556,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154650,6 +161578,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154674,6 +161603,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154698,6 +161628,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154720,6 +161651,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154742,6 +161674,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154762,6 +161695,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154782,6 +161716,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154803,6 +161738,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154824,6 +161760,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154846,6 +161783,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154868,6 +161806,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154888,6 +161827,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154908,6 +161848,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154929,6 +161870,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154950,6 +161892,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154972,6 +161915,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -154994,6 +161938,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155015,6 +161960,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155036,6 +161982,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155056,6 +162003,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155076,6 +162024,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155098,6 +162047,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155120,6 +162070,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155140,6 +162091,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155160,6 +162112,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155182,6 +162135,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155204,6 +162158,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155225,6 +162180,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155246,6 +162202,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155269,6 +162226,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155292,6 +162250,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155314,6 +162273,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155336,6 +162296,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155359,6 +162320,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155382,6 +162344,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155403,6 +162366,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155424,6 +162388,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155448,6 +162413,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155472,6 +162438,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155494,6 +162461,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155516,6 +162484,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155537,6 +162506,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155558,6 +162528,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155578,6 +162549,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155598,6 +162570,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155620,6 +162593,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155642,6 +162616,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155662,6 +162637,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155682,6 +162658,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155704,6 +162681,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155726,6 +162704,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155747,6 +162726,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155768,6 +162748,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155791,6 +162772,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155814,6 +162796,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155836,6 +162819,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155858,6 +162842,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155881,6 +162866,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155904,6 +162890,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155925,6 +162912,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155946,6 +162934,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155970,6 +162959,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -155994,6 +162984,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156016,6 +163007,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156038,6 +163030,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156059,6 +163052,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156080,6 +163074,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156100,6 +163095,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156120,6 +163116,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156142,6 +163139,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156164,6 +163162,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156184,6 +163183,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156204,6 +163204,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156226,6 +163227,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156248,6 +163250,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156269,6 +163272,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156290,6 +163294,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156313,6 +163318,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156336,6 +163342,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156358,6 +163365,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156380,6 +163388,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156403,6 +163412,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156426,6 +163436,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156447,6 +163458,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156468,6 +163480,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156492,6 +163505,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156516,6 +163530,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156538,6 +163553,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156560,6 +163576,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156581,6 +163598,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156602,6 +163620,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156622,6 +163641,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156642,6 +163662,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156664,6 +163685,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156686,6 +163708,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156706,6 +163729,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156726,6 +163750,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156748,6 +163773,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156770,6 +163796,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156791,6 +163818,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156812,6 +163840,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156835,6 +163864,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156858,6 +163888,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156880,6 +163911,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156902,6 +163934,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156925,6 +163958,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156948,6 +163982,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156969,6 +164004,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -156990,6 +164026,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157014,6 +164051,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157038,6 +164076,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157060,6 +164099,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157082,6 +164122,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157103,6 +164144,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157124,6 +164166,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157144,6 +164187,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157164,6 +164208,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157186,6 +164231,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157208,6 +164254,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157228,6 +164275,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157248,6 +164296,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157270,6 +164319,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157292,6 +164342,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157313,6 +164364,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157334,6 +164386,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157357,6 +164410,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157380,6 +164434,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157402,6 +164457,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157424,6 +164480,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157447,6 +164504,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157470,6 +164528,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157491,6 +164550,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157512,6 +164572,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157536,6 +164597,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157560,6 +164622,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157582,6 +164645,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157604,6 +164668,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157625,6 +164690,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157646,6 +164712,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157666,6 +164733,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157686,6 +164754,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157708,6 +164777,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157730,6 +164800,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157750,6 +164821,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157770,6 +164842,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157792,6 +164865,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157814,6 +164888,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157835,6 +164910,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157856,6 +164932,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157879,6 +164956,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157902,6 +164980,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157924,6 +165003,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157946,6 +165026,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157969,6 +165050,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -157992,6 +165074,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158013,6 +165096,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158034,6 +165118,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158058,6 +165143,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158082,6 +165168,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158104,6 +165191,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158126,6 +165214,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158146,6 +165235,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158166,6 +165256,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158187,6 +165278,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158208,6 +165300,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158230,6 +165323,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158252,6 +165346,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158272,6 +165367,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158292,6 +165388,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158313,6 +165410,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158334,6 +165432,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158356,6 +165455,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158378,6 +165478,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158399,6 +165500,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158420,6 +165522,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158440,6 +165543,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158460,6 +165564,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158480,6 +165585,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158500,6 +165606,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158522,6 +165629,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158544,6 +165652,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158565,6 +165674,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158586,6 +165696,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158609,6 +165720,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158632,6 +165744,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158654,6 +165767,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158676,6 +165790,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158697,6 +165812,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158718,6 +165834,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158740,6 +165857,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158762,6 +165880,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158783,6 +165902,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158804,6 +165924,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158824,6 +165945,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158844,6 +165966,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158864,6 +165987,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158884,6 +166008,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158906,6 +166031,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158928,6 +166054,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158949,6 +166076,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158970,6 +166098,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -158993,6 +166122,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159016,6 +166146,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159038,6 +166169,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159060,6 +166192,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159081,6 +166214,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159102,6 +166236,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159124,6 +166259,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159146,6 +166282,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159167,6 +166304,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159188,6 +166326,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159208,6 +166347,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159228,6 +166368,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159248,6 +166389,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159268,6 +166410,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159290,6 +166433,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159312,6 +166456,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159333,6 +166478,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159354,6 +166500,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159377,6 +166524,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159400,6 +166548,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159422,6 +166571,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159444,6 +166594,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159465,6 +166616,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159486,6 +166638,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159508,6 +166661,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159530,6 +166684,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159551,6 +166706,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159572,6 +166728,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159592,6 +166749,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159612,6 +166770,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159632,6 +166791,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159652,6 +166812,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159674,6 +166835,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159696,6 +166858,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159717,6 +166880,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159738,6 +166902,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159761,6 +166926,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159784,6 +166950,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159806,6 +166973,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159828,6 +166996,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159849,6 +167018,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159870,6 +167040,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159892,6 +167063,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159914,6 +167086,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159935,6 +167108,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159956,6 +167130,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159976,6 +167151,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -159996,6 +167172,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160016,6 +167193,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160036,6 +167214,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160058,6 +167237,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160080,6 +167260,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160101,6 +167282,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160122,6 +167304,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160145,6 +167328,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160168,6 +167352,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160190,6 +167375,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160212,6 +167398,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160233,6 +167420,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160254,6 +167442,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160276,6 +167465,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160298,6 +167488,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160319,6 +167510,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160340,6 +167532,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160360,6 +167553,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160380,6 +167574,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160400,6 +167595,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160420,6 +167616,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160442,6 +167639,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160464,6 +167662,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160485,6 +167684,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160506,6 +167706,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160529,6 +167730,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160552,6 +167754,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160574,6 +167777,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160596,6 +167800,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160617,6 +167822,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160638,6 +167844,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160660,6 +167867,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160682,6 +167890,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160702,6 +167911,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160722,6 +167932,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160743,6 +167954,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160764,6 +167976,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160786,6 +167999,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160808,6 +168022,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160828,6 +168043,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160848,6 +168064,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160869,6 +168086,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160890,6 +168108,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160912,6 +168131,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160934,6 +168154,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160955,6 +168176,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160976,6 +168198,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -160996,6 +168219,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161016,6 +168240,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161038,6 +168263,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161060,6 +168286,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161080,6 +168307,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161100,6 +168328,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161122,6 +168351,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161144,6 +168374,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161165,6 +168396,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161186,6 +168418,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161209,6 +168442,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161232,6 +168466,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161254,6 +168489,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161276,6 +168512,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161299,6 +168536,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161322,6 +168560,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161343,6 +168582,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161364,6 +168604,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161388,6 +168629,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161412,6 +168654,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161434,6 +168677,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161456,6 +168700,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161477,6 +168722,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161498,6 +168744,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161518,6 +168765,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161538,6 +168786,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161560,6 +168809,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161582,6 +168832,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161602,6 +168853,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161622,6 +168874,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161644,6 +168897,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161666,6 +168920,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161687,6 +168942,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161708,6 +168964,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161731,6 +168988,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161754,6 +169012,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161776,6 +169035,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161798,6 +169058,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161821,6 +169082,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161844,6 +169106,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161865,6 +169128,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161886,6 +169150,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161910,6 +169175,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161934,6 +169200,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161956,6 +169223,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161978,6 +169246,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -161999,6 +169268,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162020,6 +169290,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162040,6 +169311,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162060,6 +169332,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162082,6 +169355,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162104,6 +169378,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162124,6 +169399,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162144,6 +169420,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162166,6 +169443,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162188,6 +169466,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162209,6 +169488,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162230,6 +169510,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162253,6 +169534,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162276,6 +169558,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162298,6 +169581,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162320,6 +169604,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162343,6 +169628,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162366,6 +169652,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162387,6 +169674,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162408,6 +169696,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162432,6 +169721,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162456,6 +169746,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162478,6 +169769,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162500,6 +169792,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162521,6 +169814,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162542,6 +169836,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162562,6 +169857,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162582,6 +169878,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162604,6 +169901,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162626,6 +169924,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162646,6 +169945,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162666,6 +169966,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162688,6 +169989,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162710,6 +170012,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162731,6 +170034,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162752,6 +170056,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162775,6 +170080,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162798,6 +170104,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162820,6 +170127,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162842,6 +170150,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162865,6 +170174,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162888,6 +170198,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162909,6 +170220,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162930,6 +170242,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162954,6 +170267,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -162978,6 +170292,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163000,6 +170315,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163022,6 +170338,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163043,6 +170360,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163064,6 +170382,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163084,6 +170403,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163104,6 +170424,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163126,6 +170447,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163148,6 +170470,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163168,6 +170491,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163188,6 +170512,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163210,6 +170535,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163232,6 +170558,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163253,6 +170580,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163274,6 +170602,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163297,6 +170626,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163320,6 +170650,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163342,6 +170673,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163364,6 +170696,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163387,6 +170720,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163410,6 +170744,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163431,6 +170766,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163452,6 +170788,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163476,6 +170813,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163500,6 +170838,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163522,6 +170861,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163544,6 +170884,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163565,6 +170906,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163586,6 +170928,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163606,6 +170949,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163626,6 +170970,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163648,6 +170993,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163670,6 +171016,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163690,6 +171037,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163710,6 +171058,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163732,6 +171081,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163754,6 +171104,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163775,6 +171126,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163796,6 +171148,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163819,6 +171172,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163842,6 +171196,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163864,6 +171219,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163886,6 +171242,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163909,6 +171266,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163932,6 +171290,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163953,6 +171312,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163974,6 +171334,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -163998,6 +171359,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164022,6 +171384,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164044,6 +171407,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164066,6 +171430,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164086,6 +171451,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164106,6 +171472,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164127,6 +171494,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164148,6 +171516,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164170,6 +171539,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164192,6 +171562,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164212,6 +171583,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164232,6 +171604,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164253,6 +171626,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164274,6 +171648,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164296,6 +171671,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164318,6 +171694,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164339,6 +171716,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164360,6 +171738,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164380,6 +171759,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164400,6 +171780,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164420,6 +171801,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164440,6 +171822,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164462,6 +171845,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164484,6 +171868,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164505,6 +171890,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164526,6 +171912,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164549,6 +171936,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164572,6 +171960,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164594,6 +171983,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164616,6 +172006,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164637,6 +172028,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164658,6 +172050,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164680,6 +172073,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164702,6 +172096,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164723,6 +172118,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164744,6 +172140,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164764,6 +172161,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164784,6 +172182,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164804,6 +172203,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164824,6 +172224,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164846,6 +172247,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164868,6 +172270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164889,6 +172292,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164910,6 +172314,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164933,6 +172338,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164956,6 +172362,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -164978,6 +172385,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165000,6 +172408,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165021,6 +172430,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165042,6 +172452,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165064,6 +172475,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165086,6 +172498,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165107,6 +172520,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165128,6 +172542,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165148,6 +172563,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165168,6 +172584,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165188,6 +172605,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165208,6 +172626,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165230,6 +172649,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165252,6 +172672,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165273,6 +172694,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165294,6 +172716,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165317,6 +172740,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165340,6 +172764,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165362,6 +172787,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165384,6 +172810,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165405,6 +172832,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165426,6 +172854,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165448,6 +172877,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165470,6 +172900,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165491,6 +172922,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165512,6 +172944,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165532,6 +172965,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165552,6 +172986,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165572,6 +173007,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165592,6 +173028,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165614,6 +173051,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165636,6 +173074,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165657,6 +173096,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165678,6 +173118,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165701,6 +173142,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165724,6 +173166,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165746,6 +173189,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165768,6 +173212,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165789,6 +173234,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165810,6 +173256,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165832,6 +173279,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165854,6 +173302,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165875,6 +173324,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165896,6 +173346,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165916,6 +173367,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165936,6 +173388,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165956,6 +173409,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165976,6 +173430,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -165998,6 +173453,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166020,6 +173476,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166041,6 +173498,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166062,6 +173520,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166085,6 +173544,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166108,6 +173568,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166130,6 +173591,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166152,6 +173614,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166173,6 +173636,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166194,6 +173658,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166216,6 +173681,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166238,6 +173704,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166259,6 +173726,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166280,6 +173748,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166300,6 +173769,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166320,6 +173790,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166340,6 +173811,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166360,6 +173832,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166382,6 +173855,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166404,6 +173878,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166425,6 +173900,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166446,6 +173922,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166469,6 +173946,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166492,6 +173970,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166514,6 +173993,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166536,6 +174016,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166557,6 +174038,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166578,6 +174060,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166600,6 +174083,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166622,6 +174106,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166642,6 +174127,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166662,6 +174148,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166683,6 +174170,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166704,6 +174192,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166726,6 +174215,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166748,6 +174238,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166768,6 +174259,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166788,6 +174280,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166809,6 +174302,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166830,6 +174324,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166852,6 +174347,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166874,6 +174370,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166895,6 +174392,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166916,6 +174414,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166936,6 +174435,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166956,6 +174456,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -166978,6 +174479,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167000,6 +174502,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167020,6 +174523,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167040,6 +174544,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167062,6 +174567,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167084,6 +174590,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167105,6 +174612,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167126,6 +174634,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167149,6 +174658,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167172,6 +174682,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167194,6 +174705,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167216,6 +174728,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167239,6 +174752,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167262,6 +174776,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167283,6 +174798,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167304,6 +174820,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167328,6 +174845,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167352,6 +174870,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167374,6 +174893,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167396,6 +174916,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167417,6 +174938,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167438,6 +174960,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167458,6 +174981,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167478,6 +175002,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167500,6 +175025,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167522,6 +175048,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167542,6 +175069,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167562,6 +175090,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167584,6 +175113,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167606,6 +175136,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167627,6 +175158,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167648,6 +175180,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167671,6 +175204,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167694,6 +175228,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167716,6 +175251,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167738,6 +175274,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167761,6 +175298,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167784,6 +175322,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167805,6 +175344,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167826,6 +175366,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167850,6 +175391,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167874,6 +175416,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167896,6 +175439,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167918,6 +175462,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167939,6 +175484,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167960,6 +175506,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -167980,6 +175527,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168000,6 +175548,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168022,6 +175571,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168044,6 +175594,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168064,6 +175615,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168084,6 +175636,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168106,6 +175659,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168128,6 +175682,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168149,6 +175704,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168170,6 +175726,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168193,6 +175750,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168216,6 +175774,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168238,6 +175797,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168260,6 +175820,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168283,6 +175844,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168306,6 +175868,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168327,6 +175890,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168348,6 +175912,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168372,6 +175937,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168396,6 +175962,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168418,6 +175985,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168440,6 +176008,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168461,6 +176030,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168482,6 +176052,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168502,6 +176073,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168522,6 +176094,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168544,6 +176117,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168566,6 +176140,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168586,6 +176161,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168606,6 +176182,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168628,6 +176205,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168650,6 +176228,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168671,6 +176250,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168692,6 +176272,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168715,6 +176296,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168738,6 +176320,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168760,6 +176343,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168782,6 +176366,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168805,6 +176390,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168828,6 +176414,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168849,6 +176436,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168870,6 +176458,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168894,6 +176483,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168918,6 +176508,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168940,6 +176531,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168962,6 +176554,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -168983,6 +176576,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169004,6 +176598,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169024,6 +176619,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169044,6 +176640,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169066,6 +176663,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169088,6 +176686,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169108,6 +176707,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169128,6 +176728,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169150,6 +176751,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169172,6 +176774,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169193,6 +176796,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169214,6 +176818,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169237,6 +176842,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169260,6 +176866,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169282,6 +176889,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169304,6 +176912,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169327,6 +176936,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169350,6 +176960,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169371,6 +176982,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169392,6 +177004,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169416,6 +177029,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169440,6 +177054,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169462,6 +177077,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169484,6 +177100,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169505,6 +177122,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169526,6 +177144,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169546,6 +177165,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169566,6 +177186,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169588,6 +177209,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169610,6 +177232,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169630,6 +177253,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169650,6 +177274,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169672,6 +177297,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169694,6 +177320,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169715,6 +177342,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169736,6 +177364,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169759,6 +177388,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169782,6 +177412,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169804,6 +177435,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169826,6 +177458,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169849,6 +177482,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169872,6 +177506,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169893,6 +177528,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169914,6 +177550,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169938,6 +177575,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169962,6 +177600,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -169984,6 +177623,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170006,6 +177646,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170026,6 +177667,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170046,6 +177688,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170067,6 +177710,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170088,6 +177732,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170110,6 +177755,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170132,6 +177778,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170152,6 +177799,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170172,6 +177820,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170193,6 +177842,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170214,6 +177864,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170236,6 +177887,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170258,6 +177910,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170279,6 +177932,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170300,6 +177954,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170320,6 +177975,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170340,6 +177996,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170360,6 +178017,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170380,6 +178038,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170402,6 +178061,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170424,6 +178084,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170445,6 +178106,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170466,6 +178128,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170489,6 +178152,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170512,6 +178176,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170534,6 +178199,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170556,6 +178222,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170577,6 +178244,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170598,6 +178266,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170620,6 +178289,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170642,6 +178312,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170663,6 +178334,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170684,6 +178356,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170704,6 +178377,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170724,6 +178398,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170744,6 +178419,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170764,6 +178440,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170786,6 +178463,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170808,6 +178486,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170829,6 +178508,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170850,6 +178530,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170873,6 +178554,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170896,6 +178578,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170918,6 +178601,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170940,6 +178624,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170961,6 +178646,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -170982,6 +178668,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171004,6 +178691,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171026,6 +178714,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171047,6 +178736,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171068,6 +178758,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171088,6 +178779,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171108,6 +178800,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171128,6 +178821,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171148,6 +178842,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171170,6 +178865,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171192,6 +178888,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171213,6 +178910,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171234,6 +178932,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171257,6 +178956,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171280,6 +178980,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171302,6 +179003,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171324,6 +179026,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171345,6 +179048,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171366,6 +179070,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171388,6 +179093,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171410,6 +179116,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171431,6 +179138,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171452,6 +179160,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171472,6 +179181,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171492,6 +179202,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171512,6 +179223,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171532,6 +179244,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171554,6 +179267,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171576,6 +179290,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171597,6 +179312,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171618,6 +179334,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171641,6 +179358,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171664,6 +179382,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171686,6 +179405,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171708,6 +179428,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171729,6 +179450,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171750,6 +179472,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171772,6 +179495,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171794,6 +179518,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171815,6 +179540,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171836,6 +179562,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171856,6 +179583,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171876,6 +179604,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171896,6 +179625,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171916,6 +179646,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171938,6 +179669,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171960,6 +179692,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -171981,6 +179714,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172002,6 +179736,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172025,6 +179760,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172048,6 +179784,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172070,6 +179807,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172092,6 +179830,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172113,6 +179852,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172134,6 +179874,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172156,6 +179897,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172178,6 +179920,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172199,6 +179942,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172220,6 +179964,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172240,6 +179985,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172260,6 +180006,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172280,6 +180027,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172300,6 +180048,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172322,6 +180071,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172344,6 +180094,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172365,6 +180116,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172386,6 +180138,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172409,6 +180162,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172432,6 +180186,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172454,6 +180209,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172476,6 +180232,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172497,6 +180254,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172518,6 +180276,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172540,6 +180299,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172562,6 +180322,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172582,6 +180343,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172602,6 +180364,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172623,6 +180386,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172644,6 +180408,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172666,6 +180431,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172688,6 +180454,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172708,6 +180475,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172728,6 +180496,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172749,6 +180518,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172770,6 +180540,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172792,6 +180563,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172814,6 +180586,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172835,6 +180608,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172856,6 +180630,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172876,6 +180651,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172896,6 +180672,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172918,6 +180695,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172940,6 +180718,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172960,6 +180739,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -172980,6 +180760,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173002,6 +180783,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173024,6 +180806,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173045,6 +180828,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173066,6 +180850,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173089,6 +180874,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173112,6 +180898,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173134,6 +180921,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173156,6 +180944,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173179,6 +180968,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173202,6 +180992,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173223,6 +181014,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173244,6 +181036,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173268,6 +181061,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173292,6 +181086,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173314,6 +181109,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173336,6 +181132,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173357,6 +181154,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173378,6 +181176,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173398,6 +181197,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173418,6 +181218,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173440,6 +181241,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173462,6 +181264,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173482,6 +181285,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173502,6 +181306,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173524,6 +181329,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173546,6 +181352,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173567,6 +181374,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173588,6 +181396,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173611,6 +181420,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173634,6 +181444,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173656,6 +181467,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173678,6 +181490,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173701,6 +181514,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173724,6 +181538,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173745,6 +181560,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173766,6 +181582,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173790,6 +181607,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173814,6 +181632,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173836,6 +181655,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173858,6 +181678,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173879,6 +181700,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173900,6 +181722,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173920,6 +181743,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173940,6 +181764,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173962,6 +181787,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -173984,6 +181810,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174004,6 +181831,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174024,6 +181852,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174046,6 +181875,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174068,6 +181898,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174089,6 +181920,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174110,6 +181942,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174133,6 +181966,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174156,6 +181990,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174178,6 +182013,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174200,6 +182036,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174223,6 +182060,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174246,6 +182084,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174267,6 +182106,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174288,6 +182128,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174312,6 +182153,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174336,6 +182178,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174358,6 +182201,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174380,6 +182224,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174401,6 +182246,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174422,6 +182268,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174442,6 +182289,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174462,6 +182310,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174484,6 +182333,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174506,6 +182356,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174526,6 +182377,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174546,6 +182398,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174568,6 +182421,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174590,6 +182444,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174611,6 +182466,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174632,6 +182488,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174655,6 +182512,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174678,6 +182536,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174700,6 +182559,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174722,6 +182582,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174745,6 +182606,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174768,6 +182630,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174789,6 +182652,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174810,6 +182674,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174834,6 +182699,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174858,6 +182724,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174880,6 +182747,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174902,6 +182770,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174923,6 +182792,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174944,6 +182814,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174964,6 +182835,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -174984,6 +182856,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175006,6 +182879,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175028,6 +182902,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175048,6 +182923,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175068,6 +182944,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175090,6 +182967,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175112,6 +182990,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175133,6 +183012,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175154,6 +183034,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175177,6 +183058,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175200,6 +183082,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175222,6 +183105,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175244,6 +183128,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175267,6 +183152,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175290,6 +183176,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175311,6 +183198,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175332,6 +183220,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175356,6 +183245,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175380,6 +183270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175402,6 +183293,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175424,6 +183316,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175445,6 +183338,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175466,6 +183360,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175486,6 +183381,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175506,6 +183402,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175528,6 +183425,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175550,6 +183448,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175570,6 +183469,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175590,6 +183490,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175612,6 +183513,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175634,6 +183536,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175655,6 +183558,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175676,6 +183580,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175699,6 +183604,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175722,6 +183628,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175744,6 +183651,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175766,6 +183674,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175789,6 +183698,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175812,6 +183722,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175833,6 +183744,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175854,6 +183766,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175878,6 +183791,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175902,6 +183816,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175924,6 +183839,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175946,6 +183862,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175966,6 +183883,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -175986,6 +183904,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176007,6 +183926,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176028,6 +183948,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176050,6 +183971,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176072,6 +183994,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176092,6 +184015,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176112,6 +184036,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176133,6 +184058,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176154,6 +184080,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176176,6 +184103,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176198,6 +184126,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176219,6 +184148,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176240,6 +184170,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176260,6 +184191,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176280,6 +184212,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176300,6 +184233,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176320,6 +184254,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176342,6 +184277,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176364,6 +184300,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176385,6 +184322,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176406,6 +184344,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176429,6 +184368,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176452,6 +184392,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176474,6 +184415,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176496,6 +184438,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176517,6 +184460,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176538,6 +184482,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176560,6 +184505,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176582,6 +184528,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176603,6 +184550,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176624,6 +184572,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176644,6 +184593,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176664,6 +184614,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176684,6 +184635,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176704,6 +184656,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176726,6 +184679,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176748,6 +184702,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176769,6 +184724,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176790,6 +184746,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176813,6 +184770,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176836,6 +184794,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176858,6 +184817,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176880,6 +184840,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176901,6 +184862,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176922,6 +184884,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176944,6 +184907,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176966,6 +184930,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -176987,6 +184952,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177008,6 +184974,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177028,6 +184995,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177048,6 +185016,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177068,6 +185037,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177088,6 +185058,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177110,6 +185081,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177132,6 +185104,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177153,6 +185126,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177174,6 +185148,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177197,6 +185172,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177220,6 +185196,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177242,6 +185219,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177264,6 +185242,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177285,6 +185264,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177306,6 +185286,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177328,6 +185309,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177350,6 +185332,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177371,6 +185354,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177392,6 +185376,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177412,6 +185397,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177432,6 +185418,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177452,6 +185439,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177472,6 +185460,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177494,6 +185483,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177516,6 +185506,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177537,6 +185528,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177558,6 +185550,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177581,6 +185574,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177604,6 +185598,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177626,6 +185621,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177648,6 +185644,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177669,6 +185666,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177690,6 +185688,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177712,6 +185711,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177734,6 +185734,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177755,6 +185756,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177776,6 +185778,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177796,6 +185799,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177816,6 +185820,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177836,6 +185841,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177856,6 +185862,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177878,6 +185885,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177900,6 +185908,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177921,6 +185930,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177942,6 +185952,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177965,6 +185976,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -177988,6 +186000,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178010,6 +186023,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178032,6 +186046,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178053,6 +186068,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178074,6 +186090,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178096,6 +186113,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178118,6 +186136,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178139,6 +186158,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178160,6 +186180,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178180,6 +186201,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178200,6 +186222,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178220,6 +186243,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178240,6 +186264,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178262,6 +186287,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178284,6 +186310,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178305,6 +186332,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178326,6 +186354,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178349,6 +186378,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178372,6 +186402,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178394,6 +186425,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178416,6 +186448,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178437,6 +186470,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178458,6 +186492,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178480,6 +186515,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178502,6 +186538,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178522,6 +186559,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178542,6 +186580,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178563,6 +186602,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178584,6 +186624,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178606,6 +186647,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178628,6 +186670,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178648,6 +186691,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178668,6 +186712,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178689,6 +186734,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178710,6 +186756,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178732,6 +186779,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178754,6 +186802,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178775,6 +186824,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178796,6 +186846,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178816,6 +186867,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178836,6 +186888,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178858,6 +186911,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178880,6 +186934,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178900,6 +186955,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178920,6 +186976,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178942,6 +186999,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178964,6 +187022,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -178985,6 +187044,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179006,6 +187066,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179029,6 +187090,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179052,6 +187114,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179074,6 +187137,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179096,6 +187160,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179119,6 +187184,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179142,6 +187208,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179163,6 +187230,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179184,6 +187252,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179208,6 +187277,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179232,6 +187302,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179254,6 +187325,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179276,6 +187348,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179297,6 +187370,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179318,6 +187392,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179338,6 +187413,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179358,6 +187434,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179380,6 +187457,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179402,6 +187480,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179422,6 +187501,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179442,6 +187522,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179464,6 +187545,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179486,6 +187568,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179507,6 +187590,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179528,6 +187612,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179551,6 +187636,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179574,6 +187660,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179596,6 +187683,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179618,6 +187706,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179641,6 +187730,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179664,6 +187754,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179685,6 +187776,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179706,6 +187798,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179730,6 +187823,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179754,6 +187848,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179776,6 +187871,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179798,6 +187894,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179819,6 +187916,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179840,6 +187938,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179860,6 +187959,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179880,6 +187980,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179902,6 +188003,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179924,6 +188026,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179944,6 +188047,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179964,6 +188068,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -179986,6 +188091,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180008,6 +188114,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180029,6 +188136,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180050,6 +188158,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180073,6 +188182,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180096,6 +188206,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180118,6 +188229,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180140,6 +188252,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180163,6 +188276,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180186,6 +188300,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180207,6 +188322,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180228,6 +188344,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180252,6 +188369,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180276,6 +188394,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180298,6 +188417,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180320,6 +188440,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180341,6 +188462,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180362,6 +188484,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180382,6 +188505,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180402,6 +188526,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180424,6 +188549,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180446,6 +188572,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180466,6 +188593,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180486,6 +188614,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180508,6 +188637,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180530,6 +188660,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180551,6 +188682,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180572,6 +188704,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180595,6 +188728,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180618,6 +188752,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180640,6 +188775,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180662,6 +188798,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180685,6 +188822,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180708,6 +188846,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180729,6 +188868,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180750,6 +188890,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180774,6 +188915,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180798,6 +188940,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180820,6 +188963,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180842,6 +188986,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180863,6 +189008,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180884,6 +189030,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180904,6 +189051,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180924,6 +189072,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180946,6 +189095,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180968,6 +189118,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -180988,6 +189139,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181008,6 +189160,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181030,6 +189183,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181052,6 +189206,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181073,6 +189228,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181094,6 +189250,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181117,6 +189274,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181140,6 +189298,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181162,6 +189321,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181184,6 +189344,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181207,6 +189368,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181230,6 +189392,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181251,6 +189414,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181272,6 +189436,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181296,6 +189461,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181320,6 +189486,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181342,6 +189509,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181364,6 +189532,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181385,6 +189554,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181406,6 +189576,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181426,6 +189597,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181446,6 +189618,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181468,6 +189641,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181490,6 +189664,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181510,6 +189685,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181530,6 +189706,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181552,6 +189729,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181574,6 +189752,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181595,6 +189774,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181616,6 +189796,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181639,6 +189820,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181662,6 +189844,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181684,6 +189867,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181706,6 +189890,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181729,6 +189914,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181752,6 +189938,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181773,6 +189960,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181794,6 +189982,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181818,6 +190007,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181842,6 +190032,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181864,6 +190055,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181886,6 +190078,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181906,6 +190099,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181926,6 +190120,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181947,6 +190142,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181968,6 +190164,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -181990,6 +190187,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182012,6 +190210,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182032,6 +190231,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182052,6 +190252,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182073,6 +190274,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182094,6 +190296,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182116,6 +190319,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182138,6 +190342,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182159,6 +190364,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182180,6 +190386,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182200,6 +190407,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182220,6 +190428,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182242,6 +190451,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182264,6 +190474,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182284,6 +190495,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182304,6 +190516,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182326,6 +190539,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182348,6 +190562,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182369,6 +190584,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182390,6 +190606,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182413,6 +190630,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182436,6 +190654,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182458,6 +190677,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182480,6 +190700,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182503,6 +190724,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182526,6 +190748,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182547,6 +190770,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182568,6 +190792,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182592,6 +190817,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182616,6 +190842,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182638,6 +190865,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182660,6 +190888,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182681,6 +190910,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182702,6 +190932,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182722,6 +190953,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182742,6 +190974,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182764,6 +190997,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182786,6 +191020,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182806,6 +191041,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182826,6 +191062,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182848,6 +191085,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182870,6 +191108,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182891,6 +191130,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182912,6 +191152,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182935,6 +191176,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182958,6 +191200,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -182980,6 +191223,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183002,6 +191246,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183025,6 +191270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183048,6 +191294,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183069,6 +191316,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183090,6 +191338,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183114,6 +191363,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183138,6 +191388,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183160,6 +191411,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183182,6 +191434,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183203,6 +191456,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183224,6 +191478,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183244,6 +191499,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183264,6 +191520,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183286,6 +191543,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183308,6 +191566,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183328,6 +191587,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183348,6 +191608,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183370,6 +191631,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183392,6 +191654,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183413,6 +191676,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183434,6 +191698,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183457,6 +191722,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183480,6 +191746,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183502,6 +191769,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183524,6 +191792,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183547,6 +191816,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183570,6 +191840,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183591,6 +191862,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183612,6 +191884,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183636,6 +191909,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183660,6 +191934,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183682,6 +191957,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183704,6 +191980,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183725,6 +192002,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183746,6 +192024,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183766,6 +192045,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183786,6 +192066,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183808,6 +192089,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183830,6 +192112,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183850,6 +192133,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183870,6 +192154,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183892,6 +192177,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183914,6 +192200,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183935,6 +192222,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183956,6 +192244,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -183979,6 +192268,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184002,6 +192292,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184024,6 +192315,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184046,6 +192338,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184069,6 +192362,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184092,6 +192386,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184113,6 +192408,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184134,6 +192430,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184158,6 +192455,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184182,6 +192480,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184204,6 +192503,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184226,6 +192526,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184247,6 +192548,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184268,6 +192570,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184288,6 +192591,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184308,6 +192612,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184330,6 +192635,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184352,6 +192658,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184372,6 +192679,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184392,6 +192700,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184414,6 +192723,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184436,6 +192746,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184457,6 +192768,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184478,6 +192790,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184501,6 +192814,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184524,6 +192838,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184546,6 +192861,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184568,6 +192884,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184591,6 +192908,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184614,6 +192932,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184635,6 +192954,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184656,6 +192976,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184680,6 +193001,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184704,6 +193026,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184726,6 +193049,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184748,6 +193072,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184769,6 +193094,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184790,6 +193116,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184810,6 +193137,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184830,6 +193158,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184852,6 +193181,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184874,6 +193204,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184894,6 +193225,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184914,6 +193246,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184936,6 +193269,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184958,6 +193292,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -184979,6 +193314,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185000,6 +193336,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185023,6 +193360,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185046,6 +193384,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185068,6 +193407,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185090,6 +193430,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185113,6 +193454,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185136,6 +193478,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185157,6 +193500,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185178,6 +193522,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185202,6 +193547,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185226,6 +193572,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185248,6 +193595,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185270,6 +193618,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185290,6 +193639,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185310,6 +193660,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185331,6 +193682,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185352,6 +193704,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185374,6 +193727,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185396,6 +193750,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185416,6 +193771,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185436,6 +193792,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185457,6 +193814,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185478,6 +193836,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185500,6 +193859,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185522,6 +193882,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185543,6 +193904,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185564,6 +193926,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185584,6 +193947,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185604,6 +193968,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185626,6 +193991,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185648,6 +194014,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185668,6 +194035,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185688,6 +194056,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185710,6 +194079,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185732,6 +194102,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185753,6 +194124,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185774,6 +194146,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185797,6 +194170,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185820,6 +194194,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185842,6 +194217,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185864,6 +194240,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185887,6 +194264,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185910,6 +194288,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185931,6 +194310,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185952,6 +194332,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -185976,6 +194357,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186000,6 +194382,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186022,6 +194405,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186044,6 +194428,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186065,6 +194450,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186086,6 +194472,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186106,6 +194493,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186126,6 +194514,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186148,6 +194537,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186170,6 +194560,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186190,6 +194581,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186210,6 +194602,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186232,6 +194625,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186254,6 +194648,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186275,6 +194670,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186296,6 +194692,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186319,6 +194716,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186342,6 +194740,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186364,6 +194763,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186386,6 +194786,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186409,6 +194810,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186432,6 +194834,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186453,6 +194856,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186474,6 +194878,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186498,6 +194903,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186522,6 +194928,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186544,6 +194951,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186566,6 +194974,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186587,6 +194996,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186608,6 +195018,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186628,6 +195039,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186648,6 +195060,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186670,6 +195083,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186692,6 +195106,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186712,6 +195127,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186732,6 +195148,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186754,6 +195171,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186776,6 +195194,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186797,6 +195216,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186818,6 +195238,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186841,6 +195262,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186864,6 +195286,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186886,6 +195309,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186908,6 +195332,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186931,6 +195356,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186954,6 +195380,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186975,6 +195402,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -186996,6 +195424,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187020,6 +195449,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187044,6 +195474,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187066,6 +195497,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187088,6 +195520,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187109,6 +195542,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187130,6 +195564,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187150,6 +195585,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187170,6 +195606,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187192,6 +195629,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187214,6 +195652,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187234,6 +195673,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187254,6 +195694,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187276,6 +195717,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187298,6 +195740,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187319,6 +195762,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187340,6 +195784,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187363,6 +195808,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187386,6 +195832,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187408,6 +195855,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187430,6 +195878,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187453,6 +195902,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187476,6 +195926,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187497,6 +195948,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187518,6 +195970,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187542,6 +195995,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187566,6 +196020,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187588,6 +196043,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187610,6 +196066,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187631,6 +196088,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187652,6 +196110,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187672,6 +196131,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187692,6 +196152,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187714,6 +196175,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187736,6 +196198,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187756,6 +196219,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187776,6 +196240,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187798,6 +196263,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187820,6 +196286,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187841,6 +196308,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187862,6 +196330,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187885,6 +196354,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187908,6 +196378,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187930,6 +196401,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187952,6 +196424,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187975,6 +196448,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -187998,6 +196472,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188019,6 +196494,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188040,6 +196516,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188064,6 +196541,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188088,6 +196566,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188110,6 +196589,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188132,6 +196612,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188153,6 +196634,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188174,6 +196656,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188194,6 +196677,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188214,6 +196698,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188236,6 +196721,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188258,6 +196744,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188278,6 +196765,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188298,6 +196786,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188320,6 +196809,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188342,6 +196832,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188363,6 +196854,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188384,6 +196876,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188407,6 +196900,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188430,6 +196924,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188452,6 +196947,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188474,6 +196970,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188497,6 +196994,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188520,6 +197018,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188541,6 +197040,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188562,6 +197062,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188586,6 +197087,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188610,6 +197112,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188632,6 +197135,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188654,6 +197158,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188674,6 +197179,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188694,6 +197200,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188715,6 +197222,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188736,6 +197244,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188758,6 +197267,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188780,6 +197290,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188800,6 +197311,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188820,6 +197332,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188841,6 +197354,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188862,6 +197376,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188884,6 +197399,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188906,6 +197422,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188927,6 +197444,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188948,6 +197466,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188968,6 +197487,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -188988,6 +197508,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189008,6 +197529,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189028,6 +197550,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189050,6 +197573,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189072,6 +197596,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189093,6 +197618,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189114,6 +197640,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189137,6 +197664,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189160,6 +197688,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189182,6 +197711,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189204,6 +197734,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189225,6 +197756,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189246,6 +197778,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189268,6 +197801,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189290,6 +197824,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189311,6 +197846,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189332,6 +197868,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189352,6 +197889,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189372,6 +197910,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189392,6 +197931,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189412,6 +197952,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189434,6 +197975,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189456,6 +197998,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189477,6 +198020,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189498,6 +198042,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189521,6 +198066,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189544,6 +198090,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189566,6 +198113,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189588,6 +198136,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189609,6 +198158,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189630,6 +198180,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189652,6 +198203,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189674,6 +198226,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189695,6 +198248,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189716,6 +198270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189736,6 +198291,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189756,6 +198312,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189776,6 +198333,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189796,6 +198354,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189818,6 +198377,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189840,6 +198400,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189861,6 +198422,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189882,6 +198444,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189905,6 +198468,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189928,6 +198492,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189950,6 +198515,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189972,6 +198538,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -189993,6 +198560,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190014,6 +198582,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190036,6 +198605,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190058,6 +198628,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190079,6 +198650,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190100,6 +198672,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190120,6 +198693,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190140,6 +198714,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190160,6 +198735,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190180,6 +198756,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190202,6 +198779,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190224,6 +198802,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190245,6 +198824,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190266,6 +198846,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190289,6 +198870,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190312,6 +198894,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190334,6 +198917,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190356,6 +198940,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190377,6 +198962,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190398,6 +198984,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190420,6 +199007,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190442,6 +199030,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190463,6 +199052,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190484,6 +199074,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190504,6 +199095,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190524,6 +199116,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190544,6 +199137,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190564,6 +199158,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190586,6 +199181,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190608,6 +199204,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190629,6 +199226,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190650,6 +199248,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190673,6 +199272,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190696,6 +199296,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190718,6 +199319,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190740,6 +199342,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190761,6 +199364,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190782,6 +199386,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190804,6 +199409,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190826,6 +199432,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190847,6 +199454,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190868,6 +199476,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190888,6 +199497,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190908,6 +199518,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190928,6 +199539,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190948,6 +199560,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190970,6 +199583,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -190992,6 +199606,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191013,6 +199628,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191034,6 +199650,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191057,6 +199674,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191080,6 +199698,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191102,6 +199721,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191124,6 +199744,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191145,6 +199766,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191166,6 +199788,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191188,6 +199811,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191210,6 +199834,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191230,6 +199855,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191250,6 +199876,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191271,6 +199898,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191292,6 +199920,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191314,6 +199943,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191336,6 +199966,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191356,6 +199987,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191376,6 +200008,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191397,6 +200030,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191418,6 +200052,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191440,6 +200075,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191462,6 +200098,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191483,6 +200120,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191504,6 +200142,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191524,6 +200163,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191544,6 +200184,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191566,6 +200207,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191588,6 +200230,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191608,6 +200251,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191628,6 +200272,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191650,6 +200295,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191672,6 +200318,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191693,6 +200340,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191714,6 +200362,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191737,6 +200386,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191760,6 +200410,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191782,6 +200433,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191804,6 +200456,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191827,6 +200480,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191850,6 +200504,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191871,6 +200526,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191892,6 +200548,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191916,6 +200573,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191940,6 +200598,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191962,6 +200621,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -191984,6 +200644,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192005,6 +200666,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192026,6 +200688,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192046,6 +200709,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192066,6 +200730,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192088,6 +200753,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192110,6 +200776,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192130,6 +200797,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192150,6 +200818,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192172,6 +200841,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192194,6 +200864,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192215,6 +200886,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192236,6 +200908,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192259,6 +200932,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192282,6 +200956,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192304,6 +200979,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192326,6 +201002,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192349,6 +201026,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192372,6 +201050,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192393,6 +201072,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192414,6 +201094,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192438,6 +201119,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192462,6 +201144,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192484,6 +201167,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192506,6 +201190,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192527,6 +201212,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192548,6 +201234,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192568,6 +201255,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192588,6 +201276,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192610,6 +201299,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192632,6 +201322,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192652,6 +201343,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192672,6 +201364,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192694,6 +201387,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192716,6 +201410,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192737,6 +201432,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192758,6 +201454,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192781,6 +201478,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192804,6 +201502,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192826,6 +201525,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192848,6 +201548,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192871,6 +201572,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192894,6 +201596,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192915,6 +201618,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192936,6 +201640,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192960,6 +201665,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -192984,6 +201690,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193006,6 +201713,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193028,6 +201736,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193049,6 +201758,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193070,6 +201780,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193090,6 +201801,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193110,6 +201822,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193132,6 +201845,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193154,6 +201868,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193174,6 +201889,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193194,6 +201910,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193216,6 +201933,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193238,6 +201956,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193259,6 +201978,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193280,6 +202000,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193303,6 +202024,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193326,6 +202048,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193348,6 +202071,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193370,6 +202094,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193393,6 +202118,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193416,6 +202142,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193437,6 +202164,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193458,6 +202186,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193482,6 +202211,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193506,6 +202236,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193528,6 +202259,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193550,6 +202282,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193571,6 +202304,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193592,6 +202326,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193612,6 +202347,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193632,6 +202368,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193654,6 +202391,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193676,6 +202414,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193696,6 +202435,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193716,6 +202456,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193738,6 +202479,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193760,6 +202502,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193781,6 +202524,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193802,6 +202546,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193825,6 +202570,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193848,6 +202594,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193870,6 +202617,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193892,6 +202640,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193915,6 +202664,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193938,6 +202688,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193959,6 +202710,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -193980,6 +202732,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194004,6 +202757,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194028,6 +202782,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194050,6 +202805,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194072,6 +202828,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194093,6 +202850,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194114,6 +202872,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194134,6 +202893,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194154,6 +202914,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194176,6 +202937,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194198,6 +202960,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194218,6 +202981,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194238,6 +203002,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194260,6 +203025,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194282,6 +203048,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194303,6 +203070,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194324,6 +203092,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194347,6 +203116,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194370,6 +203140,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194392,6 +203163,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194414,6 +203186,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194437,6 +203210,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194460,6 +203234,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194481,6 +203256,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194502,6 +203278,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194526,6 +203303,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194550,6 +203328,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194572,6 +203351,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194594,6 +203374,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194614,6 +203395,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194634,6 +203416,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194655,6 +203438,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194676,6 +203460,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194698,6 +203483,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194720,6 +203506,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194740,6 +203527,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194760,6 +203548,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194781,6 +203570,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194802,6 +203592,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194824,6 +203615,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194846,6 +203638,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194867,6 +203660,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194888,6 +203682,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194908,6 +203703,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194928,6 +203724,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194948,6 +203745,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194968,6 +203766,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -194990,6 +203789,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195012,6 +203812,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195033,6 +203834,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195054,6 +203856,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195077,6 +203880,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195100,6 +203904,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195122,6 +203927,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195144,6 +203950,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195165,6 +203972,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195186,6 +203994,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195208,6 +204017,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195230,6 +204040,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195251,6 +204062,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195272,6 +204084,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195292,6 +204105,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195312,6 +204126,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195332,6 +204147,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195352,6 +204168,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195374,6 +204191,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195396,6 +204214,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195417,6 +204236,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195438,6 +204258,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195461,6 +204282,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195484,6 +204306,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195506,6 +204329,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195528,6 +204352,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195549,6 +204374,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195570,6 +204396,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195592,6 +204419,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195614,6 +204442,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195635,6 +204464,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195656,6 +204486,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195676,6 +204507,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195696,6 +204528,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195716,6 +204549,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195736,6 +204570,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195758,6 +204593,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195780,6 +204616,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195801,6 +204638,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195822,6 +204660,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195845,6 +204684,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195868,6 +204708,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195890,6 +204731,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195912,6 +204754,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195933,6 +204776,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195954,6 +204798,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195976,6 +204821,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -195998,6 +204844,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196019,6 +204866,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196040,6 +204888,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196060,6 +204909,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196080,6 +204930,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196100,6 +204951,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196120,6 +204972,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196142,6 +204995,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196164,6 +205018,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196185,6 +205040,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196206,6 +205062,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196229,6 +205086,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196252,6 +205110,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196274,6 +205133,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196296,6 +205156,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196317,6 +205178,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196338,6 +205200,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196360,6 +205223,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196382,6 +205246,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196403,6 +205268,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196424,6 +205290,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196444,6 +205311,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196464,6 +205332,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196484,6 +205353,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196504,6 +205374,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196526,6 +205397,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196548,6 +205420,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196569,6 +205442,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196590,6 +205464,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196613,6 +205488,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196636,6 +205512,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196658,6 +205535,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196680,6 +205558,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196701,6 +205580,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196722,6 +205602,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196744,6 +205625,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196766,6 +205648,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196787,6 +205670,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196808,6 +205692,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196828,6 +205713,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196848,6 +205734,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196868,6 +205755,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196888,6 +205776,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196910,6 +205799,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196932,6 +205822,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196953,6 +205844,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196974,6 +205866,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -196997,6 +205890,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197020,6 +205914,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197042,6 +205937,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197064,6 +205960,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197085,6 +205982,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197106,6 +206004,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197128,6 +206027,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197150,6 +206050,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197170,6 +206071,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197190,6 +206092,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197211,6 +206114,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197232,6 +206136,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197254,6 +206159,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197276,6 +206182,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197296,6 +206203,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197316,6 +206224,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197337,6 +206246,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197358,6 +206268,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197380,6 +206291,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197402,6 +206314,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197423,6 +206336,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197444,6 +206358,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197464,6 +206379,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197484,6 +206400,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197506,6 +206423,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197528,6 +206446,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197548,6 +206467,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197568,6 +206488,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197590,6 +206511,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197612,6 +206534,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197633,6 +206556,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197654,6 +206578,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197677,6 +206602,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197700,6 +206626,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197722,6 +206649,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197744,6 +206672,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197767,6 +206696,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197790,6 +206720,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197811,6 +206742,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197832,6 +206764,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197856,6 +206789,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197880,6 +206814,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197902,6 +206837,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197924,6 +206860,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197945,6 +206882,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197966,6 +206904,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -197986,6 +206925,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198006,6 +206946,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198028,6 +206969,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198050,6 +206992,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198070,6 +207013,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198090,6 +207034,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198112,6 +207057,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198134,6 +207080,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198155,6 +207102,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198176,6 +207124,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198199,6 +207148,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198222,6 +207172,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198244,6 +207195,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198266,6 +207218,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198289,6 +207242,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198312,6 +207266,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198333,6 +207288,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198354,6 +207310,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198378,6 +207335,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198402,6 +207360,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198424,6 +207383,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198446,6 +207406,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198467,6 +207428,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198488,6 +207450,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198508,6 +207471,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198528,6 +207492,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198550,6 +207515,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198572,6 +207538,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198592,6 +207559,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198612,6 +207580,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198634,6 +207603,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198656,6 +207626,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198677,6 +207648,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198698,6 +207670,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198721,6 +207694,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198744,6 +207718,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198766,6 +207741,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198788,6 +207764,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198811,6 +207788,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198834,6 +207812,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198855,6 +207834,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198876,6 +207856,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198900,6 +207881,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198924,6 +207906,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198946,6 +207929,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198968,6 +207952,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -198989,6 +207974,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199010,6 +207996,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199030,6 +208017,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199050,6 +208038,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199072,6 +208061,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199094,6 +208084,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199114,6 +208105,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199134,6 +208126,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199156,6 +208149,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199178,6 +208172,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199199,6 +208194,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199220,6 +208216,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199243,6 +208240,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199266,6 +208264,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199288,6 +208287,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199310,6 +208310,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199333,6 +208334,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199356,6 +208358,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199377,6 +208380,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199398,6 +208402,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199422,6 +208427,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199446,6 +208452,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199468,6 +208475,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199490,6 +208498,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199511,6 +208520,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199532,6 +208542,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199552,6 +208563,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199572,6 +208584,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199594,6 +208607,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199616,6 +208630,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199636,6 +208651,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199656,6 +208672,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199678,6 +208695,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199700,6 +208718,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199721,6 +208740,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199742,6 +208762,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199765,6 +208786,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199788,6 +208810,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199810,6 +208833,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199832,6 +208856,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199855,6 +208880,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199878,6 +208904,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199899,6 +208926,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199920,6 +208948,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199944,6 +208973,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199968,6 +208998,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -199990,6 +209021,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200012,6 +209044,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200033,6 +209066,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200054,6 +209088,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200074,6 +209109,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200094,6 +209130,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200116,6 +209153,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200138,6 +209176,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200158,6 +209197,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200178,6 +209218,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200200,6 +209241,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200222,6 +209264,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200243,6 +209286,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200264,6 +209308,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200287,6 +209332,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200310,6 +209356,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200332,6 +209379,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200354,6 +209402,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200377,6 +209426,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200400,6 +209450,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200421,6 +209472,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200442,6 +209494,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200466,6 +209519,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200490,6 +209544,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200512,6 +209567,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200534,6 +209590,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200554,6 +209611,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200574,6 +209632,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200595,6 +209654,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200616,6 +209676,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200638,6 +209699,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200660,6 +209722,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200680,6 +209743,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200700,6 +209764,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200721,6 +209786,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200742,6 +209808,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200764,6 +209831,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200786,6 +209854,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200807,6 +209876,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200828,6 +209898,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200848,6 +209919,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200868,6 +209940,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200888,6 +209961,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200908,6 +209982,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200930,6 +210005,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200952,6 +210028,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200973,6 +210050,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -200994,6 +210072,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201017,6 +210096,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201040,6 +210120,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201062,6 +210143,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201084,6 +210166,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201105,6 +210188,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201126,6 +210210,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201148,6 +210233,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201170,6 +210256,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201191,6 +210278,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201212,6 +210300,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201232,6 +210321,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201252,6 +210342,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201272,6 +210363,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201292,6 +210384,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201314,6 +210407,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201336,6 +210430,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201357,6 +210452,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201378,6 +210474,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201401,6 +210498,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201424,6 +210522,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201446,6 +210545,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201468,6 +210568,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201489,6 +210590,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201510,6 +210612,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201532,6 +210635,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201554,6 +210658,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201575,6 +210680,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201596,6 +210702,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201616,6 +210723,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201636,6 +210744,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201656,6 +210765,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201676,6 +210786,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201698,6 +210809,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201720,6 +210832,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201741,6 +210854,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201762,6 +210876,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201785,6 +210900,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201808,6 +210924,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201830,6 +210947,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201852,6 +210970,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201873,6 +210992,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201894,6 +211014,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201916,6 +211037,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201938,6 +211060,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201959,6 +211082,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -201980,6 +211104,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202000,6 +211125,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202020,6 +211146,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202040,6 +211167,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202060,6 +211188,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202082,6 +211211,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202104,6 +211234,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202125,6 +211256,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202146,6 +211278,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202169,6 +211302,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202192,6 +211326,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202214,6 +211349,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202236,6 +211372,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202257,6 +211394,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202278,6 +211416,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202300,6 +211439,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202322,6 +211462,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202343,6 +211484,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202364,6 +211506,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202384,6 +211527,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202404,6 +211548,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202424,6 +211569,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202444,6 +211590,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202466,6 +211613,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202488,6 +211636,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202509,6 +211658,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202530,6 +211680,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202553,6 +211704,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202576,6 +211728,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202598,6 +211751,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202620,6 +211774,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202641,6 +211796,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202662,6 +211818,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202684,6 +211841,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202706,6 +211864,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202727,6 +211886,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202748,6 +211908,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202768,6 +211929,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202788,6 +211950,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202808,6 +211971,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202828,6 +211992,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202850,6 +212015,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202872,6 +212038,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202893,6 +212060,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202914,6 +212082,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202937,6 +212106,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202960,6 +212130,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -202982,6 +212153,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203004,6 +212176,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203025,6 +212198,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203046,6 +212220,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203068,6 +212243,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203090,6 +212266,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203110,6 +212287,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203130,6 +212308,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203151,6 +212330,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203172,6 +212352,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203194,6 +212375,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203216,6 +212398,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203236,6 +212419,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203256,6 +212440,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203277,6 +212462,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203298,6 +212484,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203320,6 +212507,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203342,6 +212530,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203363,6 +212552,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203384,6 +212574,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203404,6 +212595,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203424,6 +212616,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203446,6 +212639,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203468,6 +212662,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203488,6 +212683,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203508,6 +212704,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203530,6 +212727,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203552,6 +212750,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203573,6 +212772,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203594,6 +212794,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203617,6 +212818,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203640,6 +212842,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203662,6 +212865,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203684,6 +212888,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203707,6 +212912,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203730,6 +212936,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203751,6 +212958,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203772,6 +212980,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203796,6 +213005,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203820,6 +213030,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203842,6 +213053,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203864,6 +213076,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203885,6 +213098,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203906,6 +213120,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203926,6 +213141,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203946,6 +213162,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203968,6 +213185,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -203990,6 +213208,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204010,6 +213229,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204030,6 +213250,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204052,6 +213273,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204074,6 +213296,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204095,6 +213318,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204116,6 +213340,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204139,6 +213364,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204162,6 +213388,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204184,6 +213411,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204206,6 +213434,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204229,6 +213458,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204252,6 +213482,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204273,6 +213504,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204294,6 +213526,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204318,6 +213551,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204342,6 +213576,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204364,6 +213599,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204386,6 +213622,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204407,6 +213644,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204428,6 +213666,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204448,6 +213687,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204468,6 +213708,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204490,6 +213731,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204512,6 +213754,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204532,6 +213775,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204552,6 +213796,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204574,6 +213819,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204596,6 +213842,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204617,6 +213864,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204638,6 +213886,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204661,6 +213910,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204684,6 +213934,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204706,6 +213957,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204728,6 +213980,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204751,6 +214004,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204774,6 +214028,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204795,6 +214050,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204816,6 +214072,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204840,6 +214097,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204864,6 +214122,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204886,6 +214145,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204908,6 +214168,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204929,6 +214190,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204950,6 +214212,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204970,6 +214233,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -204990,6 +214254,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205012,6 +214277,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205034,6 +214300,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205054,6 +214321,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205074,6 +214342,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205096,6 +214365,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205118,6 +214388,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205139,6 +214410,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205160,6 +214432,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205183,6 +214456,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205206,6 +214480,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205228,6 +214503,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205250,6 +214526,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205273,6 +214550,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205296,6 +214574,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205317,6 +214596,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205338,6 +214618,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205362,6 +214643,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205386,6 +214668,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205408,6 +214691,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205430,6 +214714,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205451,6 +214736,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205472,6 +214758,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205492,6 +214779,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205512,6 +214800,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205534,6 +214823,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205556,6 +214846,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205576,6 +214867,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205596,6 +214888,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205618,6 +214911,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205640,6 +214934,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205661,6 +214956,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205682,6 +214978,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205705,6 +215002,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205728,6 +215026,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205750,6 +215049,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205772,6 +215072,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205795,6 +215096,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205818,6 +215120,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205839,6 +215142,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205860,6 +215164,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205884,6 +215189,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205908,6 +215214,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205930,6 +215237,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205952,6 +215260,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205973,6 +215282,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -205994,6 +215304,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206014,6 +215325,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206034,6 +215346,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206056,6 +215369,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206078,6 +215392,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206098,6 +215413,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206118,6 +215434,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206140,6 +215457,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206162,6 +215480,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206183,6 +215502,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206204,6 +215524,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206227,6 +215548,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206250,6 +215572,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206272,6 +215595,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206294,6 +215618,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206317,6 +215642,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206340,6 +215666,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206361,6 +215688,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206382,6 +215710,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206406,6 +215735,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206430,6 +215760,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206452,6 +215783,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206474,6 +215806,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206494,6 +215827,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206514,6 +215848,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206535,6 +215870,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206556,6 +215892,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206578,6 +215915,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206600,6 +215938,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206620,6 +215959,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206640,6 +215980,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206661,6 +216002,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206682,6 +216024,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206704,6 +216047,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206726,6 +216070,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206747,6 +216092,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206768,6 +216114,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206788,6 +216135,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206808,6 +216156,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206828,6 +216177,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206848,6 +216198,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206870,6 +216221,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206892,6 +216244,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206913,6 +216266,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206934,6 +216288,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206957,6 +216312,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -206980,6 +216336,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207002,6 +216359,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207024,6 +216382,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207045,6 +216404,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207066,6 +216426,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207088,6 +216449,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207110,6 +216472,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207131,6 +216494,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207152,6 +216516,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207172,6 +216537,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207192,6 +216558,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207212,6 +216579,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207232,6 +216600,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207254,6 +216623,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207276,6 +216646,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207297,6 +216668,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207318,6 +216690,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207341,6 +216714,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207364,6 +216738,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207386,6 +216761,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207408,6 +216784,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207429,6 +216806,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207450,6 +216828,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207472,6 +216851,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207494,6 +216874,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207515,6 +216896,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207536,6 +216918,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207556,6 +216939,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207576,6 +216960,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207596,6 +216981,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207616,6 +217002,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207638,6 +217025,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207660,6 +217048,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207681,6 +217070,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207702,6 +217092,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207725,6 +217116,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207748,6 +217140,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207770,6 +217163,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207792,6 +217186,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207813,6 +217208,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207834,6 +217230,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207856,6 +217253,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207878,6 +217276,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207899,6 +217298,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207920,6 +217320,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207940,6 +217341,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207960,6 +217362,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -207980,6 +217383,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208000,6 +217404,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208022,6 +217427,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208044,6 +217450,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208065,6 +217472,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208086,6 +217494,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208109,6 +217518,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208132,6 +217542,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208154,6 +217565,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208176,6 +217588,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208197,6 +217610,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208218,6 +217632,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208240,6 +217655,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208262,6 +217678,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208283,6 +217700,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208304,6 +217722,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208324,6 +217743,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208344,6 +217764,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208364,6 +217785,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208384,6 +217806,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208406,6 +217829,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208428,6 +217852,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208449,6 +217874,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208470,6 +217896,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208493,6 +217920,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208516,6 +217944,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208538,6 +217967,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208560,6 +217990,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208581,6 +218012,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208602,6 +218034,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208624,6 +218057,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208646,6 +218080,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208667,6 +218102,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208688,6 +218124,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208708,6 +218145,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208728,6 +218166,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208748,6 +218187,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208768,6 +218208,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208790,6 +218231,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208812,6 +218254,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208833,6 +218276,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208854,6 +218298,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208877,6 +218322,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208900,6 +218346,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208922,6 +218369,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208944,6 +218392,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208965,6 +218414,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -208986,6 +218436,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209008,6 +218459,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209030,6 +218482,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209050,6 +218503,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209070,6 +218524,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209091,6 +218546,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209112,6 +218568,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209134,6 +218591,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209156,6 +218614,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209176,6 +218635,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209196,6 +218656,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209217,6 +218678,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209238,6 +218700,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209260,6 +218723,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209282,6 +218746,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209303,6 +218768,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209324,6 +218790,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209344,6 +218811,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209366,6 +218834,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209388,6 +218857,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209408,6 +218878,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209430,6 +218901,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209452,6 +218924,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209473,6 +218946,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209496,6 +218970,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209519,6 +218994,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209541,6 +219017,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209564,6 +219041,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209587,6 +219065,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209608,6 +219087,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209632,6 +219112,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209656,6 +219137,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209678,6 +219160,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209699,6 +219182,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209720,6 +219204,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209740,6 +219225,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209762,6 +219248,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209784,6 +219271,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209804,6 +219292,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209826,6 +219315,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209848,6 +219338,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209869,6 +219360,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209892,6 +219384,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209915,6 +219408,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209937,6 +219431,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209960,6 +219455,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -209983,6 +219479,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210004,6 +219501,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210028,6 +219526,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210052,6 +219551,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210074,6 +219574,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210095,6 +219596,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210116,6 +219618,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210136,6 +219639,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210158,6 +219662,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210180,6 +219685,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210200,6 +219706,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210222,6 +219729,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210244,6 +219752,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210265,6 +219774,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210288,6 +219798,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210311,6 +219822,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210333,6 +219845,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210356,6 +219869,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210379,6 +219893,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210400,6 +219915,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210424,6 +219940,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210448,6 +219965,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210470,6 +219988,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210491,6 +220010,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210512,6 +220032,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210532,6 +220053,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210554,6 +220076,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210576,6 +220099,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210596,6 +220120,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210618,6 +220143,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210640,6 +220166,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210661,6 +220188,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210684,6 +220212,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210707,6 +220236,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210729,6 +220259,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210752,6 +220283,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210775,6 +220307,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210796,6 +220329,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210820,6 +220354,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210844,6 +220379,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210866,6 +220402,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210887,6 +220424,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210908,6 +220446,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210928,6 +220467,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210950,6 +220490,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210972,6 +220513,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -210992,6 +220534,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211014,6 +220557,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211036,6 +220580,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211057,6 +220602,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211080,6 +220626,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211103,6 +220650,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211125,6 +220673,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211148,6 +220697,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211171,6 +220721,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211192,6 +220743,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211216,6 +220768,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211240,6 +220793,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211262,6 +220816,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211283,6 +220838,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211304,6 +220860,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211324,6 +220881,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211346,6 +220904,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211368,6 +220927,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211388,6 +220948,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211410,6 +220971,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211432,6 +220994,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211453,6 +221016,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211476,6 +221040,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211499,6 +221064,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211521,6 +221087,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211544,6 +221111,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211567,6 +221135,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211588,6 +221157,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211612,6 +221182,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211636,6 +221207,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211658,6 +221230,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211678,6 +221251,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211699,6 +221273,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211721,6 +221296,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211741,6 +221317,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211762,6 +221339,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211784,6 +221362,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211805,6 +221384,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211826,6 +221406,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211846,6 +221427,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211868,6 +221450,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211890,6 +221473,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211910,6 +221494,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211932,6 +221517,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211954,6 +221540,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211975,6 +221562,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -211998,6 +221586,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212021,6 +221610,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212043,6 +221633,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212066,6 +221657,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212089,6 +221681,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212110,6 +221703,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212134,6 +221728,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212158,6 +221753,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212180,6 +221776,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212201,6 +221798,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212222,6 +221820,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212242,6 +221841,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212264,6 +221864,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212286,6 +221887,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212306,6 +221908,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212328,6 +221931,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212350,6 +221954,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212371,6 +221976,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212394,6 +222000,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212417,6 +222024,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212439,6 +222047,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212462,6 +222071,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212485,6 +222095,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212506,6 +222117,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212530,6 +222142,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212554,6 +222167,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212576,6 +222190,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212597,6 +222212,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212618,6 +222234,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212638,6 +222255,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212660,6 +222278,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212682,6 +222301,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212702,6 +222322,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212724,6 +222345,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212746,6 +222368,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212767,6 +222390,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212790,6 +222414,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212813,6 +222438,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212835,6 +222461,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212858,6 +222485,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212881,6 +222509,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212902,6 +222531,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212926,6 +222556,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212950,6 +222581,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212972,6 +222604,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -212993,6 +222626,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213014,6 +222648,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213034,6 +222669,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213056,6 +222692,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213078,6 +222715,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213098,6 +222736,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213120,6 +222759,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213142,6 +222782,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213163,6 +222804,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213186,6 +222828,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213209,6 +222852,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213231,6 +222875,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213254,6 +222899,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213277,6 +222923,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213298,6 +222945,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213322,6 +222970,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213346,6 +222995,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213368,6 +223018,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213389,6 +223040,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213410,6 +223062,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213430,6 +223083,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213452,6 +223106,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213474,6 +223129,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213494,6 +223150,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213516,6 +223173,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213538,6 +223196,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213559,6 +223218,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213582,6 +223242,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213605,6 +223266,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213627,6 +223289,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213650,6 +223313,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213673,6 +223337,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213694,6 +223359,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213718,6 +223384,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213742,6 +223409,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213764,6 +223432,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213785,6 +223454,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213806,6 +223476,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213826,6 +223497,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213848,6 +223520,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213870,6 +223543,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213890,6 +223564,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213912,6 +223587,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213934,6 +223610,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213955,6 +223632,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -213978,6 +223656,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214001,6 +223680,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214023,6 +223703,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214046,6 +223727,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214069,6 +223751,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214090,6 +223773,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214114,6 +223798,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214138,6 +223823,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214160,6 +223846,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214180,6 +223867,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214201,6 +223889,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214223,6 +223912,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214243,6 +223933,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214264,6 +223955,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214286,6 +223978,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214307,6 +224000,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214328,6 +224022,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214348,6 +224043,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214368,6 +224064,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214390,6 +224087,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214412,6 +224110,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214433,6 +224132,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214456,6 +224156,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214479,6 +224180,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214501,6 +224203,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214522,6 +224225,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214544,6 +224248,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214565,6 +224270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214586,6 +224292,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214606,6 +224313,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214626,6 +224334,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214648,6 +224357,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214670,6 +224380,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214691,6 +224402,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214714,6 +224426,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214737,6 +224450,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214759,6 +224473,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214780,6 +224495,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214802,6 +224518,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214823,6 +224540,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214844,6 +224562,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214864,6 +224583,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214884,6 +224604,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214906,6 +224627,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214928,6 +224650,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214949,6 +224672,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214972,6 +224696,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -214995,6 +224720,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215017,6 +224743,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215038,6 +224765,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215060,6 +224788,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215081,6 +224810,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215102,6 +224832,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215122,6 +224853,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215142,6 +224874,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215164,6 +224897,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215186,6 +224920,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215207,6 +224942,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215230,6 +224966,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215253,6 +224990,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215275,6 +225013,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215296,6 +225035,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215318,6 +225058,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215339,6 +225080,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215360,6 +225102,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215380,6 +225123,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215400,6 +225144,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215422,6 +225167,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215444,6 +225190,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215465,6 +225212,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215488,6 +225236,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215511,6 +225260,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215533,6 +225283,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215554,6 +225305,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215576,6 +225328,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215597,6 +225350,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215618,6 +225372,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215638,6 +225393,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215658,6 +225414,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215680,6 +225437,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215702,6 +225460,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215723,6 +225482,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215746,6 +225506,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215769,6 +225530,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215791,6 +225553,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215812,6 +225575,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215834,6 +225598,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215854,6 +225619,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215875,6 +225641,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215897,6 +225664,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215917,6 +225685,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215938,6 +225707,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215960,6 +225730,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -215981,6 +225752,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216002,6 +225774,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216022,6 +225795,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216042,6 +225816,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216064,6 +225839,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216086,6 +225862,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216107,6 +225884,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216130,6 +225908,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216153,6 +225932,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216175,6 +225955,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216196,6 +225977,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216218,6 +226000,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216239,6 +226022,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216260,6 +226044,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216280,6 +226065,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216300,6 +226086,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216322,6 +226109,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216344,6 +226132,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216365,6 +226154,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216388,6 +226178,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216411,6 +226202,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216433,6 +226225,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216454,6 +226247,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216476,6 +226270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216497,6 +226292,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216518,6 +226314,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216538,6 +226335,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216558,6 +226356,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216580,6 +226379,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216602,6 +226402,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216623,6 +226424,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216646,6 +226448,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216669,6 +226472,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216691,6 +226495,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216712,6 +226517,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216734,6 +226540,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216755,6 +226562,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216776,6 +226584,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216796,6 +226605,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216816,6 +226626,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216838,6 +226649,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216860,6 +226672,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216881,6 +226694,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216904,6 +226718,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216927,6 +226742,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216949,6 +226765,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216970,6 +226787,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -216992,6 +226810,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217013,6 +226832,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217034,6 +226854,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217054,6 +226875,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217074,6 +226896,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217096,6 +226919,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217118,6 +226942,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217139,6 +226964,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217162,6 +226988,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217185,6 +227012,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217207,6 +227035,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217228,6 +227057,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217250,6 +227080,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217271,6 +227102,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217292,6 +227124,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217312,6 +227145,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217332,6 +227166,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217354,6 +227189,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217376,6 +227212,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217397,6 +227234,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217420,6 +227258,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217443,6 +227282,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217465,6 +227305,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217486,6 +227327,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217508,6 +227350,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217528,6 +227371,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217549,6 +227393,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217571,6 +227416,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217591,6 +227437,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217612,6 +227459,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: None + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217634,6 +227482,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217655,6 +227504,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217676,6 +227526,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217696,6 +227547,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217716,6 +227568,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217738,6 +227591,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217760,6 +227614,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217780,6 +227635,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217800,6 +227656,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217822,6 +227679,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217844,6 +227702,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217865,6 +227724,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217886,6 +227746,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217909,6 +227770,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217932,6 +227794,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217954,6 +227817,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217976,6 +227840,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -217999,6 +227864,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218022,6 +227888,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218043,6 +227910,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218064,6 +227932,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218088,6 +227957,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218112,6 +227982,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218134,6 +228005,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218156,6 +228028,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218177,6 +228050,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218198,6 +228072,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218218,6 +228093,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218238,6 +228114,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218260,6 +228137,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218282,6 +228160,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218302,6 +228181,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218322,6 +228202,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218344,6 +228225,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218366,6 +228248,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218387,6 +228270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218408,6 +228292,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218431,6 +228316,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218454,6 +228340,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218476,6 +228363,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218498,6 +228386,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218521,6 +228410,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218544,6 +228434,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218565,6 +228456,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218586,6 +228478,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218610,6 +228503,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218634,6 +228528,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218656,6 +228551,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218678,6 +228574,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218699,6 +228596,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218720,6 +228618,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218740,6 +228639,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218760,6 +228660,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218782,6 +228683,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218804,6 +228706,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218824,6 +228727,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218844,6 +228748,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218866,6 +228771,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218888,6 +228794,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218909,6 +228816,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218930,6 +228838,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218953,6 +228862,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218976,6 +228886,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -218998,6 +228909,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219020,6 +228932,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219043,6 +228956,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219066,6 +228980,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219087,6 +229002,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219108,6 +229024,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219132,6 +229049,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219156,6 +229074,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219178,6 +229097,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219200,6 +229120,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219220,6 +229141,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219240,6 +229162,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219261,6 +229184,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219282,6 +229206,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219304,6 +229229,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219326,6 +229252,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219348,6 +229275,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219370,6 +229298,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219391,6 +229320,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219412,6 +229342,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219433,6 +229364,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219454,6 +229386,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219477,6 +229410,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219500,6 +229434,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219522,6 +229457,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219544,6 +229480,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219568,6 +229505,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219592,6 +229530,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219615,6 +229554,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219638,6 +229578,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219660,6 +229601,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219682,6 +229624,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219705,6 +229648,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219728,6 +229672,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219750,6 +229695,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219772,6 +229718,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219793,6 +229740,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219814,6 +229762,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219835,6 +229784,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219856,6 +229806,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219879,6 +229830,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219902,6 +229854,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219924,6 +229877,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219946,6 +229900,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219970,6 +229925,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -219994,6 +229950,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220017,6 +229974,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220040,6 +229998,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220062,6 +230021,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220084,6 +230044,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220107,6 +230068,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220130,6 +230092,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220152,6 +230115,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220174,6 +230138,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220195,6 +230160,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220216,6 +230182,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220237,6 +230204,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220258,6 +230226,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220281,6 +230250,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220304,6 +230274,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220326,6 +230297,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220348,6 +230320,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220372,6 +230345,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220396,6 +230370,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220419,6 +230394,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220442,6 +230418,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220464,6 +230441,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220486,6 +230464,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220509,6 +230488,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220532,6 +230512,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220554,6 +230535,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220576,6 +230558,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220597,6 +230580,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220618,6 +230602,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220639,6 +230624,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220660,6 +230646,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220683,6 +230670,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220706,6 +230694,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220728,6 +230717,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220750,6 +230740,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220774,6 +230765,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220798,6 +230790,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220821,6 +230814,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220844,6 +230838,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220866,6 +230861,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220888,6 +230884,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220911,6 +230908,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220934,6 +230932,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220956,6 +230955,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220978,6 +230978,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -220999,6 +231000,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221020,6 +231022,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221041,6 +231044,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221062,6 +231066,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221085,6 +231090,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221108,6 +231114,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221130,6 +231137,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221152,6 +231160,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221176,6 +231185,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221200,6 +231210,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221223,6 +231234,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221246,6 +231258,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221268,6 +231281,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221290,6 +231304,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221313,6 +231328,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221336,6 +231352,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221358,6 +231375,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221380,6 +231398,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221401,6 +231420,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221422,6 +231442,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221443,6 +231464,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221464,6 +231486,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221487,6 +231510,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221510,6 +231534,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221532,6 +231557,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221554,6 +231580,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221578,6 +231605,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221602,6 +231630,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221625,6 +231654,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221648,6 +231678,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221670,6 +231701,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221692,6 +231724,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221715,6 +231748,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221738,6 +231772,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221759,6 +231794,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221780,6 +231816,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221802,6 +231839,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221824,6 +231862,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221847,6 +231886,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221870,6 +231910,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221891,6 +231932,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221912,6 +231954,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221934,6 +231977,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221956,6 +232000,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -221979,6 +232024,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222002,6 +232048,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222023,6 +232070,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222044,6 +232092,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222064,6 +232113,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222084,6 +232134,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222106,6 +232157,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222128,6 +232180,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222148,6 +232201,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222168,6 +232222,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222190,6 +232245,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222212,6 +232268,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222233,6 +232290,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222254,6 +232312,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222277,6 +232336,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222300,6 +232360,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222322,6 +232383,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222344,6 +232406,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222367,6 +232430,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222390,6 +232454,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222411,6 +232476,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222432,6 +232498,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222456,6 +232523,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222480,6 +232548,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222502,6 +232571,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222524,6 +232594,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222545,6 +232616,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222566,6 +232638,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222586,6 +232659,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222606,6 +232680,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222628,6 +232703,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222650,6 +232726,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222670,6 +232747,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222690,6 +232768,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222712,6 +232791,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222734,6 +232814,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222755,6 +232836,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222776,6 +232858,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222799,6 +232882,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222822,6 +232906,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222844,6 +232929,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222866,6 +232952,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222889,6 +232976,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222912,6 +233000,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222933,6 +233022,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222954,6 +233044,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -222978,6 +233069,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223002,6 +233094,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223024,6 +233117,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223046,6 +233140,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223067,6 +233162,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223088,6 +233184,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223108,6 +233205,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223128,6 +233226,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223150,6 +233249,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223172,6 +233272,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223192,6 +233293,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223212,6 +233314,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223234,6 +233337,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223256,6 +233360,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223277,6 +233382,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223298,6 +233404,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223321,6 +233428,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223344,6 +233452,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223366,6 +233475,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223388,6 +233498,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223411,6 +233522,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223434,6 +233546,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223455,6 +233568,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223476,6 +233590,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223500,6 +233615,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223524,6 +233640,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223546,6 +233663,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223568,6 +233686,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223588,6 +233707,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223608,6 +233728,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223629,6 +233750,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223650,6 +233772,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223672,6 +233795,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223694,6 +233818,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223716,6 +233841,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223738,6 +233864,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223759,6 +233886,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223780,6 +233908,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223801,6 +233930,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223822,6 +233952,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223845,6 +233976,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223868,6 +234000,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223890,6 +234023,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223912,6 +234046,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223936,6 +234071,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223960,6 +234096,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -223983,6 +234120,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224006,6 +234144,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224028,6 +234167,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224050,6 +234190,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224073,6 +234214,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224096,6 +234238,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224118,6 +234261,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224140,6 +234284,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224161,6 +234306,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224182,6 +234328,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224203,6 +234350,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224224,6 +234372,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224247,6 +234396,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224270,6 +234420,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224292,6 +234443,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224314,6 +234466,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224338,6 +234491,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224362,6 +234516,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224385,6 +234540,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224408,6 +234564,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224430,6 +234587,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224452,6 +234610,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224475,6 +234634,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224498,6 +234658,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224520,6 +234681,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224542,6 +234704,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224563,6 +234726,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224584,6 +234748,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224605,6 +234770,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224626,6 +234792,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224649,6 +234816,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224672,6 +234840,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224694,6 +234863,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224716,6 +234886,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224740,6 +234911,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224764,6 +234936,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224787,6 +234960,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224810,6 +234984,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224832,6 +235007,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224854,6 +235030,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224877,6 +235054,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224900,6 +235078,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224922,6 +235101,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224944,6 +235124,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224965,6 +235146,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -224986,6 +235168,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225007,6 +235190,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225028,6 +235212,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225051,6 +235236,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225074,6 +235260,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225096,6 +235283,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225118,6 +235306,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225142,6 +235331,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225166,6 +235356,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225189,6 +235380,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225212,6 +235404,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225234,6 +235427,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225256,6 +235450,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225279,6 +235474,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225302,6 +235498,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225324,6 +235521,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225346,6 +235544,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225367,6 +235566,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225388,6 +235588,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225409,6 +235610,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225430,6 +235632,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225453,6 +235656,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225476,6 +235680,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225498,6 +235703,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225520,6 +235726,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225544,6 +235751,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225568,6 +235776,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225591,6 +235800,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225614,6 +235824,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225636,6 +235847,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225658,6 +235870,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225681,6 +235894,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225704,6 +235918,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225726,6 +235941,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225748,6 +235964,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225769,6 +235986,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225790,6 +236008,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225811,6 +236030,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225832,6 +236052,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225855,6 +236076,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225878,6 +236100,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225900,6 +236123,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225922,6 +236146,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225946,6 +236171,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225970,6 +236196,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -225993,6 +236220,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226016,6 +236244,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226038,6 +236267,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226060,6 +236290,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226083,6 +236314,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226106,6 +236338,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226127,6 +236360,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226148,6 +236382,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226170,6 +236405,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226192,6 +236428,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226215,6 +236452,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226238,6 +236476,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226259,6 +236498,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226280,6 +236520,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226302,6 +236543,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226324,6 +236566,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226347,6 +236590,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226370,6 +236614,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226391,6 +236636,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226412,6 +236658,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226432,6 +236679,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226452,6 +236700,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226474,6 +236723,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226496,6 +236746,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226516,6 +236767,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226536,6 +236788,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226558,6 +236811,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226580,6 +236834,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226601,6 +236856,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226622,6 +236878,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226645,6 +236902,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226668,6 +236926,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226690,6 +236949,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226712,6 +236972,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226735,6 +236996,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226758,6 +237020,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226779,6 +237042,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226800,6 +237064,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226824,6 +237089,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226848,6 +237114,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226870,6 +237137,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226892,6 +237160,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226913,6 +237182,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226934,6 +237204,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226954,6 +237225,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226974,6 +237246,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -226996,6 +237269,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227018,6 +237292,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227038,6 +237313,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227058,6 +237334,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227080,6 +237357,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227102,6 +237380,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227123,6 +237402,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227144,6 +237424,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227167,6 +237448,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227190,6 +237472,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227212,6 +237495,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227234,6 +237518,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227257,6 +237542,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227280,6 +237566,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227301,6 +237588,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227322,6 +237610,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227346,6 +237635,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227370,6 +237660,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227392,6 +237683,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227414,6 +237706,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227435,6 +237728,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227456,6 +237750,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227476,6 +237771,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227496,6 +237792,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227518,6 +237815,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227540,6 +237838,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227560,6 +237859,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227580,6 +237880,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227602,6 +237903,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227624,6 +237926,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227645,6 +237948,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227666,6 +237970,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227689,6 +237994,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227712,6 +238018,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227734,6 +238041,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227756,6 +238064,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227779,6 +238088,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227802,6 +238112,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227823,6 +238134,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227844,6 +238156,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227868,6 +238181,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227892,6 +238206,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227914,6 +238229,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227936,6 +238252,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227956,6 +238273,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227976,6 +238294,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -227997,6 +238316,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228018,6 +238338,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228040,6 +238361,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228062,6 +238384,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228084,6 +238407,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228106,6 +238430,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228127,6 +238452,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228148,6 +238474,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228169,6 +238496,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228190,6 +238518,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228213,6 +238542,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228236,6 +238566,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228258,6 +238589,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228280,6 +238612,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228304,6 +238637,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228328,6 +238662,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228351,6 +238686,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228374,6 +238710,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228396,6 +238733,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228418,6 +238756,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228441,6 +238780,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228464,6 +238804,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228486,6 +238827,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228508,6 +238850,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228529,6 +238872,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228550,6 +238894,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228571,6 +238916,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228592,6 +238938,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228615,6 +238962,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228638,6 +238986,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228660,6 +239009,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228682,6 +239032,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228706,6 +239057,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228730,6 +239082,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228753,6 +239106,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228776,6 +239130,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228798,6 +239153,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228820,6 +239176,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228843,6 +239200,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228866,6 +239224,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228888,6 +239247,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228910,6 +239270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228931,6 +239292,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228952,6 +239314,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228973,6 +239336,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -228994,6 +239358,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229017,6 +239382,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229040,6 +239406,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229062,6 +239429,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229084,6 +239452,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229108,6 +239477,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229132,6 +239502,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229155,6 +239526,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229178,6 +239550,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229200,6 +239573,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229222,6 +239596,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229245,6 +239620,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229268,6 +239644,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229290,6 +239667,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229312,6 +239690,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229333,6 +239712,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229354,6 +239734,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229375,6 +239756,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229396,6 +239778,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229419,6 +239802,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229442,6 +239826,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229464,6 +239849,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229486,6 +239872,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229510,6 +239897,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229534,6 +239922,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229557,6 +239946,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229580,6 +239970,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229602,6 +239993,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229624,6 +240016,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229647,6 +240040,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229670,6 +240064,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229692,6 +240087,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229714,6 +240110,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229735,6 +240132,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229756,6 +240154,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229777,6 +240176,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229798,6 +240198,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229821,6 +240222,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229844,6 +240246,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229866,6 +240269,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229888,6 +240292,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229912,6 +240317,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229936,6 +240342,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229959,6 +240366,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -229982,6 +240390,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230004,6 +240413,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230026,6 +240436,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230049,6 +240460,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230072,6 +240484,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230094,6 +240507,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230116,6 +240530,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230137,6 +240552,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230158,6 +240574,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230179,6 +240596,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230200,6 +240618,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230223,6 +240642,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230246,6 +240666,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230268,6 +240689,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230290,6 +240712,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230314,6 +240737,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230338,6 +240762,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230361,6 +240786,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230384,6 +240810,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230406,6 +240833,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230428,6 +240856,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230451,6 +240880,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230474,6 +240904,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230495,6 +240926,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230516,6 +240948,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230538,6 +240971,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230560,6 +240994,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230583,6 +241018,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230606,6 +241042,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230627,6 +241064,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230648,6 +241086,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230670,6 +241109,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230692,6 +241132,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -230715,6 +241156,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232016,6 +242458,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232038,6 +242481,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232060,6 +242504,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232081,6 +242526,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232102,6 +242548,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232125,6 +242572,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232148,6 +242596,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232169,6 +242618,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232190,6 +242640,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232213,6 +242664,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232236,6 +242688,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232258,6 +242711,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232280,6 +242734,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232304,6 +242759,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232328,6 +242784,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232350,6 +242807,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232372,6 +242830,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232394,6 +242853,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232416,6 +242876,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232437,6 +242898,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232458,6 +242920,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232481,6 +242944,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232504,6 +242968,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232525,6 +242990,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232546,6 +243012,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232569,6 +243036,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232592,6 +243060,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232614,6 +243083,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232636,6 +243106,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232660,6 +243131,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232684,6 +243156,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232706,6 +243179,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232728,6 +243202,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232750,6 +243225,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232772,6 +243248,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232793,6 +243270,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232814,6 +243292,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232837,6 +243316,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232860,6 +243340,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232881,6 +243362,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232902,6 +243384,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232925,6 +243408,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232948,6 +243432,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232970,6 +243455,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -232992,6 +243478,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233016,6 +243503,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233040,6 +243528,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233062,6 +243551,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233084,6 +243574,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233106,6 +243597,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233128,6 +243620,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233149,6 +243642,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233170,6 +243664,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233193,6 +243688,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233216,6 +243712,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233237,6 +243734,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233258,6 +243756,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233281,6 +243780,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233304,6 +243804,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233326,6 +243827,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233348,6 +243850,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233372,6 +243875,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233396,6 +243900,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233418,6 +243923,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233440,6 +243946,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233462,6 +243969,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233484,6 +243992,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233505,6 +244014,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233526,6 +244036,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233549,6 +244060,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233572,6 +244084,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233593,6 +244106,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233614,6 +244128,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233637,6 +244152,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233660,6 +244176,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233682,6 +244199,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233704,6 +244222,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233728,6 +244247,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233752,6 +244272,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233774,6 +244295,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233796,6 +244318,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233818,6 +244341,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233840,6 +244364,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233861,6 +244386,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233882,6 +244408,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233905,6 +244432,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233928,6 +244456,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233949,6 +244478,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233970,6 +244500,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -233993,6 +244524,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234016,6 +244548,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234038,6 +244571,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234060,6 +244594,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234084,6 +244619,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234108,6 +244644,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234130,6 +244667,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234152,6 +244690,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234173,6 +244712,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234194,6 +244734,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234216,6 +244757,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234238,6 +244780,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234259,6 +244802,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234280,6 +244824,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234302,6 +244847,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Full Exception class: EVEX, exception type: E2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234324,6 +244870,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234346,6 +244893,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234368,6 +244916,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234389,6 +244938,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234410,6 +244960,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234431,6 +244982,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234452,6 +245004,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234475,6 +245028,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234498,6 +245052,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234520,6 +245075,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234542,6 +245098,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234564,6 +245121,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234586,6 +245144,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234608,6 +245167,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234630,6 +245190,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234651,6 +245212,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234672,6 +245234,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234693,6 +245256,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234714,6 +245278,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234737,6 +245302,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234760,6 +245326,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234782,6 +245349,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234804,6 +245372,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234826,6 +245395,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234848,6 +245418,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234870,6 +245441,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234892,6 +245464,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234913,6 +245486,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234934,6 +245508,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234955,6 +245530,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234976,6 +245552,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -234999,6 +245576,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235022,6 +245600,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235044,6 +245623,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235066,6 +245646,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235088,6 +245669,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235110,6 +245692,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235132,6 +245715,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235154,6 +245738,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235175,6 +245760,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235196,6 +245782,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235217,6 +245804,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235238,6 +245826,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235261,6 +245850,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235284,6 +245874,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235306,6 +245897,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235328,6 +245920,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235350,6 +245943,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235372,6 +245966,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235394,6 +245989,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235416,6 +246012,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235437,6 +246034,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235458,6 +246056,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235479,6 +246078,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235500,6 +246100,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235523,6 +246124,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235546,6 +246148,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235568,6 +246171,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235590,6 +246194,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235612,6 +246217,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235634,6 +246240,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235656,6 +246263,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235678,6 +246286,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235699,6 +246308,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235720,6 +246330,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235741,6 +246352,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235762,6 +246374,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235785,6 +246398,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235808,6 +246422,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235830,6 +246445,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235852,6 +246468,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235874,6 +246491,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235896,6 +246514,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235917,6 +246536,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235938,6 +246558,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235960,6 +246581,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -235982,6 +246604,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -236003,6 +246626,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -236024,6 +246648,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -236046,6 +246671,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: edx, bit: 23 EVEX Tuple Type: Tuple 1 scalar, 16 bit Exception class: EVEX, exception type: E3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes diff --git a/bddisasm_test/x86/movrs/movrs_64.asm b/bddisasm_test/x86/movrs/movrs_64.asm new file mode 100644 index 0000000..52e645e --- /dev/null +++ b/bddisasm_test/x86/movrs/movrs_64.asm @@ -0,0 +1,9 @@ + bits 64 + + db 0x0F, 0x38, 0x8B, 0x00 + db 0x48, 0x0F, 0x38, 0x8B, 0x10 + db 0x66, 0x0F, 0x38, 0x8B, 0x10 + db 0x0F, 0x38, 0x8A, 0x00 + db 0x48, 0x0F, 0x38, 0x8A, 0x10 + db 0x66, 0x0F, 0x38, 0x8A, 0x10 + db 0x0F, 0x18, 0x20 \ No newline at end of file diff --git a/bddisasm_test/x86/movrs/movrs_64.result b/bddisasm_test/x86/movrs/movrs_64.result new file mode 100644 index 0000000..07532d2 --- /dev/null +++ b/bddisasm_test/x86/movrs/movrs_64.result @@ -0,0 +1,118 @@ +0000000000000000 0f388b00 MOVRS eax, dword ptr [rax] + DSIZE: 32, ASIZE: 64, VLEN: - + ISA Set: MOVRS, Ins cat: DATAXFER, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 31 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: no, Compat: no, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 0, RegCount: 1 + Operand: 1, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, + Segment: 3, Base: 0, + +0000000000000004 480f388b10 MOVRS rdx, qword ptr [rax] + DSIZE: 64, ASIZE: 64, VLEN: - + ISA Set: MOVRS, Ins cat: DATAXFER, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 31 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: no, Compat: no, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 2, RegCount: 1 + Operand: 1, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, + Segment: 3, Base: 0, + +0000000000000009 660f388b10 MOVRS dx, word ptr [rax] + DSIZE: 16, ASIZE: 64, VLEN: - + ISA Set: MOVRS, Ins cat: DATAXFER, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 31 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: no, Compat: no, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: R, RegType: General Purpose, RegSize: 2, RegId: 2, RegCount: 1 + Operand: 1, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, + Segment: 3, Base: 0, + +000000000000000E 0f388a00 MOVRS al, byte ptr [rax] + DSIZE: 32, ASIZE: 64, VLEN: - + ISA Set: MOVRS, Ins cat: DATAXFER, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 31 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: no, Compat: no, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 0, RegCount: 1 + Operand: 1, Acc: R-, Type: Memory, Size: 1, RawSize: 1, Encoding: M, + Segment: 3, Base: 0, + +0000000000000012 480f388a10 MOVRS dl, byte ptr [rax] + DSIZE: 64, ASIZE: 64, VLEN: - + ISA Set: MOVRS, Ins cat: DATAXFER, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 31 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: no, Compat: no, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 2, RegCount: 1 + Operand: 1, Acc: R-, Type: Memory, Size: 1, RawSize: 1, Encoding: M, + Segment: 3, Base: 0, + +0000000000000017 660f388a10 MOVRS dl, byte ptr [rax] + DSIZE: 16, ASIZE: 64, VLEN: - + ISA Set: MOVRS, Ins cat: DATAXFER, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 31 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: no, Compat: no, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 2, RegCount: 1 + Operand: 1, Acc: R-, Type: Memory, Size: 1, RawSize: 1, Encoding: M, + Segment: 3, Base: 0, + +000000000000001C 0f1820 PREFETCHRST2 byte ptr [rax] + DSIZE: 32, ASIZE: 64, VLEN: - + ISA Set: MOVRS, Ins cat: PREFETCH, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 31 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: P, Type: Memory, Size: 1, RawSize: 1, Encoding: M, + Segment: 3, Base: 0, + diff --git a/bddisasm_test/x86/movrs/movrs_64.test b/bddisasm_test/x86/movrs/movrs_64.test new file mode 100644 index 0000000..5af4f17 Binary files /dev/null and b/bddisasm_test/x86/movrs/movrs_64.test differ diff --git a/bddisasm_test/x86/movrs/vmovrs_64.result b/bddisasm_test/x86/movrs/vmovrs_64.result new file mode 100644 index 0000000..4af7420 --- /dev/null +++ b/bddisasm_test/x86/movrs/vmovrs_64.result @@ -0,0 +1,756 @@ +0000000000000000 62fd7f086f1e VMOVRSB xmm3, xmmword ptr [r22] + DSIZE: 32, ASIZE: 64, VLEN: 128 + ISA Set: MOVRS, Ins cat: DATAXFER, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 31 + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E4 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, + Segment: 3, Base: 22, + +0000000000000006 62fd7f286f1e VMOVRSB ymm3, ymmword ptr [r22] + DSIZE: 32, ASIZE: 64, VLEN: 256 + ISA Set: MOVRS, Ins cat: DATAXFER, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 31 + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E4 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, + Segment: 3, Base: 22, + +000000000000000C 62fd7f486f1e VMOVRSB zmm3, zmmword ptr [r22] + DSIZE: 32, ASIZE: 64, VLEN: 512 + ISA Set: MOVRS, Ins cat: DATAXFER, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 31 + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E4 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, + Segment: 3, Base: 22, + +0000000000000012 62fd7f0f6f1e VMOVRSB xmm3{k7}, xmmword ptr [r22] + DSIZE: 32, ASIZE: 64, VLEN: 128 + ISA Set: MOVRS, Ins cat: DATAXFER, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 31 + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E4 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Decorator: Mask k7 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, + Segment: 3, Base: 22, + +0000000000000018 62fd7f2f6f1e VMOVRSB ymm3{k7}, ymmword ptr [r22] + DSIZE: 32, ASIZE: 64, VLEN: 256 + ISA Set: MOVRS, Ins cat: DATAXFER, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 31 + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E4 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Decorator: Mask k7 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, + Segment: 3, Base: 22, + +000000000000001E 62fd7f4f6f1e VMOVRSB zmm3{k7}, zmmword ptr [r22] + DSIZE: 32, ASIZE: 64, VLEN: 512 + ISA Set: MOVRS, Ins cat: DATAXFER, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 31 + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E4 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Decorator: Mask k7 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, + Segment: 3, Base: 22, + +0000000000000024 62fd7f8f6f1e VMOVRSB xmm3{k7}{z}, xmmword ptr [r22] + DSIZE: 32, ASIZE: 64, VLEN: 128 + ISA Set: MOVRS, Ins cat: DATAXFER, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 31 + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E4 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Decorator: Mask k7 + Decorator: Zero (no merging) + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, + Segment: 3, Base: 22, + +000000000000002A 62fd7faf6f1e VMOVRSB ymm3{k7}{z}, ymmword ptr [r22] + DSIZE: 32, ASIZE: 64, VLEN: 256 + ISA Set: MOVRS, Ins cat: DATAXFER, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 31 + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E4 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Decorator: Mask k7 + Decorator: Zero (no merging) + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, + Segment: 3, Base: 22, + +0000000000000030 62fd7fcf6f1e VMOVRSB zmm3{k7}{z}, zmmword ptr [r22] + DSIZE: 32, ASIZE: 64, VLEN: 512 + ISA Set: MOVRS, Ins cat: DATAXFER, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 31 + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E4 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Decorator: Mask k7 + Decorator: Zero (no merging) + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, + Segment: 3, Base: 22, + +0000000000000036 62fd7e086f1e VMOVRSD xmm3, xmmword ptr [r22] + DSIZE: 32, ASIZE: 64, VLEN: 128 + ISA Set: MOVRS, Ins cat: DATAXFER, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 31 + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E4 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, + Segment: 3, Base: 22, + +000000000000003C 62fd7e286f1e VMOVRSD ymm3, ymmword ptr [r22] + DSIZE: 32, ASIZE: 64, VLEN: 256 + ISA Set: MOVRS, Ins cat: DATAXFER, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 31 + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E4 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, + Segment: 3, Base: 22, + +0000000000000042 62fd7e486f1e VMOVRSD zmm3, zmmword ptr [r22] + DSIZE: 32, ASIZE: 64, VLEN: 512 + ISA Set: MOVRS, Ins cat: DATAXFER, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 31 + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E4 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, + Segment: 3, Base: 22, + +0000000000000048 62fd7e0f6f1e VMOVRSD xmm3{k7}, xmmword ptr [r22] + DSIZE: 32, ASIZE: 64, VLEN: 128 + ISA Set: MOVRS, Ins cat: DATAXFER, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 31 + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E4 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Decorator: Mask k7 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, + Segment: 3, Base: 22, + +000000000000004E 62fd7e2f6f1e VMOVRSD ymm3{k7}, ymmword ptr [r22] + DSIZE: 32, ASIZE: 64, VLEN: 256 + ISA Set: MOVRS, Ins cat: DATAXFER, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 31 + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E4 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Decorator: Mask k7 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, + Segment: 3, Base: 22, + +0000000000000054 62fd7e4f6f1e VMOVRSD zmm3{k7}, zmmword ptr [r22] + DSIZE: 32, ASIZE: 64, VLEN: 512 + ISA Set: MOVRS, Ins cat: DATAXFER, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 31 + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E4 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Decorator: Mask k7 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, + Segment: 3, Base: 22, + +000000000000005A 62fd7e8f6f1e VMOVRSD xmm3{k7}{z}, xmmword ptr [r22] + DSIZE: 32, ASIZE: 64, VLEN: 128 + ISA Set: MOVRS, Ins cat: DATAXFER, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 31 + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E4 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Decorator: Mask k7 + Decorator: Zero (no merging) + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, + Segment: 3, Base: 22, + +0000000000000060 62fd7eaf6f1e VMOVRSD ymm3{k7}{z}, ymmword ptr [r22] + DSIZE: 32, ASIZE: 64, VLEN: 256 + ISA Set: MOVRS, Ins cat: DATAXFER, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 31 + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E4 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Decorator: Mask k7 + Decorator: Zero (no merging) + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, + Segment: 3, Base: 22, + +0000000000000066 62fd7ecf6f1e VMOVRSD zmm3{k7}{z}, zmmword ptr [r22] + DSIZE: 32, ASIZE: 64, VLEN: 512 + ISA Set: MOVRS, Ins cat: DATAXFER, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 31 + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E4 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Decorator: Mask k7 + Decorator: Zero (no merging) + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, + Segment: 3, Base: 22, + +000000000000006C 62fdfe086f1e VMOVRSQ xmm3, xmmword ptr [r22] + DSIZE: 64, ASIZE: 64, VLEN: 128 + ISA Set: MOVRS, Ins cat: DATAXFER, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 31 + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E4 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, + Segment: 3, Base: 22, + +0000000000000072 62fdfe286f1e VMOVRSQ ymm3, ymmword ptr [r22] + DSIZE: 64, ASIZE: 64, VLEN: 256 + ISA Set: MOVRS, Ins cat: DATAXFER, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 31 + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E4 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, + Segment: 3, Base: 22, + +0000000000000078 62fdfe486f1e VMOVRSQ zmm3, zmmword ptr [r22] + DSIZE: 64, ASIZE: 64, VLEN: 512 + ISA Set: MOVRS, Ins cat: DATAXFER, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 31 + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E4 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, + Segment: 3, Base: 22, + +000000000000007E 62fdfe0f6f1e VMOVRSQ xmm3{k7}, xmmword ptr [r22] + DSIZE: 64, ASIZE: 64, VLEN: 128 + ISA Set: MOVRS, Ins cat: DATAXFER, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 31 + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E4 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Decorator: Mask k7 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, + Segment: 3, Base: 22, + +0000000000000084 62fdfe2f6f1e VMOVRSQ ymm3{k7}, ymmword ptr [r22] + DSIZE: 64, ASIZE: 64, VLEN: 256 + ISA Set: MOVRS, Ins cat: DATAXFER, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 31 + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E4 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Decorator: Mask k7 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, + Segment: 3, Base: 22, + +000000000000008A 62fdfe4f6f1e VMOVRSQ zmm3{k7}, zmmword ptr [r22] + DSIZE: 64, ASIZE: 64, VLEN: 512 + ISA Set: MOVRS, Ins cat: DATAXFER, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 31 + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E4 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Decorator: Mask k7 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, + Segment: 3, Base: 22, + +0000000000000090 62fdfe8f6f1e VMOVRSQ xmm3{k7}{z}, xmmword ptr [r22] + DSIZE: 64, ASIZE: 64, VLEN: 128 + ISA Set: MOVRS, Ins cat: DATAXFER, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 31 + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E4 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Decorator: Mask k7 + Decorator: Zero (no merging) + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, + Segment: 3, Base: 22, + +0000000000000096 62fdfeaf6f1e VMOVRSQ ymm3{k7}{z}, ymmword ptr [r22] + DSIZE: 64, ASIZE: 64, VLEN: 256 + ISA Set: MOVRS, Ins cat: DATAXFER, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 31 + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E4 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Decorator: Mask k7 + Decorator: Zero (no merging) + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, + Segment: 3, Base: 22, + +000000000000009C 62fdfecf6f1e VMOVRSQ zmm3{k7}{z}, zmmword ptr [r22] + DSIZE: 64, ASIZE: 64, VLEN: 512 + ISA Set: MOVRS, Ins cat: DATAXFER, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 31 + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E4 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Decorator: Mask k7 + Decorator: Zero (no merging) + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, + Segment: 3, Base: 22, + +00000000000000A2 62fdff086f1e VMOVRSW xmm3, xmmword ptr [r22] + DSIZE: 64, ASIZE: 64, VLEN: 128 + ISA Set: MOVRS, Ins cat: DATAXFER, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 31 + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E4 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, + Segment: 3, Base: 22, + +00000000000000A8 62fdff286f1e VMOVRSW ymm3, ymmword ptr [r22] + DSIZE: 64, ASIZE: 64, VLEN: 256 + ISA Set: MOVRS, Ins cat: DATAXFER, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 31 + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E4 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, + Segment: 3, Base: 22, + +00000000000000AE 62fdff486f1e VMOVRSW zmm3, zmmword ptr [r22] + DSIZE: 64, ASIZE: 64, VLEN: 512 + ISA Set: MOVRS, Ins cat: DATAXFER, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 31 + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E4 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, + Segment: 3, Base: 22, + +00000000000000B4 62fdff0f6f1e VMOVRSW xmm3{k7}, xmmword ptr [r22] + DSIZE: 64, ASIZE: 64, VLEN: 128 + ISA Set: MOVRS, Ins cat: DATAXFER, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 31 + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E4 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Decorator: Mask k7 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, + Segment: 3, Base: 22, + +00000000000000BA 62fdff2f6f1e VMOVRSW ymm3{k7}, ymmword ptr [r22] + DSIZE: 64, ASIZE: 64, VLEN: 256 + ISA Set: MOVRS, Ins cat: DATAXFER, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 31 + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E4 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Decorator: Mask k7 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, + Segment: 3, Base: 22, + +00000000000000C0 62fdff4f6f1e VMOVRSW zmm3{k7}, zmmword ptr [r22] + DSIZE: 64, ASIZE: 64, VLEN: 512 + ISA Set: MOVRS, Ins cat: DATAXFER, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 31 + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E4 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Decorator: Mask k7 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, + Segment: 3, Base: 22, + +00000000000000C6 62fdff8f6f1e VMOVRSW xmm3{k7}{z}, xmmword ptr [r22] + DSIZE: 64, ASIZE: 64, VLEN: 128 + ISA Set: MOVRS, Ins cat: DATAXFER, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 31 + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E4 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Decorator: Mask k7 + Decorator: Zero (no merging) + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, + Segment: 3, Base: 22, + +00000000000000CC 62fdffaf6f1e VMOVRSW ymm3{k7}{z}, ymmword ptr [r22] + DSIZE: 64, ASIZE: 64, VLEN: 256 + ISA Set: MOVRS, Ins cat: DATAXFER, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 31 + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E4 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Decorator: Mask k7 + Decorator: Zero (no merging) + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, + Segment: 3, Base: 22, + +00000000000000D2 62fdffcf6f1e VMOVRSW zmm3{k7}{z}, zmmword ptr [r22] + DSIZE: 64, ASIZE: 64, VLEN: 512 + ISA Set: MOVRS, Ins cat: DATAXFER, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 31 + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E4 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Decorator: Mask k7 + Decorator: Zero (no merging) + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: A, RegType: Mask, RegSize: 8, RegId: 7, RegCount: 1 + Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, + Segment: 3, Base: 22, + diff --git a/bddisasm_test/x86/movrs/vmovrs_64.test b/bddisasm_test/x86/movrs/vmovrs_64.test new file mode 100644 index 0000000..211b929 --- /dev/null +++ b/bddisasm_test/x86/movrs/vmovrs_64.test @@ -0,0 +1 @@ +býobý(obýHobýobý/obýOobýobý¯obýÏobý~obý~(obý~Hobý~obý~/obý~Oobý~obý~¯obý~Ïobýþobýþ(obýþHobýþobýþ/obýþOobýþobýþ¯obýþÏobýÿobýÿ(obýÿHobýÿobýÿ/obýÿOobýÿobýÿ¯obýÿÏo \ No newline at end of file diff --git a/bddisasm_test/x86/msr/msr_64.asm b/bddisasm_test/x86/msr/msr_64.asm index 2a96790..8b9ff71 100644 --- a/bddisasm_test/x86/msr/msr_64.asm +++ b/bddisasm_test/x86/msr/msr_64.asm @@ -1,5 +1,16 @@ bits 64 - db 0xF2, 0x0F, 0x01, 0xC6 ; RDMSRLIST - db 0xF3, 0x0F, 0x01, 0xC6 ; WRMSRLIST - db 0x0F, 0x01, 0xC6 ; WRMSRNS \ No newline at end of file + ; RDMSR rax, 0xbdbdbdbd + db 0xc4, 0xe7, 0x7b, 0xf6, 0xc0, 0xbd, 0xbd, 0xbd, 0xbd + ; RDMSR rax, 0xbdbdbdbd + db 0x62, 0xf7, 0x7f, 0x08, 0xf6, 0xc0, 0xbd, 0xbd, 0xbd, 0xbd + ; RDMSRLIST + db 0xF2, 0x0F, 0x01, 0xC6 + ; WRMSRNS + db 0x0F, 0x01, 0xC6 + ; WRMSRNS 0xbdbdbdbd, rax + db 0xc4, 0xe7, 0x7a, 0xf6, 0xc0, 0xbd, 0xbd, 0xbd, 0xbd + ; WRMSRNS 0xbdbdbdbd, rax + db 0x62, 0xf7, 0x7e, 0x08, 0xf6, 0xc0, 0xbd, 0xbd, 0xbd, 0xbd + ; WRMSRLIST + db 0xF3, 0x0F, 0x01, 0xC6 diff --git a/bddisasm_test/x86/msr/msr_64.result b/bddisasm_test/x86/msr/msr_64.result index 2425a59..3e75fa5 100644 --- a/bddisasm_test/x86/msr/msr_64.result +++ b/bddisasm_test/x86/msr/msr_64.result @@ -1,7 +1,7 @@ -0000000000000000 f20f01c6 RDMSRLIST +0000000000000000 c4e77bf6c0bdbdbdbd RDMSR rax, 0xbdbdbdbd DSIZE: 32, ASIZE: 64, VLEN: - - ISA Set: MSRLIST, Ins cat: SYSTEM, CET tracked: no - CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 27 + ISA Set: MSR_IMM, Ins cat: SYSTEM, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: ecx, bit: 5 Valid modes R0: yes, R1: no, R2: no, R3: no Real: no, V8086: no, Prot: no, Compat: no, Long: yes @@ -11,13 +11,29 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: R-, Type: Memory, Size: 512, RawSize: 512, Encoding: S, - Base: 6, - Operand: 1, Acc: -W, Type: Memory, Size: 512, RawSize: 512, Encoding: S, - Base: 7, - Operand: 2, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: General Purpose, RegSize: 4, RegId: 1, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 1, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I + Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: E, RegType: Model Specific, RegSize: 8, RegId: 0xffffffff, RegCount: 1 + +0000000000000009 62f77f08f6c0bdbdbdbd RDMSR rax, 0xbdbdbdbd + DSIZE: 32, ASIZE: 64, VLEN: - + ISA Set: MSR_IMM, Ins cat: SYSTEM, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: ecx, bit: 5 + EVEX Tuple Type: None + Valid modes + R0: yes, R1: no, R2: no, R3: no + Real: no, V8086: no, Prot: no, Compat: no, Long: yes + SMM on: yes, SMM off: yes, SGX on: no, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 1, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I + Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: E, RegType: Model Specific, RegSize: 8, RegId: 0xffffffff, RegCount: 1 -0000000000000004 f30f01c6 WRMSRLIST +0000000000000013 f20f01c6 RDMSRLIST DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: MSRLIST, Ins cat: SYSTEM, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 27 @@ -32,11 +48,11 @@ BND: no, BHINT: no, DNT: no Operand: 0, Acc: R-, Type: Memory, Size: 512, RawSize: 512, Encoding: S, Base: 6, - Operand: 1, Acc: R-, Type: Memory, Size: 512, RawSize: 512, Encoding: S, + Operand: 1, Acc: -W, Type: Memory, Size: 512, RawSize: 512, Encoding: S, Base: 7, Operand: 2, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: General Purpose, RegSize: 4, RegId: 1, RegCount: 1 -0000000000000008 0f01c6 WRMSRNS +0000000000000017 0f01c6 WRMSRNS DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: WRMSRNS, Ins cat: SYSTEM, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 19 @@ -54,3 +70,57 @@ Operand: 2, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: General Purpose, RegSize: 4, RegId: 1, RegCount: 1 Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: E, RegType: Model Specific, RegSize: 8, RegId: 0xffffffff, RegCount: 1 +000000000000001A c4e77af6c0bdbdbdbd WRMSRNS 0xbdbdbdbd, rax + DSIZE: 32, ASIZE: 64, VLEN: - + ISA Set: MSR_IMM, Ins cat: SYSTEM, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: ecx, bit: 5 + Valid modes + R0: yes, R1: no, R2: no, R3: no + Real: no, V8086: no, Prot: no, Compat: no, Long: yes + SMM on: yes, SMM off: yes, SGX on: no, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: E, RegType: Model Specific, RegSize: 8, RegId: 0xffffffff, RegCount: 1 + +0000000000000023 62f77e08f6c0bdbdbdbd WRMSRNS 0xbdbdbdbd, rax + DSIZE: 32, ASIZE: 64, VLEN: - + ISA Set: MSR_IMM, Ins cat: SYSTEM, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: ecx, bit: 5 + EVEX Tuple Type: None + Valid modes + R0: yes, R1: no, R2: no, R3: no + Real: no, V8086: no, Prot: no, Compat: no, Long: yes + SMM on: yes, SMM off: yes, SGX on: no, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: E, RegType: Model Specific, RegSize: 8, RegId: 0xffffffff, RegCount: 1 + +000000000000002D f30f01c6 WRMSRLIST + DSIZE: 32, ASIZE: 64, VLEN: - + ISA Set: MSRLIST, Ins cat: SYSTEM, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 27 + Valid modes + R0: yes, R1: no, R2: no, R3: no + Real: no, V8086: no, Prot: no, Compat: no, Long: yes + SMM on: yes, SMM off: yes, SGX on: no, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: R-, Type: Memory, Size: 512, RawSize: 512, Encoding: S, + Base: 6, + Operand: 1, Acc: R-, Type: Memory, Size: 512, RawSize: 512, Encoding: S, + Base: 7, + Operand: 2, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: General Purpose, RegSize: 4, RegId: 1, RegCount: 1 + diff --git a/bddisasm_test/x86/msr/msr_64.test b/bddisasm_test/x86/msr/msr_64.test index 81baf59..d1e8ee0 100644 --- a/bddisasm_test/x86/msr/msr_64.test +++ b/bddisasm_test/x86/msr/msr_64.test @@ -1 +1 @@ -òÆóÆÆ \ No newline at end of file +Äç{öÀ½½½½b÷öÀ½½½½òÆÆÄçzöÀ½½½½b÷~öÀ½½½½óÆ \ No newline at end of file diff --git a/bddisasm_test/x86/simd/mmx_64.result b/bddisasm_test/x86/simd/mmx_64.result index 3fc0f5f..8694070 100644 --- a/bddisasm_test/x86/simd/mmx_64.result +++ b/bddisasm_test/x86/simd/mmx_64.result @@ -2,6 +2,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: SSE, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 25 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -18,6 +19,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: SSE2, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -34,6 +36,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: SSE, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 25 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -50,6 +53,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: SSE2, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -1132,6 +1136,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: SSE, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 25 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -1148,6 +1153,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: SSE2, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -1164,6 +1170,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: SSE, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 25 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -1180,6 +1187,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: SSE2, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes diff --git a/bddisasm_test/x86/simd/sse2_64.result b/bddisasm_test/x86/simd/sse2_64.result index 14c0b04..ad4a972 100644 --- a/bddisasm_test/x86/simd/sse2_64.result +++ b/bddisasm_test/x86/simd/sse2_64.result @@ -211,6 +211,7 @@ ISA Set: SSE2, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -228,6 +229,7 @@ ISA Set: SSE2, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -263,6 +265,7 @@ ISA Set: SSE2, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -280,6 +283,7 @@ ISA Set: SSE2, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -297,6 +301,7 @@ ISA Set: SSE2, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -314,6 +319,7 @@ ISA Set: SSE2, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -331,6 +337,7 @@ ISA Set: SSE2, Ins cat: SSE2, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID FLAGS access CF: m, PF: m, ZF: m, Valid modes @@ -351,6 +358,7 @@ ISA Set: SSE2, Ins cat: SSE2, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID FLAGS access CF: m, PF: m, ZF: m, Valid modes @@ -388,6 +396,7 @@ ISA Set: SSE2, Ins cat: SSE, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -405,6 +414,7 @@ ISA Set: SSE2, Ins cat: SSE, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -490,6 +500,7 @@ ISA Set: SSE2, Ins cat: SSE, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -507,6 +518,7 @@ ISA Set: SSE2, Ins cat: SSE, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -524,6 +536,7 @@ ISA Set: SSE2, Ins cat: SSE, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -541,6 +554,7 @@ ISA Set: SSE2, Ins cat: SSE, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -558,6 +572,7 @@ ISA Set: SSE2, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -575,6 +590,7 @@ ISA Set: SSE2, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -592,6 +608,7 @@ ISA Set: SSE2, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -609,6 +626,7 @@ ISA Set: SSE2, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -626,6 +644,7 @@ ISA Set: SSE2, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -643,6 +662,7 @@ ISA Set: SSE2, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -660,6 +680,7 @@ ISA Set: SSE2, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -677,6 +698,7 @@ ISA Set: SSE2, Ins cat: SSE, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -694,6 +716,7 @@ ISA Set: SSE2, Ins cat: SSE, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -711,6 +734,7 @@ ISA Set: SSE2, Ins cat: SSE, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -728,6 +752,7 @@ ISA Set: SSE2, Ins cat: SSE, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -745,6 +770,7 @@ ISA Set: SSE2, Ins cat: SSE, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -762,6 +788,7 @@ ISA Set: SSE2, Ins cat: SSE, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -779,6 +806,7 @@ ISA Set: SSE2, Ins cat: SSE, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -796,6 +824,7 @@ ISA Set: SSE2, Ins cat: SSE, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -1479,6 +1508,7 @@ ISA Set: SSE2, Ins cat: SSE, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -1497,6 +1527,7 @@ ISA Set: SSE2, Ins cat: SSE, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -1996,6 +2027,7 @@ ISA Set: SSE2, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -2030,6 +2062,7 @@ ISA Set: SSE2, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -2657,6 +2690,7 @@ ISA Set: SSE2, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -2674,6 +2708,7 @@ ISA Set: SSE2, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -2709,6 +2744,7 @@ ISA Set: SSE2, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -2727,6 +2763,7 @@ ISA Set: SSE2, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -2745,6 +2782,7 @@ ISA Set: SSE2, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -2763,6 +2801,7 @@ ISA Set: SSE2, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -2781,6 +2820,7 @@ ISA Set: SSE2, Ins cat: SSE2, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID FLAGS access CF: m, PF: m, ZF: m, Valid modes @@ -2802,6 +2842,7 @@ ISA Set: SSE2, Ins cat: SSE2, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID FLAGS access CF: m, PF: m, ZF: m, Valid modes @@ -2840,6 +2881,7 @@ ISA Set: SSE2, Ins cat: SSE, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -2858,6 +2900,7 @@ ISA Set: SSE2, Ins cat: SSE, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -2948,6 +2991,7 @@ ISA Set: SSE2, Ins cat: SSE, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -2966,6 +3010,7 @@ ISA Set: SSE2, Ins cat: SSE, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -2984,6 +3029,7 @@ ISA Set: SSE2, Ins cat: SSE, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -3002,6 +3048,7 @@ ISA Set: SSE2, Ins cat: SSE, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -3020,6 +3067,7 @@ ISA Set: SSE2, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -3038,6 +3086,7 @@ ISA Set: SSE2, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -3056,6 +3105,7 @@ ISA Set: SSE2, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -3074,6 +3124,7 @@ ISA Set: SSE2, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -3092,6 +3143,7 @@ ISA Set: SSE2, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -3110,6 +3162,7 @@ ISA Set: SSE2, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -3128,6 +3181,7 @@ ISA Set: SSE2, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -3146,6 +3200,7 @@ ISA Set: SSE2, Ins cat: SSE, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -3164,6 +3219,7 @@ ISA Set: SSE2, Ins cat: SSE, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -3182,6 +3238,7 @@ ISA Set: SSE2, Ins cat: SSE, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -3200,6 +3257,7 @@ ISA Set: SSE2, Ins cat: SSE, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -3218,6 +3276,7 @@ ISA Set: SSE2, Ins cat: SSE, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -3236,6 +3295,7 @@ ISA Set: SSE2, Ins cat: SSE, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IDZOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -3254,6 +3314,7 @@ ISA Set: SSE2, Ins cat: SSE, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -3272,6 +3333,7 @@ ISA Set: SSE2, Ins cat: SSE, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -3981,6 +4043,7 @@ ISA Set: SSE2, Ins cat: SSE, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -4000,6 +4063,7 @@ ISA Set: SSE2, Ins cat: SSE, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: ID Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -4521,6 +4585,7 @@ ISA Set: SSE2, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -4557,6 +4622,7 @@ ISA Set: SSE2, Ins cat: CONVERT, CET tracked: no CPUID leaf: 0x00000001, reg: edx, bit: 26 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes diff --git a/bddisasm_test/x86/simd/sse3_64.result b/bddisasm_test/x86/simd/sse3_64.result index c1fa06d..c8f6e27 100644 --- a/bddisasm_test/x86/simd/sse3_64.result +++ b/bddisasm_test/x86/simd/sse3_64.result @@ -54,6 +54,7 @@ ISA Set: SSE3, Ins cat: SSE, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 0 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -71,6 +72,7 @@ ISA Set: SSE3, Ins cat: SSE, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 0 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -88,6 +90,7 @@ ISA Set: SSE3, Ins cat: SSE, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 0 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -105,6 +108,7 @@ ISA Set: SSE3, Ins cat: SSE, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 0 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -122,6 +126,7 @@ ISA Set: SSE3, Ins cat: SSE, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 0 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -139,6 +144,7 @@ ISA Set: SSE3, Ins cat: SSE, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 0 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -501,6 +507,7 @@ ISA Set: SSE3, Ins cat: SSE, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 0 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -519,6 +526,7 @@ ISA Set: SSE3, Ins cat: SSE, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 0 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -537,6 +545,7 @@ ISA Set: SSE3, Ins cat: SSE, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 0 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -555,6 +564,7 @@ ISA Set: SSE3, Ins cat: SSE, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 0 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -573,6 +583,7 @@ ISA Set: SSE3, Ins cat: SSE, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 0 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -591,6 +602,7 @@ ISA Set: SSE3, Ins cat: SSE, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 0 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes diff --git a/bddisasm_test/x86/simd/sse4_64.result b/bddisasm_test/x86/simd/sse4_64.result index 2c68a65..b121238 100644 --- a/bddisasm_test/x86/simd/sse4_64.result +++ b/bddisasm_test/x86/simd/sse4_64.result @@ -638,6 +638,7 @@ ISA Set: SSE4, Ins cat: SSE, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 19 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -656,6 +657,7 @@ ISA Set: SSE4, Ins cat: SSE, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 19 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -674,6 +676,7 @@ ISA Set: SSE4, Ins cat: SSE, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 19 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -692,6 +695,7 @@ ISA Set: SSE4, Ins cat: SSE, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 19 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -1002,6 +1006,7 @@ ISA Set: SSE4, Ins cat: SSE, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 19 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -1020,6 +1025,7 @@ ISA Set: SSE4, Ins cat: SSE, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 19 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -1813,6 +1819,7 @@ ISA Set: SSE4, Ins cat: SSE, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 19 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -1832,6 +1839,7 @@ ISA Set: SSE4, Ins cat: SSE, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 19 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -1851,6 +1859,7 @@ ISA Set: SSE4, Ins cat: SSE, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 19 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -1870,6 +1879,7 @@ ISA Set: SSE4, Ins cat: SSE, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 19 Exception class: SSE/VEX, exception type: 3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -2184,6 +2194,7 @@ ISA Set: SSE4, Ins cat: SSE, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 19 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes @@ -2203,6 +2214,7 @@ ISA Set: SSE4, Ins cat: SSE, CET tracked: no CPUID leaf: 0x00000001, reg: ecx, bit: 19 Exception class: SSE/VEX, exception type: 2 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: yes, V8086: yes, Prot: yes, Compat: yes, Long: yes diff --git a/bddisasm_test/x86/sm/sm4_evex_64.result b/bddisasm_test/x86/sm/sm4_evex_64.result new file mode 100644 index 0000000..ec8b4b6 --- /dev/null +++ b/bddisasm_test/x86/sm/sm4_evex_64.result @@ -0,0 +1,234 @@ +0000000000000000 62fa7e08da1e VSM4KEY4 xmm3, xmm0, xmmword ptr [r22] + DSIZE: 32, ASIZE: 64, VLEN: 128 + ISA Set: SM4, Ins cat: SM4, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 2 + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E6 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, + Segment: 3, Base: 22, + +0000000000000006 62fa7e28da1e VSM4KEY4 ymm3, ymm0, ymmword ptr [r22] + DSIZE: 32, ASIZE: 64, VLEN: 256 + ISA Set: SM4, Ins cat: SM4, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 2 + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E6 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, + Segment: 3, Base: 22, + +000000000000000C 62fa7e48da1e VSM4KEY4 zmm3, zmm0, zmmword ptr [r22] + DSIZE: 32, ASIZE: 64, VLEN: 512 + ISA Set: SM4, Ins cat: SM4, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 2 + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E6 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, + Segment: 3, Base: 22, + +0000000000000012 62fa7e08dade VSM4KEY4 xmm3, xmm0, xmm6 + DSIZE: 32, ASIZE: 64, VLEN: 128 + ISA Set: SM4, Ins cat: SM4, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 2 + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E6 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + +0000000000000018 62fa7e28dade VSM4KEY4 ymm3, ymm0, ymm6 + DSIZE: 32, ASIZE: 64, VLEN: 256 + ISA Set: SM4, Ins cat: SM4, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 2 + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E6 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 + +000000000000001E 62fa7e48dade VSM4KEY4 zmm3, zmm0, zmm6 + DSIZE: 32, ASIZE: 64, VLEN: 512 + ISA Set: SM4, Ins cat: SM4, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 2 + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E6 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 + +0000000000000024 62fa7f08da1e VSM4RNDS4 xmm3, xmm0, xmmword ptr [r22] + DSIZE: 32, ASIZE: 64, VLEN: 128 + ISA Set: SM4, Ins cat: SM4, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 2 + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E6 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Memory, Size: 16, RawSize: 16, Encoding: M, + Segment: 3, Base: 22, + +000000000000002A 62fa7f28da1e VSM4RNDS4 ymm3, ymm0, ymmword ptr [r22] + DSIZE: 32, ASIZE: 64, VLEN: 256 + ISA Set: SM4, Ins cat: SM4, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 2 + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E6 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Memory, Size: 32, RawSize: 32, Encoding: M, + Segment: 3, Base: 22, + +0000000000000030 62fa7f48da1e VSM4RNDS4 zmm3, zmm0, zmmword ptr [r22] + DSIZE: 32, ASIZE: 64, VLEN: 512 + ISA Set: SM4, Ins cat: SM4, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 2 + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E6 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Memory, Size: 64, RawSize: 64, Encoding: M, + Segment: 3, Base: 22, + +0000000000000036 62fa7f08dade VSM4RNDS4 xmm3, xmm0, xmm6 + DSIZE: 32, ASIZE: 64, VLEN: 128 + ISA Set: SM4, Ins cat: SM4, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 2 + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E6 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 16, RawSize: 16, Encoding: R, RegType: Vector, RegSize: 16, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: V, RegType: Vector, RegSize: 16, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 16, RawSize: 16, Encoding: M, RegType: Vector, RegSize: 16, RegId: 6, RegCount: 1 + +000000000000003C 62fa7f28dade VSM4RNDS4 ymm3, ymm0, ymm6 + DSIZE: 32, ASIZE: 64, VLEN: 256 + ISA Set: SM4, Ins cat: SM4, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 2 + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E6 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 32, RawSize: 32, Encoding: R, RegType: Vector, RegSize: 32, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: V, RegType: Vector, RegSize: 32, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 32, RawSize: 32, Encoding: M, RegType: Vector, RegSize: 32, RegId: 6, RegCount: 1 + +0000000000000042 62fa7f48dade VSM4RNDS4 zmm3, zmm0, zmm6 + DSIZE: 32, ASIZE: 64, VLEN: 512 + ISA Set: SM4, Ins cat: SM4, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: eax, bit: 2 + EVEX Tuple Type: Full Mem + Exception class: EVEX, exception type: E6 + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 64, RawSize: 64, Encoding: R, RegType: Vector, RegSize: 64, RegId: 3, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: V, RegType: Vector, RegSize: 64, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 64, RawSize: 64, Encoding: M, RegType: Vector, RegSize: 64, RegId: 6, RegCount: 1 + diff --git a/bddisasm_test/x86/sm/sm4_evex_64.test b/bddisasm_test/x86/sm/sm4_evex_64.test new file mode 100644 index 0000000..00c0fe0 --- /dev/null +++ b/bddisasm_test/x86/sm/sm4_evex_64.test @@ -0,0 +1 @@ +bú~Úbú~(Úbú~HÚbú~ÚÞbú~(ÚÞbú~HÚÞbúÚbú(ÚbúHÚbúÚÞbú(ÚÞbúHÚÞ \ No newline at end of file diff --git a/bddisasm_test/x86/sm/sm_64.asm b/bddisasm_test/x86/sm/sm_64.asm index fc52ba5..b7814ce 100644 --- a/bddisasm_test/x86/sm/sm_64.asm +++ b/bddisasm_test/x86/sm/sm_64.asm @@ -16,4 +16,6 @@ db 0xc4, 0x62, 0x7f, 0xda, 0x01 ; VSM4RNDS4 ymm8, ymm0, ymmword ptr [rcx] db 0xc4, 0x63, 0x79, 0xde, 0xc7, 0xef ; VSM3RNDS2 xmm8, xmm0, xmm7, 0xef - db 0xc4, 0x63, 0x79, 0xde, 0x01, 0xef ; VSM3RNDS2 xmm8, xmm0, xmmword ptr [rcx], 0xef \ No newline at end of file + db 0xc4, 0x63, 0x79, 0xde, 0x01, 0xef ; VSM3RNDS2 xmm8, xmm0, xmmword ptr [rcx], 0xef + + \ No newline at end of file diff --git a/bddisasm_test/x86/special/ignorew_evex_32.result b/bddisasm_test/x86/special/ignorew_evex_32.result index 3e91450..5af0803 100644 --- a/bddisasm_test/x86/special/ignorew_evex_32.result +++ b/bddisasm_test/x86/special/ignorew_evex_32.result @@ -40,6 +40,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E10NF + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59,6 +60,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E10NF + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78,6 +80,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Fixes Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96,6 +99,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Fixes Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes diff --git a/bddisasm_test/x86/special/ignorew_evex_64.result b/bddisasm_test/x86/special/ignorew_evex_64.result index f137bba..ab010d4 100644 --- a/bddisasm_test/x86/special/ignorew_evex_64.result +++ b/bddisasm_test/x86/special/ignorew_evex_64.result @@ -40,6 +40,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E10NF + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -59,6 +60,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Scalar Exception class: EVEX, exception type: E3 + SIMD Exceptions: P Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -78,6 +80,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Fixes Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes @@ -96,6 +99,7 @@ CPUID leaf: 0x00000007, sub-leaf: 0x00000000, reg: ebx, bit: 16 EVEX Tuple Type: Tuple 1 Fixes Exception class: EVEX, exception type: E3 + SIMD Exceptions: IP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes diff --git a/bddisasm_test/x86/special/regressions_64.result b/bddisasm_test/x86/special/regressions_64.result index ef9731d..e53d5f1 100644 --- a/bddisasm_test/x86/special/regressions_64.result +++ b/bddisasm_test/x86/special/regressions_64.result @@ -160,6 +160,7 @@ DSIZE: 32, ASIZE: 64, VLEN: 128 ISA Set: FMA4, Ins cat: FMA4, CET tracked: no CPUID leaf: 0x80000001, reg: ecx, bit: 16 + SIMD Exceptions: IDOUP Valid modes R0: yes, R1: yes, R2: yes, R3: yes Real: no, V8086: no, Prot: yes, Compat: yes, Long: yes diff --git a/bddisasm_test/x86/usermsr/rex2_valid_64.asm b/bddisasm_test/x86/usermsr/rex2_valid_64.asm index ac9da1a..ee20835 100644 --- a/bddisasm_test/x86/usermsr/rex2_valid_64.asm +++ b/bddisasm_test/x86/usermsr/rex2_valid_64.asm @@ -1,11 +1,14 @@ bits 64 - ; UWRMSR 0x44332211, rax - db 0xC4, 0xE7, 0x7A, 0xF8, 0xC0, 0x11, 0x22, 0x33, 0x44 + ; URDMSR rax, rcx + db 0xF2, 0x0F, 0x38, 0xF8, 0xC1 ; URDMSR rax, 0x44332211 db 0xC4, 0xE7, 0x7B, 0xF8, 0xC0, 0x11, 0x22, 0x33, 0x44 + ; URDMSR rax, 0xbdbdbdbd + db 0x62, 0xf7, 0x7f, 0x08, 0xf8, 0xc0, 0xbd, 0xbd, 0xbd, 0xbd ; UWRMSR rcx, rax db 0xF3, 0x0F, 0x38, 0xF8, 0xC1 - ; URDMSR rax, rcx - db 0xF2, 0x0F, 0x38, 0xF8, 0xC1 - \ No newline at end of file + ; UWRMSR 0x44332211, rax + db 0xC4, 0xE7, 0x7A, 0xF8, 0xC0, 0x11, 0x22, 0x33, 0x44 + ; UWRMSR 0xbdbdbdbd, rax + db 0x62, 0xf7, 0x7e, 0x08, 0xf8, 0xc0, 0xbd, 0xbd, 0xbd, 0xbd \ No newline at end of file diff --git a/bddisasm_test/x86/usermsr/rex2_valid_64.result b/bddisasm_test/x86/usermsr/rex2_valid_64.result index 9240188..cd627f9 100644 --- a/bddisasm_test/x86/usermsr/rex2_valid_64.result +++ b/bddisasm_test/x86/usermsr/rex2_valid_64.result @@ -1,4 +1,4 @@ -0000000000000000 c4e77af8c011223344 UWRMSR 0x44332211, rax +0000000000000000 f20f38f8c1 URDMSR rcx, rax DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: USER_MSR, Ins cat: USER_MSR, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 15 @@ -11,11 +11,11 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: E, RegType: Model Specific, RegSize: 8, RegId: 0xffffffff, RegCount: 1 + Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 1, RegCount: 1 + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: E, RegType: Model Specific, RegSize: 8, RegId: 0xffffffff, RegCount: 1 -0000000000000009 c4e77bf8c011223344 URDMSR rax, 0x44332211 +0000000000000005 c4e77bf8c011223344 URDMSR rax, 0x44332211 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: USER_MSR, Ins cat: USER_MSR, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 15 @@ -32,7 +32,25 @@ Operand: 1, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: E, RegType: Model Specific, RegSize: 8, RegId: 0xffffffff, RegCount: 1 -0000000000000012 f30f38f8c1 UWRMSR rax, rcx +000000000000000E 62f77f08f8c0bdbdbdbd URDMSR rax, 0xbdbdbdbd + DSIZE: 32, ASIZE: 64, VLEN: - + ISA Set: APX_F, Ins cat: USER_MSR, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 + EVEX Tuple Type: None + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: no, Compat: no, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 1, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I + Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: E, RegType: Model Specific, RegSize: 8, RegId: 0xffffffff, RegCount: 1 + +0000000000000018 f30f38f8c1 UWRMSR rax, rcx DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: USER_MSR, Ins cat: USER_MSR, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 15 @@ -49,7 +67,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 1, RegCount: 1 Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: E, RegType: Model Specific, RegSize: 8, RegId: 0xffffffff, RegCount: 1 -0000000000000017 f20f38f8c1 URDMSR rcx, rax +000000000000001D c4e77af8c011223344 UWRMSR 0x44332211, rax DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: USER_MSR, Ins cat: USER_MSR, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 15 @@ -62,7 +80,25 @@ REP: no, REPcc: no, LOCK: no HLE: no, XACQUIRE only: no, XRELEASE only: no BND: no, BHINT: no, DNT: no - Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 1, RegCount: 1 - Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 0, RegCount: 1 - Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: E, RegType: Model Specific, RegSize: 8, RegId: 0xffffffff, RegCount: 1 + Operand: 0, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: E, RegType: Model Specific, RegSize: 8, RegId: 0xffffffff, RegCount: 1 + +0000000000000026 62f77e08f8c0bdbdbdbd UWRMSR 0xbdbdbdbd, rax + DSIZE: 32, ASIZE: 64, VLEN: - + ISA Set: APX_F, Ins cat: USER_MSR, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 + EVEX Tuple Type: None + Valid modes + R0: yes, R1: yes, R2: yes, R3: yes + Real: no, V8086: no, Prot: no, Compat: no, Long: yes + SMM on: yes, SMM off: yes, SGX on: yes, SGX off: yes, TSX on: yes, TSX off: yes + VMXRoot: yes, VMXNonRoot: yes, VMXRoot SEAM: yes, VMXNonRoot SEAM: yes, VMX off: yes + Valid prefixes + REP: no, REPcc: no, LOCK: no + HLE: no, XACQUIRE only: no, XRELEASE only: no + BND: no, BHINT: no, DNT: no + Operand: 0, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I + Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 0, RegCount: 1 + Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: E, RegType: Model Specific, RegSize: 8, RegId: 0xffffffff, RegCount: 1 diff --git a/bddisasm_test/x86/usermsr/rex2_valid_64.test b/bddisasm_test/x86/usermsr/rex2_valid_64.test index 5ea7221..953825c 100644 --- a/bddisasm_test/x86/usermsr/rex2_valid_64.test +++ b/bddisasm_test/x86/usermsr/rex2_valid_64.test @@ -1 +1 @@ -ÄçzøÀ"3DÄç{øÀ"3Dó8øÁò8øÁ \ No newline at end of file +ò8øÁÄç{øÀ"3Db÷øÀ½½½½ó8øÁÄçzøÀ"3Db÷~øÀ½½½½ \ No newline at end of file diff --git a/bindings/pybddisasm/setup.py b/bindings/pybddisasm/setup.py index 83ac395..1604864 100644 --- a/bindings/pybddisasm/setup.py +++ b/bindings/pybddisasm/setup.py @@ -12,7 +12,7 @@ from codecs import open VERSION = (0, 3, 0) -LIBRARY_VERSION = (2, 2, 0) +LIBRARY_VERSION = (2, 3, 0) DIR_INCLUDE = '../../inc' here = os.path.abspath(os.path.dirname(__file__)) diff --git a/bindings/rsbddisasm/Cargo.toml b/bindings/rsbddisasm/Cargo.toml index f191d77..64bc23b 100644 --- a/bindings/rsbddisasm/Cargo.toml +++ b/bindings/rsbddisasm/Cargo.toml @@ -6,4 +6,4 @@ members = [ ] [workspace.package] -version = "0.5.0" +version = "0.5.1" diff --git a/bindings/rsbddisasm/bddisasm/Cargo.toml b/bindings/rsbddisasm/bddisasm/Cargo.toml index 30e286f..046a439 100644 --- a/bindings/rsbddisasm/bddisasm/Cargo.toml +++ b/bindings/rsbddisasm/bddisasm/Cargo.toml @@ -14,7 +14,8 @@ categories = ["api-bindings", "hardware-support"] keywords = ["disassembler", "decoder", "x86", "amd64", "x86_64"] [dependencies] -bddisasm-sys = { version = "0.5.0", path = "../bddisasm-sys" } +bddisasm-sys = { version = "0.5.1", path = "../bddisasm-sys" } +bitflags = "2.6.0" [features] std = [] diff --git a/bindings/rsbddisasm/bddisasm/README.md b/bindings/rsbddisasm/bddisasm/README.md index c05a0b2..be5ac7b 100644 --- a/bindings/rsbddisasm/bddisasm/README.md +++ b/bindings/rsbddisasm/bddisasm/README.md @@ -18,7 +18,7 @@ Add `bddisasm` to your `Cargo.toml`: ```toml [dependencies] -bddisasm = "0.5.0" +bddisasm = "0.5.1" ``` ## Examples diff --git a/bindings/rsbddisasm/bddisasm/src/decoded_instruction.rs b/bindings/rsbddisasm/bddisasm/src/decoded_instruction.rs index 2e1e397..de95880 100644 --- a/bindings/rsbddisasm/bddisasm/src/decoded_instruction.rs +++ b/bindings/rsbddisasm/bddisasm/src/decoded_instruction.rs @@ -14,6 +14,7 @@ use crate::mnemonic::Mnemonic; use crate::operand; use crate::operand::{OpAccess, Operands, OperandsLookup}; use crate::rflags::flags_raw; +use crate::simd_exceptions::SimdExceptions; use crate::tuple::Tuple; use core::convert::TryFrom; @@ -312,10 +313,10 @@ impl DecodedInstruction { /// # Arguments /// /// * `code` - An [`u8`] slice that holds the code to be decoded. Note that decoding is attempted only from offset - /// 0 inside this code chunk. + /// 0 inside this code chunk. /// * `mode` - The mode in which to decode the instruction. /// * `ip` - The instruction pointer value to use when formatting the decoded instruction. Does not affect the - /// decoding process in any way. If not needed, use [decode](DecodedInstruction::decode) instead. + /// decoding process in any way. If not needed, use [decode](DecodedInstruction::decode) instead. /// /// # Errors /// @@ -1361,6 +1362,13 @@ impl DecodedInstruction { FpuFlags::from_raw(self.inner.FpuFlagsAccess).unwrap() } + /// SIMD Floating-Point Exceptions. + #[inline] + #[must_use] + pub fn simd_exceptions(&self) -> SimdExceptions { + SimdExceptions::from_raw(unsafe { self.inner.SimdExceptions.Raw }) + } + /// `EVEX` tuple type. /// /// # Panics diff --git a/bindings/rsbddisasm/bddisasm/src/decoder.rs b/bindings/rsbddisasm/bddisasm/src/decoder.rs index fefe531..8f228d2 100644 --- a/bindings/rsbddisasm/bddisasm/src/decoder.rs +++ b/bindings/rsbddisasm/bddisasm/src/decoder.rs @@ -23,7 +23,7 @@ impl<'a> Decoder<'a> { /// * `code` - An [`u8`] slice that holds the code to be decoded. /// * `mode` - The mode in which to decode the instruction. /// * `ip` - The instruction pointer value to use when formatting the decoded instruction. Does not affect the - /// decoding process in any way. + /// decoding process in any way. #[must_use] pub fn new(code: &'a [u8], mode: DecodeMode, ip: u64) -> Self { Self { @@ -39,7 +39,7 @@ impl<'a> Decoder<'a> { /// # Returns /// /// * `Some(DecodeResult)` - if there are still undecoded bytes in the given code chunk. The decoding may have - /// still failed. See `Remarks`. + /// still failed. See `Remarks`. /// * `None` - if all the bytes in the given code chunk were decoded. /// /// # Remarks diff --git a/bindings/rsbddisasm/bddisasm/src/fpu_flags.rs b/bindings/rsbddisasm/bddisasm/src/fpu_flags.rs index f0f24ef..f986318 100644 --- a/bindings/rsbddisasm/bddisasm/src/fpu_flags.rs +++ b/bindings/rsbddisasm/bddisasm/src/fpu_flags.rs @@ -52,10 +52,10 @@ pub struct FpuFlags { impl FpuFlags { pub(crate) fn from_raw(flags: ffi::ND_FPU_FLAGS) -> Result { Ok(Self { - c0: FpuFlagsAccess::from_raw(flags.C0())?, - c1: FpuFlagsAccess::from_raw(flags.C1())?, - c2: FpuFlagsAccess::from_raw(flags.C2())?, - c3: FpuFlagsAccess::from_raw(flags.C3())?, + c0: FpuFlagsAccess::from_raw(unsafe { flags.__bindgen_anon_1.C0() })?, + c1: FpuFlagsAccess::from_raw(unsafe { flags.__bindgen_anon_1.C1() })?, + c2: FpuFlagsAccess::from_raw(unsafe { flags.__bindgen_anon_1.C2() })?, + c3: FpuFlagsAccess::from_raw(unsafe { flags.__bindgen_anon_1.C3() })?, }) } } diff --git a/bindings/rsbddisasm/bddisasm/src/isa_set.rs b/bindings/rsbddisasm/bddisasm/src/isa_set.rs index a8a59ba..0f7e818 100644 --- a/bindings/rsbddisasm/bddisasm/src/isa_set.rs +++ b/bindings/rsbddisasm/bddisasm/src/isa_set.rs @@ -15,11 +15,16 @@ pub enum IsaSet { ADX, AES, AMD, + AMXAVX512, AMXBF16, AMXCOMPLEX, AMXFP16, + AMXFP8, AMXINT8, + AMXMOVRS, + AMXTF32, AMXTILE, + AMXTRANSPOSE, APX_F, AVX, AVX102, @@ -86,8 +91,10 @@ pub enum IsaSet { MOVBE, MOVDIR64B, MOVDIRI, + MOVRS, MPX, MSRLIST, + MSR_IMM, MWAITT, PAUSE, PCLMULQDQ, @@ -158,11 +165,16 @@ impl TryFrom for IsaSet { ffi::_ND_INS_SET::ND_SET_ADX => Ok(IsaSet::ADX), ffi::_ND_INS_SET::ND_SET_AES => Ok(IsaSet::AES), ffi::_ND_INS_SET::ND_SET_AMD => Ok(IsaSet::AMD), + ffi::_ND_INS_SET::ND_SET_AMXAVX512 => Ok(IsaSet::AMXAVX512), ffi::_ND_INS_SET::ND_SET_AMXBF16 => Ok(IsaSet::AMXBF16), ffi::_ND_INS_SET::ND_SET_AMXCOMPLEX => Ok(IsaSet::AMXCOMPLEX), ffi::_ND_INS_SET::ND_SET_AMXFP16 => Ok(IsaSet::AMXFP16), + ffi::_ND_INS_SET::ND_SET_AMXFP8 => Ok(IsaSet::AMXFP8), ffi::_ND_INS_SET::ND_SET_AMXINT8 => Ok(IsaSet::AMXINT8), + ffi::_ND_INS_SET::ND_SET_AMXMOVRS => Ok(IsaSet::AMXMOVRS), + ffi::_ND_INS_SET::ND_SET_AMXTF32 => Ok(IsaSet::AMXTF32), ffi::_ND_INS_SET::ND_SET_AMXTILE => Ok(IsaSet::AMXTILE), + ffi::_ND_INS_SET::ND_SET_AMXTRANSPOSE => Ok(IsaSet::AMXTRANSPOSE), ffi::_ND_INS_SET::ND_SET_APX_F => Ok(IsaSet::APX_F), ffi::_ND_INS_SET::ND_SET_AVX => Ok(IsaSet::AVX), ffi::_ND_INS_SET::ND_SET_AVX102 => Ok(IsaSet::AVX102), @@ -229,8 +241,10 @@ impl TryFrom for IsaSet { ffi::_ND_INS_SET::ND_SET_MOVBE => Ok(IsaSet::MOVBE), ffi::_ND_INS_SET::ND_SET_MOVDIR64B => Ok(IsaSet::MOVDIR64B), ffi::_ND_INS_SET::ND_SET_MOVDIRI => Ok(IsaSet::MOVDIRI), + ffi::_ND_INS_SET::ND_SET_MOVRS => Ok(IsaSet::MOVRS), ffi::_ND_INS_SET::ND_SET_MPX => Ok(IsaSet::MPX), ffi::_ND_INS_SET::ND_SET_MSRLIST => Ok(IsaSet::MSRLIST), + ffi::_ND_INS_SET::ND_SET_MSR_IMM => Ok(IsaSet::MSR_IMM), ffi::_ND_INS_SET::ND_SET_MWAITT => Ok(IsaSet::MWAITT), ffi::_ND_INS_SET::ND_SET_PAUSE => Ok(IsaSet::PAUSE), ffi::_ND_INS_SET::ND_SET_PCLMULQDQ => Ok(IsaSet::PCLMULQDQ), diff --git a/bindings/rsbddisasm/bddisasm/src/lib.rs b/bindings/rsbddisasm/bddisasm/src/lib.rs index 515dfce..4139678 100644 --- a/bindings/rsbddisasm/bddisasm/src/lib.rs +++ b/bindings/rsbddisasm/bddisasm/src/lib.rs @@ -22,7 +22,7 @@ //! //! ```toml //! [dependencies] -//! bddisasm = "0.5.0" +//! bddisasm = "0.5.1" //! ``` //! //! # Examples @@ -186,7 +186,7 @@ //! # Feature Flags //! //! - `std` - adds a `std` dependency - the only visible difference when doing this is that [`DecodeError`] implements -//! the `Error` trait +//! the `Error` trait //! #![cfg_attr(all(not(test), not(feature = "std")), no_std)] @@ -205,6 +205,7 @@ pub mod isa_set; pub mod mnemonic; pub mod operand; pub mod rflags; +pub mod simd_exceptions; pub mod tuple; pub use crate::decode_error::DecodeError; diff --git a/bindings/rsbddisasm/bddisasm/src/mnemonic.rs b/bindings/rsbddisasm/bddisasm/src/mnemonic.rs index db9fcad..2d29d4c 100644 --- a/bindings/rsbddisasm/bddisasm/src/mnemonic.rs +++ b/bindings/rsbddisasm/bddisasm/src/mnemonic.rs @@ -411,6 +411,7 @@ pub enum Mnemonic { MOVNTSS, MOVQ, MOVQ2DQ, + MOVRS, MOVS, MOVSD, MOVSHDUP, @@ -570,6 +571,7 @@ pub enum Mnemonic { PREFETCHIT1, PREFETCHM, PREFETCHNTA, + PREFETCHRST2, PREFETCHT0, PREFETCHT1, PREFETCHT2, @@ -720,24 +722,53 @@ pub enum Mnemonic { SYSEXIT, SYSRET, T1MSKC, + T2RPNTLVWZ0, + T2RPNTLVWZ0RS, + T2RPNTLVWZ0RST1, + T2RPNTLVWZ0T1, + T2RPNTLVWZ1, + T2RPNTLVWZ1RS, + T2RPNTLVWZ1RST1, + T2RPNTLVWZ1T1, TCMMIMFP16PS, TCMMRLFP16PS, + TCONJTCMMIMFP16PS, + TCONJTFP16, + TCVTROWD2PS, + TCVTROWPS2PBF16H, + TCVTROWPS2PBF16L, + TCVTROWPS2PHH, + TCVTROWPS2PHL, TDCALL, TDPBF16PS, + TDPBF8PS, + TDPBHF8PS, TDPBSSD, TDPBSUD, TDPBUSD, TDPBUUD, TDPFP16PS, + TDPHBF8PS, + TDPHF8PS, TEST, TESTUI, TILELOADD, + TILELOADDRS, + TILELOADDRST1, TILELOADDT1, + TILEMOVROW, TILERELEASE, TILESTORED, TILEZERO, TLBSYNC, + TMMULTF32PS, TPAUSE, + TTCMMIMFP16PS, + TTCMMRLFP16PS, + TTDPBF16PS, + TTDPFP16PS, + TTMMULTF32PS, + TTRANSPOSED, TZCNT, TZMSK, UCOMISD, @@ -1211,6 +1242,10 @@ pub enum Mnemonic { VMOVNTPD, VMOVNTPS, VMOVQ, + VMOVRSB, + VMOVRSD, + VMOVRSQ, + VMOVRSW, VMOVSD, VMOVSH, VMOVSHDUP, @@ -2134,6 +2169,7 @@ impl TryFrom for Mnemonic { ffi::_ND_INS_CLASS::ND_INS_MOVNTSS => Ok(Mnemonic::MOVNTSS), ffi::_ND_INS_CLASS::ND_INS_MOVQ => Ok(Mnemonic::MOVQ), ffi::_ND_INS_CLASS::ND_INS_MOVQ2DQ => Ok(Mnemonic::MOVQ2DQ), + ffi::_ND_INS_CLASS::ND_INS_MOVRS => Ok(Mnemonic::MOVRS), ffi::_ND_INS_CLASS::ND_INS_MOVS => Ok(Mnemonic::MOVS), ffi::_ND_INS_CLASS::ND_INS_MOVSD => Ok(Mnemonic::MOVSD), ffi::_ND_INS_CLASS::ND_INS_MOVSHDUP => Ok(Mnemonic::MOVSHDUP), @@ -2293,6 +2329,7 @@ impl TryFrom for Mnemonic { ffi::_ND_INS_CLASS::ND_INS_PREFETCHIT1 => Ok(Mnemonic::PREFETCHIT1), ffi::_ND_INS_CLASS::ND_INS_PREFETCHM => Ok(Mnemonic::PREFETCHM), ffi::_ND_INS_CLASS::ND_INS_PREFETCHNTA => Ok(Mnemonic::PREFETCHNTA), + ffi::_ND_INS_CLASS::ND_INS_PREFETCHRST2 => Ok(Mnemonic::PREFETCHRST2), ffi::_ND_INS_CLASS::ND_INS_PREFETCHT0 => Ok(Mnemonic::PREFETCHT0), ffi::_ND_INS_CLASS::ND_INS_PREFETCHT1 => Ok(Mnemonic::PREFETCHT1), ffi::_ND_INS_CLASS::ND_INS_PREFETCHT2 => Ok(Mnemonic::PREFETCHT2), @@ -2443,24 +2480,53 @@ impl TryFrom for Mnemonic { ffi::_ND_INS_CLASS::ND_INS_SYSEXIT => Ok(Mnemonic::SYSEXIT), ffi::_ND_INS_CLASS::ND_INS_SYSRET => Ok(Mnemonic::SYSRET), ffi::_ND_INS_CLASS::ND_INS_T1MSKC => Ok(Mnemonic::T1MSKC), + ffi::_ND_INS_CLASS::ND_INS_T2RPNTLVWZ0 => Ok(Mnemonic::T2RPNTLVWZ0), + ffi::_ND_INS_CLASS::ND_INS_T2RPNTLVWZ0RS => Ok(Mnemonic::T2RPNTLVWZ0RS), + ffi::_ND_INS_CLASS::ND_INS_T2RPNTLVWZ0RST1 => Ok(Mnemonic::T2RPNTLVWZ0RST1), + ffi::_ND_INS_CLASS::ND_INS_T2RPNTLVWZ0T1 => Ok(Mnemonic::T2RPNTLVWZ0T1), + ffi::_ND_INS_CLASS::ND_INS_T2RPNTLVWZ1 => Ok(Mnemonic::T2RPNTLVWZ1), + ffi::_ND_INS_CLASS::ND_INS_T2RPNTLVWZ1RS => Ok(Mnemonic::T2RPNTLVWZ1RS), + ffi::_ND_INS_CLASS::ND_INS_T2RPNTLVWZ1RST1 => Ok(Mnemonic::T2RPNTLVWZ1RST1), + ffi::_ND_INS_CLASS::ND_INS_T2RPNTLVWZ1T1 => Ok(Mnemonic::T2RPNTLVWZ1T1), ffi::_ND_INS_CLASS::ND_INS_TCMMIMFP16PS => Ok(Mnemonic::TCMMIMFP16PS), ffi::_ND_INS_CLASS::ND_INS_TCMMRLFP16PS => Ok(Mnemonic::TCMMRLFP16PS), + ffi::_ND_INS_CLASS::ND_INS_TCONJTCMMIMFP16PS => Ok(Mnemonic::TCONJTCMMIMFP16PS), + ffi::_ND_INS_CLASS::ND_INS_TCONJTFP16 => Ok(Mnemonic::TCONJTFP16), + ffi::_ND_INS_CLASS::ND_INS_TCVTROWD2PS => Ok(Mnemonic::TCVTROWD2PS), + ffi::_ND_INS_CLASS::ND_INS_TCVTROWPS2PBF16H => Ok(Mnemonic::TCVTROWPS2PBF16H), + ffi::_ND_INS_CLASS::ND_INS_TCVTROWPS2PBF16L => Ok(Mnemonic::TCVTROWPS2PBF16L), + ffi::_ND_INS_CLASS::ND_INS_TCVTROWPS2PHH => Ok(Mnemonic::TCVTROWPS2PHH), + ffi::_ND_INS_CLASS::ND_INS_TCVTROWPS2PHL => Ok(Mnemonic::TCVTROWPS2PHL), ffi::_ND_INS_CLASS::ND_INS_TDCALL => Ok(Mnemonic::TDCALL), ffi::_ND_INS_CLASS::ND_INS_TDPBF16PS => Ok(Mnemonic::TDPBF16PS), + ffi::_ND_INS_CLASS::ND_INS_TDPBF8PS => Ok(Mnemonic::TDPBF8PS), + ffi::_ND_INS_CLASS::ND_INS_TDPBHF8PS => Ok(Mnemonic::TDPBHF8PS), ffi::_ND_INS_CLASS::ND_INS_TDPBSSD => Ok(Mnemonic::TDPBSSD), ffi::_ND_INS_CLASS::ND_INS_TDPBSUD => Ok(Mnemonic::TDPBSUD), ffi::_ND_INS_CLASS::ND_INS_TDPBUSD => Ok(Mnemonic::TDPBUSD), ffi::_ND_INS_CLASS::ND_INS_TDPBUUD => Ok(Mnemonic::TDPBUUD), ffi::_ND_INS_CLASS::ND_INS_TDPFP16PS => Ok(Mnemonic::TDPFP16PS), + ffi::_ND_INS_CLASS::ND_INS_TDPHBF8PS => Ok(Mnemonic::TDPHBF8PS), + ffi::_ND_INS_CLASS::ND_INS_TDPHF8PS => Ok(Mnemonic::TDPHF8PS), ffi::_ND_INS_CLASS::ND_INS_TEST => Ok(Mnemonic::TEST), ffi::_ND_INS_CLASS::ND_INS_TESTUI => Ok(Mnemonic::TESTUI), ffi::_ND_INS_CLASS::ND_INS_TILELOADD => Ok(Mnemonic::TILELOADD), + ffi::_ND_INS_CLASS::ND_INS_TILELOADDRS => Ok(Mnemonic::TILELOADDRS), + ffi::_ND_INS_CLASS::ND_INS_TILELOADDRST1 => Ok(Mnemonic::TILELOADDRST1), ffi::_ND_INS_CLASS::ND_INS_TILELOADDT1 => Ok(Mnemonic::TILELOADDT1), + ffi::_ND_INS_CLASS::ND_INS_TILEMOVROW => Ok(Mnemonic::TILEMOVROW), ffi::_ND_INS_CLASS::ND_INS_TILERELEASE => Ok(Mnemonic::TILERELEASE), ffi::_ND_INS_CLASS::ND_INS_TILESTORED => Ok(Mnemonic::TILESTORED), ffi::_ND_INS_CLASS::ND_INS_TILEZERO => Ok(Mnemonic::TILEZERO), ffi::_ND_INS_CLASS::ND_INS_TLBSYNC => Ok(Mnemonic::TLBSYNC), + ffi::_ND_INS_CLASS::ND_INS_TMMULTF32PS => Ok(Mnemonic::TMMULTF32PS), ffi::_ND_INS_CLASS::ND_INS_TPAUSE => Ok(Mnemonic::TPAUSE), + ffi::_ND_INS_CLASS::ND_INS_TTCMMIMFP16PS => Ok(Mnemonic::TTCMMIMFP16PS), + ffi::_ND_INS_CLASS::ND_INS_TTCMMRLFP16PS => Ok(Mnemonic::TTCMMRLFP16PS), + ffi::_ND_INS_CLASS::ND_INS_TTDPBF16PS => Ok(Mnemonic::TTDPBF16PS), + ffi::_ND_INS_CLASS::ND_INS_TTDPFP16PS => Ok(Mnemonic::TTDPFP16PS), + ffi::_ND_INS_CLASS::ND_INS_TTMMULTF32PS => Ok(Mnemonic::TTMMULTF32PS), + ffi::_ND_INS_CLASS::ND_INS_TTRANSPOSED => Ok(Mnemonic::TTRANSPOSED), ffi::_ND_INS_CLASS::ND_INS_TZCNT => Ok(Mnemonic::TZCNT), ffi::_ND_INS_CLASS::ND_INS_TZMSK => Ok(Mnemonic::TZMSK), ffi::_ND_INS_CLASS::ND_INS_UCOMISD => Ok(Mnemonic::UCOMISD), @@ -2934,6 +3000,10 @@ impl TryFrom for Mnemonic { ffi::_ND_INS_CLASS::ND_INS_VMOVNTPD => Ok(Mnemonic::VMOVNTPD), ffi::_ND_INS_CLASS::ND_INS_VMOVNTPS => Ok(Mnemonic::VMOVNTPS), ffi::_ND_INS_CLASS::ND_INS_VMOVQ => Ok(Mnemonic::VMOVQ), + ffi::_ND_INS_CLASS::ND_INS_VMOVRSB => Ok(Mnemonic::VMOVRSB), + ffi::_ND_INS_CLASS::ND_INS_VMOVRSD => Ok(Mnemonic::VMOVRSD), + ffi::_ND_INS_CLASS::ND_INS_VMOVRSQ => Ok(Mnemonic::VMOVRSQ), + ffi::_ND_INS_CLASS::ND_INS_VMOVRSW => Ok(Mnemonic::VMOVRSW), ffi::_ND_INS_CLASS::ND_INS_VMOVSD => Ok(Mnemonic::VMOVSD), ffi::_ND_INS_CLASS::ND_INS_VMOVSH => Ok(Mnemonic::VMOVSH), ffi::_ND_INS_CLASS::ND_INS_VMOVSHDUP => Ok(Mnemonic::VMOVSHDUP), diff --git a/bindings/rsbddisasm/bddisasm/src/operand.rs b/bindings/rsbddisasm/bddisasm/src/operand.rs index 446750b..9f5f89c 100644 --- a/bindings/rsbddisasm/bddisasm/src/operand.rs +++ b/bindings/rsbddisasm/bddisasm/src/operand.rs @@ -906,7 +906,7 @@ impl<'a> OperandsLookup<'a> { /// # Arguments /// /// * `index` - The index of the destination operand. First destination operand has index 0, the second one has - /// index 1, etc. + /// index 1, etc. /// /// # Returns /// @@ -936,7 +936,7 @@ impl<'a> OperandsLookup<'a> { /// # Arguments /// /// * `index` - The index of the source operand. First source operand has index 0, the second one has - /// index 1, etc. + /// index 1, etc. /// /// # Returns /// diff --git a/bindings/rsbddisasm/bddisasm/src/simd_exceptions.rs b/bindings/rsbddisasm/bddisasm/src/simd_exceptions.rs new file mode 100644 index 0000000..facfe37 --- /dev/null +++ b/bindings/rsbddisasm/bddisasm/src/simd_exceptions.rs @@ -0,0 +1,46 @@ +/* + * Copyright (c) 2024 Bitdefender + * SPDX-License-Identifier: Apache-2.0 + */ +//! Offers information about the SIMD exceptions that can be triggered by an instruction. + +#![allow(clippy::module_name_repetitions)] + +// TODO: maybe use something like the `bitflags` crate and have all these as flags? + +/// SIMD Floating-Point Exceptions. +#[derive(Copy, Clone, Eq, PartialEq, Hash, Debug)] +pub struct SimdExceptions { + /// Invalid Operation Exception. + pub invalid_operation: bool, + + /// Denormal Exception. + pub denormal: bool, + + /// Divide-by-Zero Exception. + pub divide_by_zero: bool, + + /// Overflow Exception. + pub overflow: bool, + + /// Underflow Exception. + pub underflow: bool, + + /// Precision Exception. + pub precision: bool, +} + +#[doc(hidden)] +impl SimdExceptions { + pub(crate) fn from_raw(value: u8) -> Self { + let value = u32::from(value); + Self { + invalid_operation: (value & ffi::ND_SIMD_EXC_IE) != 0, + denormal: (value & ffi::ND_SIMD_EXC_DE) != 0, + divide_by_zero: (value & ffi::ND_SIMD_EXC_ZE) != 0, + overflow: (value & ffi::ND_SIMD_EXC_OE) != 0, + underflow: (value & ffi::ND_SIMD_EXC_UE) != 0, + precision: (value & ffi::ND_SIMD_EXC_PE) != 0, + } + } +} diff --git a/disasmtool/disasmtool.c b/disasmtool/disasmtool.c index 6299468..6e3e723 100644 --- a/disasmtool/disasmtool.c +++ b/disasmtool/disasmtool.c @@ -188,9 +188,14 @@ set_to_string( case ND_SET_AMD: return "AMD"; case ND_SET_AMXBF16: return "AMX-BF16"; case ND_SET_AMXFP16: return "AMX-FP16"; + case ND_SET_AMXFP8: return "AMX-FP8"; case ND_SET_AMXINT8: return "AMX-INT8"; case ND_SET_AMXTILE: return "AMX-TILE"; case ND_SET_AMXCOMPLEX: return "AMX-COMPLEX"; + case ND_SET_AMXTF32: return "AMX-TF32"; + case ND_SET_AMXAVX512: return "AMX-AVX512"; + case ND_SET_AMXMOVRS: return "AMX-MOVRS"; + case ND_SET_AMXTRANSPOSE: return "AMX-TRANSPOSE"; case ND_SET_AVX: return "AVX"; case ND_SET_AVX102: return "AVX10_2"; case ND_SET_AVX2: return "AVX2"; @@ -256,8 +261,10 @@ set_to_string( case ND_SET_MOVBE: return "MOVBE"; case ND_SET_MOVDIR64B: return "MOVDIR64B"; case ND_SET_MOVDIRI: return "MOVDIRI"; + case ND_SET_MOVRS: return "MOVRS"; case ND_SET_MPX: return "MPX"; case ND_SET_MSRLIST: return "MSRLIST"; + case ND_SET_MSR_IMM: return "MSR_IMM"; case ND_SET_MWAITT: return "MWAITT"; case ND_SET_PAUSE: return "PAUSE"; case ND_SET_PCLMULQDQ: return "PCLMULQDQ"; @@ -609,10 +616,20 @@ exception_type_to_string( case ND_EXT_AMX_E4: return "AMX-E4"; case ND_EXT_AMX_E5: return "AMX-E5"; case ND_EXT_AMX_E6: return "AMX-E6"; + case ND_EXT_AMX_E7: return "AMX-E7"; + case ND_EXT_AMX_E8: return "AMX-E8"; + case ND_EXT_AMX_E9: return "AMX-E9"; + case ND_EXT_AMX_E10: return "AMX-E10"; + case ND_EXT_AMX_E11: return "AMX-E11"; case ND_EXT_AMX_EVEX_E1: return "AMX-EVEX-E1"; case ND_EXT_AMX_EVEX_E2: return "AMX-EVEX-E2"; case ND_EXT_AMX_EVEX_E3: return "AMX-EVEX-E3"; + case ND_EXT_AMX_EVEX_E4: return "AMX-EVEX-E4"; + case ND_EXT_AMX_EVEX_E5: return "AMX-EVEX-E5"; + case ND_EXT_AMX_EVEX_E6: return "AMX-EVEX-E6"; + case ND_EXT_AMX_EVEX_E7: return "AMX-EVEX-E7"; + case ND_EXT_AMX_EVEX_E8: return "AMX-EVEX-E8"; case ND_EXT_APX_EVEX_BMI: return "APX-EVEX-BMI"; case ND_EXT_APX_EVEX_CCMP: return "APX-EVEX-CCMP"; @@ -865,12 +882,23 @@ print_instruction( Instrux->ExceptionType >= ND_EXT_1 && Instrux->ExceptionType <= ND_EXT_14 ? "SSE/VEX" : Instrux->ExceptionType >= ND_EXT_E1 && Instrux->ExceptionType <= ND_EXT_E12NP ? "EVEX" : Instrux->ExceptionType >= ND_EXT_K20 && Instrux->ExceptionType <= ND_EXT_K21 ? "Opmask" : - Instrux->ExceptionType >= ND_EXT_AMX_E1 && Instrux->ExceptionType <= ND_EXT_AMX_E6 ? "AMX" : + Instrux->ExceptionType >= ND_EXT_AMX_E1 && Instrux->ExceptionType <= ND_EXT_AMX_E11 ? "AMX" : Instrux->ExceptionType >= ND_EXT_AMX_EVEX_E1 && Instrux->ExceptionType <= ND_EXT_APX_EVEX_USER_MSR ? "APX" : "???"); printf("exception type: %s\n", exception_type_to_string(Instrux->ExceptionType)); } + if (Instrux->SimdExceptions.Raw != 0) + { + printf(" SIMD Exceptions: %s%s%s%s%s%s\n", + Instrux->SimdExceptions.IE ? "I" : "", + Instrux->SimdExceptions.DE ? "D" : "", + Instrux->SimdExceptions.ZE ? "Z" : "", + Instrux->SimdExceptions.OE ? "O" : "", + Instrux->SimdExceptions.UE ? "U" : "", + Instrux->SimdExceptions.PE ? "P" : ""); + } + if (Instrux->RflAccess != 0) { DWORD fidx, all; diff --git a/inc/bddisasm_version.h b/inc/bddisasm_version.h index 4792f5f..2963b8e 100644 --- a/inc/bddisasm_version.h +++ b/inc/bddisasm_version.h @@ -6,7 +6,7 @@ #define BDDISASM_VERSION_H #define DISASM_VERSION_MAJOR 2 -#define DISASM_VERSION_MINOR 2 +#define DISASM_VERSION_MINOR 3 #define DISASM_VERSION_REVISION 0 #define SHEMU_VERSION_MAJOR DISASM_VERSION_MAJOR diff --git a/inc/bdx86_constants.h b/inc/bdx86_constants.h index 0ccea56..4c94b4c 100644 --- a/inc/bdx86_constants.h +++ b/inc/bdx86_constants.h @@ -414,6 +414,7 @@ typedef enum _ND_INS_CLASS ND_INS_MOVNTSS, ND_INS_MOVQ, ND_INS_MOVQ2DQ, + ND_INS_MOVRS, ND_INS_MOVS, ND_INS_MOVSD, ND_INS_MOVSHDUP, @@ -573,6 +574,7 @@ typedef enum _ND_INS_CLASS ND_INS_PREFETCHIT1, ND_INS_PREFETCHM, ND_INS_PREFETCHNTA, + ND_INS_PREFETCHRST2, ND_INS_PREFETCHT0, ND_INS_PREFETCHT1, ND_INS_PREFETCHT2, @@ -723,24 +725,53 @@ typedef enum _ND_INS_CLASS ND_INS_SYSEXIT, ND_INS_SYSRET, ND_INS_T1MSKC, + ND_INS_T2RPNTLVWZ0, + ND_INS_T2RPNTLVWZ0RS, + ND_INS_T2RPNTLVWZ0RST1, + ND_INS_T2RPNTLVWZ0T1, + ND_INS_T2RPNTLVWZ1, + ND_INS_T2RPNTLVWZ1RS, + ND_INS_T2RPNTLVWZ1RST1, + ND_INS_T2RPNTLVWZ1T1, ND_INS_TCMMIMFP16PS, ND_INS_TCMMRLFP16PS, + ND_INS_TCONJTCMMIMFP16PS, + ND_INS_TCONJTFP16, + ND_INS_TCVTROWD2PS, + ND_INS_TCVTROWPS2PBF16H, + ND_INS_TCVTROWPS2PBF16L, + ND_INS_TCVTROWPS2PHH, + ND_INS_TCVTROWPS2PHL, ND_INS_TDCALL, ND_INS_TDPBF16PS, + ND_INS_TDPBF8PS, + ND_INS_TDPBHF8PS, ND_INS_TDPBSSD, ND_INS_TDPBSUD, ND_INS_TDPBUSD, ND_INS_TDPBUUD, ND_INS_TDPFP16PS, + ND_INS_TDPHBF8PS, + ND_INS_TDPHF8PS, ND_INS_TEST, ND_INS_TESTUI, ND_INS_TILELOADD, + ND_INS_TILELOADDRS, + ND_INS_TILELOADDRST1, ND_INS_TILELOADDT1, + ND_INS_TILEMOVROW, ND_INS_TILERELEASE, ND_INS_TILESTORED, ND_INS_TILEZERO, ND_INS_TLBSYNC, + ND_INS_TMMULTF32PS, ND_INS_TPAUSE, + ND_INS_TTCMMIMFP16PS, + ND_INS_TTCMMRLFP16PS, + ND_INS_TTDPBF16PS, + ND_INS_TTDPFP16PS, + ND_INS_TTMMULTF32PS, + ND_INS_TTRANSPOSED, ND_INS_TZCNT, ND_INS_TZMSK, ND_INS_UCOMISD, @@ -1214,6 +1245,10 @@ typedef enum _ND_INS_CLASS ND_INS_VMOVNTPD, ND_INS_VMOVNTPS, ND_INS_VMOVQ, + ND_INS_VMOVRSB, + ND_INS_VMOVRSD, + ND_INS_VMOVRSQ, + ND_INS_VMOVRSW, ND_INS_VMOVSD, ND_INS_VMOVSH, ND_INS_VMOVSHDUP, @@ -1738,11 +1773,16 @@ typedef enum _ND_INS_SET ND_SET_ADX, ND_SET_AES, ND_SET_AMD, + ND_SET_AMXAVX512, ND_SET_AMXBF16, ND_SET_AMXCOMPLEX, ND_SET_AMXFP16, + ND_SET_AMXFP8, ND_SET_AMXINT8, + ND_SET_AMXMOVRS, + ND_SET_AMXTF32, ND_SET_AMXTILE, + ND_SET_AMXTRANSPOSE, ND_SET_APX_F, ND_SET_AVX, ND_SET_AVX102, @@ -1809,8 +1849,10 @@ typedef enum _ND_INS_SET ND_SET_MOVBE, ND_SET_MOVDIR64B, ND_SET_MOVDIRI, + ND_SET_MOVRS, ND_SET_MPX, ND_SET_MSRLIST, + ND_SET_MSR_IMM, ND_SET_MWAITT, ND_SET_PAUSE, ND_SET_PCLMULQDQ, diff --git a/inc/bdx86_core.h b/inc/bdx86_core.h index 9887298..80ff235 100644 --- a/inc/bdx86_core.h +++ b/inc/bdx86_core.h @@ -627,11 +627,21 @@ typedef enum _ND_EX_TYPE ND_EXT_AMX_E4, ND_EXT_AMX_E5, ND_EXT_AMX_E6, + ND_EXT_AMX_E7, + ND_EXT_AMX_E8, + ND_EXT_AMX_E9, + ND_EXT_AMX_E10, + ND_EXT_AMX_E11, // AMX-EVEX exceptions. ND_EXT_AMX_EVEX_E1, ND_EXT_AMX_EVEX_E2, ND_EXT_AMX_EVEX_E3, + ND_EXT_AMX_EVEX_E4, + ND_EXT_AMX_EVEX_E5, + ND_EXT_AMX_EVEX_E6, + ND_EXT_AMX_EVEX_E7, + ND_EXT_AMX_EVEX_E8, // APX-EVEX exceptions. ND_EXT_APX_EVEX_BMI, @@ -1195,15 +1205,45 @@ typedef union _ND_RFLAGS // // FPU status flags. Each status flag can be one of ND_FPU_FLAG*. // -typedef struct _ND_FPU_FLAGS +typedef union _ND_FPU_FLAGS { - ND_UINT8 C0 : 2; // C0 flag access mode. See ND_FPU_FLAG_*. - ND_UINT8 C1 : 2; // C1 flag access mode. See ND_FPU_FLAG_*. - ND_UINT8 C2 : 2; // C2 flag access mode. See ND_FPU_FLAG_*. - ND_UINT8 C3 : 2; // C3 flag access mode. See ND_FPU_FLAG_*. + ND_UINT8 Raw; + struct + { + ND_UINT8 C0 : 2; // C0 flag access mode. See ND_FPU_FLAG_*. + ND_UINT8 C1 : 2; // C1 flag access mode. See ND_FPU_FLAG_*. + ND_UINT8 C2 : 2; // C2 flag access mode. See ND_FPU_FLAG_*. + ND_UINT8 C3 : 2; // C3 flag access mode. See ND_FPU_FLAG_*. + }; } ND_FPU_FLAGS, *PND_FPU_FLAGS; +#define ND_SIMD_EXC_IE 0x01 // Invalid Operation Exception. +#define ND_SIMD_EXC_DE 0x02 // Denormal Exception. +#define ND_SIMD_EXC_ZE 0x04 // Divide-by-Zero Exception. +#define ND_SIMD_EXC_OE 0x08 // Overflow Exception. +#define ND_SIMD_EXC_UE 0x10 // Underflow Exception. +#define ND_SIMD_EXC_PE 0x20 // Precision Exception. + +// +// SIMD Floating-Point Exceptions. These values are the same as lower 6 bits in MXCSR. The Raw field +// is a combination of ND_SIMD_EXC_* values, and is the same as the invidiual bitfields. +// +typedef union _ND_SIMD_EXCEPTIONS +{ + ND_UINT8 Raw; + struct + { + ND_UINT8 IE : 1; // Invalid Operation Exception. + ND_UINT8 DE : 1; // Denormal Exception. + ND_UINT8 ZE : 1; // Divide-by-Zero Exception. + ND_UINT8 OE : 1; // Overflow Exception. + ND_UINT8 UE : 1; // Underflow Exception. + ND_UINT8 PE : 1; // Precision Exception. + }; +} ND_SIMD_EXCEPTIONS; + + // // Branch information. // @@ -1392,7 +1432,8 @@ typedef struct _INSTRUX // implicit operands such as stack, flags, etc. ND_OPERAND Operands[ND_MAX_OPERAND]; // Instruction operands. - // EVEX information. + // SIMD/EVEX information. + ND_SIMD_EXCEPTIONS SimdExceptions; // SIMD Floating-Point Exceptions. Valid only for SIMD instructions! ND_UINT8 ExceptionType; // Exception type. One of ND_EX_TYPE. ND_UINT8 TupleType; // EVEX tuple type, if EVEX. One of ND_TUPLE. @@ -1466,6 +1507,13 @@ typedef struct _ND_CONTEXT /// CsAccess, RipAccess, RflAccess, StackAcces, MemoryAccess, BranchInfo. #define ND_OPTION_ONLY_EXPLICIT_OPERANDS 0x00000001 +// Do NOT zero the output INSTRUX structure before decoding this instruction. Use this option only if the +// output INSTRUX structure is already zeroed (for example, as is the case when allocating it with calloc). +// Make sure to NOT use this option when making succesive decode calls on the same buffer - this option +// should only be used when decoding an instruction in an output buffer that has just been allocated and +// has been 0-initialized, or if the caller explictly zeroed it before each decode call. +#define ND_OPTION_SKIP_ZERO_INSTRUX 0x00000002 + // // Operands access map. Contains every register except for MSR & XCR, includes memory, flags, RIP, stack. diff --git a/inc/bdx86_cpuidflags.h b/inc/bdx86_cpuidflags.h index 6d653a8..77d6e86 100644 --- a/inc/bdx86_cpuidflags.h +++ b/inc/bdx86_cpuidflags.h @@ -107,7 +107,9 @@ #define ND_CFF_HRESET ND_CFF(0x00000007, 0x00000001, NDR_EAX, 22) #define ND_CFF_AVXIFMA ND_CFF(0x00000007, 0x00000001, NDR_EAX, 23) #define ND_CFF_MSRLIST ND_CFF(0x00000007, 0x00000001, NDR_EAX, 27) +#define ND_CFF_MOVRS ND_CFF(0x00000007, 0x00000001, NDR_EAX, 31) #define ND_CFF_TSE ND_CFF(0x00000007, 0x00000001, NDR_EBX, 1) +#define ND_CFF_MSR_IMM ND_CFF(0x00000007, 0x00000001, NDR_ECX, 5) #define ND_CFF_AVXVNNIINT8 ND_CFF(0x00000007, 0x00000001, NDR_EDX, 4) #define ND_CFF_AVXNECONVERT ND_CFF(0x00000007, 0x00000001, NDR_EDX, 5) #define ND_CFF_AMXCOMPLEX ND_CFF(0x00000007, 0x00000001, NDR_EDX, 8) @@ -119,6 +121,11 @@ #define ND_CFF_XSAVEC ND_CFF(0x0000000D, 0x00000001, NDR_EAX, 1) #define ND_CFF_XSAVES ND_CFF(0x0000000D, 0x00000001, NDR_EAX, 3) #define ND_CFF_PTWRITE ND_CFF(0x00000014, 0x00000000, NDR_EBX, 4) +#define ND_CFF_AMXFP8 ND_CFF(0x0000001E, 0x00000001, NDR_EAX, 4) +#define ND_CFF_AMXTRANSPOSE ND_CFF(0x0000001E, 0x00000001, NDR_EAX, 5) +#define ND_CFF_AMXTF32 ND_CFF(0x0000001E, 0x00000001, NDR_EAX, 6) +#define ND_CFF_AMXAVX512 ND_CFF(0x0000001E, 0x00000001, NDR_EAX, 7) +#define ND_CFF_AMXMOVRS ND_CFF(0x0000001E, 0x00000001, NDR_EAX, 8) #define ND_CFF_SVM ND_CFF(0x80000001, 0xFFFFFFFF, NDR_ECX, 2) #define ND_CFF_LZCNT ND_CFF(0x80000001, 0xFFFFFFFF, NDR_ECX, 5) #define ND_CFF_SSE4A ND_CFF(0x80000001, 0xFFFFFFFF, NDR_ECX, 6) diff --git a/isagenerator/disasmlib.py b/isagenerator/disasmlib.py index ec45542..2053e62 100644 --- a/isagenerator/disasmlib.py +++ b/isagenerator/disasmlib.py @@ -543,6 +543,16 @@ 'cond', # EVEX extension for conditional instructons ] +# Valid SIMD Floating-Point Exceptions. +valid_simd_exceptions = [ + 'IE', # Invalid Operation Exception. + 'DE', # Denormal Exception. + 'ZE', # Divide-by-Zero Exception. + 'OE', # Overflow Exception. + 'UE', # Underflow Exception. + 'PE', # Precision Exception. +] + # Use one of these value to indicate absent operands. absent_op = ['n/a', ''] @@ -752,6 +762,9 @@ class Instruction(): FpuFlags: list[str] FPU flags access mode (example: ['u', 'u', 'u', 'u']). A list of 4 str elements, each one indicating the access mode for flag Cx, where x is the position in the list. + SimdExc: list[str] + SIMD Floating-Point Exceptions (MXCSR flags affected) by the instruction (example: ['IE', 'OE', 'UE']). + A list of strings, each string indicating if that particular SIMD exception is raised (or MXCSR flag). Modes: list[str] Valid operating modes for the indicated instruction. Encoding: dict @@ -847,6 +860,7 @@ def process_meta(self): self.EvexMode = None self.Rflags = {'m': [], 't': [], '0': [], '1': [], 'u': []} self.FpuFlags = ['u', 'u', 'u', 'u'] + self.SimdExc = [] self.Modes = valid_cpu_modes.copy() for y in self.RawMeta: @@ -988,6 +1002,12 @@ def process_meta(self): (m, ','.join(valid_cpu_modes))) self.Modes = modes + elif token == "x": + for e in value.split('|'): + if e not in valid_simd_exceptions: + raise InvalidSpecificationException("Unknown SIMDexception '%s', expecting one of [%s]" % + (e, ','.join(valid_simd_exceptions))) + self.SimdExc.append(e) else: raise InvalidSpecificationException("Unknown token specified: %s" % token) @@ -1203,6 +1223,7 @@ def parse_entry( 10. 'f': flags access ('m': modified, 't': tested, 'u': undefined, '0': cleared, '1': set to 1) 11. 'u': FPU flags access 12. 'm': valid operating modes + 13. 'x': SIMD exceptions/MXCSR flags Raises ------ diff --git a/isagenerator/generate_tables.py b/isagenerator/generate_tables.py index 2d27ec6..86356a1 100644 --- a/isagenerator/generate_tables.py +++ b/isagenerator/generate_tables.py @@ -266,6 +266,12 @@ def instrux_to_idbe( else: d['EvexMode'] = '0' + # SIMD Floating-Point Exceptions. + if ins.SimdExc: + d['SimdExc'] = '|'.join(['ND_SIMD_EXC_' + x for x in ins.SimdExc]) + else: + d['SimdExc'] = '0' + # Flags (tested, modified, set, cleared) for m in ['t', 'm', '1', '0']: flg = '0' @@ -362,6 +368,7 @@ def cdef_instruction( .ExcType = 0, .FpuFlags = 0, .EvexMode = 0, + .SimdExc = 0, .TestedFlags = 0, .ModifiedFlags = 0, .SetFlags = 0, @@ -390,6 +397,7 @@ def cdef_instruction( /* ExcType */ 0, /* FpuFlags */ 0, /* EvexMode */ 0, + /* SimdExc */ 0, /* TestedFlags */ 0, /* ModifiedFlags */ 0, /* SetFlags */ 0, diff --git a/isagenerator/instructions/cpuid.dat b/isagenerator/instructions/cpuid.dat index ac5c7c4..fe8ee10 100644 --- a/isagenerator/instructions/cpuid.dat +++ b/isagenerator/instructions/cpuid.dat @@ -94,7 +94,6 @@ AVX512FP16 : 0x00000007, 0x00000000, EDX, 23 AMXTILE : 0x00000007, 0x00000000, EDX, 24 AMXINT8 : 0x00000007, 0x00000000, EDX, 25 - SHA512 : 0x00000007, 0x00000001, EAX, 0 SM3 : 0x00000007, 0x00000001, EAX, 1 SM4 : 0x00000007, 0x00000001, EAX, 2 @@ -109,9 +108,9 @@ AMXFP16 : 0x00000007, 0x00000001, EAX, 21 HRESET : 0x00000007, 0x00000001, EAX, 22 AVXIFMA : 0x00000007, 0x00000001, EAX, 23 MSRLIST : 0x00000007, 0x00000001, EAX, 27 - +MOVRS : 0x00000007, 0x00000001, EAX, 31 TSE : 0x00000007, 0x00000001, EBX, 1 - +MSR_IMM : 0x00000007, 0x00000001, ECX, 5 AVXVNNIINT8 : 0x00000007, 0x00000001, EDX, 4 AVXNECONVERT : 0x00000007, 0x00000001, EDX, 5 AMXCOMPLEX : 0x00000007, 0x00000001, EDX, 8 @@ -129,6 +128,13 @@ XSAVES : 0x0000000D, 0x00000001, EAX, 3 PTWRITE : 0x00000014, 0x00000000, EBX, 4 +AMXFP8 : 0x0000001E, 0x00000001, EAX, 4 +AMXTRANSPOSE : 0x0000001E, 0x00000001, EAX, 5 +AMXTF32 : 0x0000001E, 0x00000001, EAX, 6 +AMXAVX512 : 0x0000001E, 0x00000001, EAX, 7 +AMXMOVRS : 0x0000001E, 0x00000001, EAX, 8 + + SVM : 0x80000001, 0xFFFFFFFF, ECX, 2 LZCNT : 0x80000001, 0xFFFFFFFF, ECX, 5 SSE4A : 0x80000001, 0xFFFFFFFF, ECX, 6 diff --git a/isagenerator/instructions/table_evex_1.dat b/isagenerator/instructions/table_evex_1.dat index a666502..ea52b98 100644 --- a/isagenerator/instructions/table_evex_1.dat +++ b/isagenerator/instructions/table_evex_1.dat @@ -41,29 +41,29 @@ VMOVAPS ; Vfv{K}{z},Wfv ; ; evex m:1 p:0 l:x w:0 VMOVAPD ; Vfv{K}{z},Wfv ; ; evex m:1 p:1 l:x w:1 0x28 /r ; s:AVX512F, t:DATAXFER, l:fvm, e:E1, w:W|R|R VMOVAPS ; Wfv{K}{z},Vfv ; ; evex m:1 p:0 l:x w:0 0x29 /r ; s:AVX512F, t:DATAXFER, l:fvm, e:E1, w:W|R|R VMOVAPD ; Wfv{K}{z},Vfv ; ; evex m:1 p:1 l:x w:1 0x29 /r ; s:AVX512F, t:DATAXFER, l:fvm, e:E1, w:W|R|R -VCVTSI2SS ; Vdq,Hdq{er},Ey ; ; evex m:1 p:2 l:i w:x 0x2A /r ; s:AVX512F, t:CONVERT, l:t1s, e:E3, w:W|R|R, a:IWO64 -VCVTSI2SD ; Vdq,Hdq,Ey ; ; evex m:1 p:3 l:i w:0 0x2A /r ; s:AVX512F, t:CONVERT, l:t1s, e:E10NF, w:W|R|R, a:IER|IWO64 -VCVTSI2SD ; Vdq,Hdq{er},Ey ; ; evex m:1 p:3 l:i w:1 0x2A /r ; s:AVX512F, t:CONVERT, l:t1s, e:E3, w:W|R|R, a:IWO64 +VCVTSI2SS ; Vdq,Hdq{er},Ey ; ; evex m:1 p:2 l:i w:x 0x2A /r ; s:AVX512F, t:CONVERT, l:t1s, e:E3, w:W|R|R, a:IWO64, x:PE +VCVTSI2SD ; Vdq,Hdq,Ey ; ; evex m:1 p:3 l:i w:0 0x2A /r ; s:AVX512F, t:CONVERT, l:t1s, e:E10NF, w:W|R|R, a:IER|IWO64, x:PE +VCVTSI2SD ; Vdq,Hdq{er},Ey ; ; evex m:1 p:3 l:i w:1 0x2A /r ; s:AVX512F, t:CONVERT, l:t1s, e:E3, w:W|R|R, a:IWO64, x:PE VMOVNTPS ; Mfv,Vfv ; ; evex m:1 p:0 l:x w:0 0x2B /r:mem ; s:AVX512F, t:DATAXFER, l:fvm, e:E1NF, w:W|R VMOVNTPD ; Mfv,Vfv ; ; evex m:1 p:1 l:x w:1 0x2B /r:mem ; s:AVX512F, t:DATAXFER, l:fvm, e:E1NF, w:W|R -VCVTTSS2SI ; Gy,Wss{sae} ; ; evex m:1 p:2 l:i w:x 0x2C /r ; s:AVX512F, t:CONVERT, l:t1f, e:E3, w:W|R, a:IWO64 -VCVTTSD2SI ; Gy,Wsd{sae} ; ; evex m:1 p:3 l:i w:x 0x2C /r ; s:AVX512F, t:CONVERT, l:t1f, e:E3, w:W|R, a:IWO64 -VCVTSS2SI ; Gy,Wss{er} ; ; evex m:1 p:2 l:i w:x 0x2D /r ; s:AVX512F, t:CONVERT, l:t1f, e:E3, w:W|R, a:IWO64 -VCVTSD2SI ; Gy,Wsd{er} ; ; evex m:1 p:3 l:i w:x 0x2D /r ; s:AVX512F, t:CONVERT, l:t1f, e:E3, w:W|R, a:IWO64 -VUCOMISS ; Vdq,Wss{sae} ; Fv ; evex m:1 p:0 l:i w:0 0x2E /r ; s:AVX512F, t:AVX512, l:t1s, w:R|R|W, e:E3, f:COMIS -VUCOMISD ; Vdq,Wsd{sae} ; Fv ; evex m:1 p:1 l:i w:1 0x2E /r ; s:AVX512F, t:AVX512, l:t1s, w:R|R|W, e:E3, f:COMIS -VUCOMXSD ; Vdq,Wsd{sae} ; Fv ; evex m:1 p:2 l:0 w:1 0x2E /r ; s:AVX102, t:AVX10CMPSFP, l:t1s, w:R|R|W, e:E3NF, f:CMPSFP -VUCOMXSS ; Vdq,Wss{sae} ; Fv ; evex m:1 p:3 l:0 w:0 0x2E /r ; s:AVX102, t:AVX10CMPSFP, l:t1s, w:R|R|W, e:E3NF, f:CMPSFP -VCOMISS ; Vdq,Wss{sae} ; Fv ; evex m:1 p:0 l:i w:0 0x2F /r ; s:AVX512F, t:AVX512, l:t1s, w:R|R|W, e:E3, f:COMIS -VCOMISD ; Vdq,Wsd{sae} ; Fv ; evex m:1 p:1 l:i w:1 0x2F /r ; s:AVX512F, t:AVX512, l:t1s, w:R|R|W, e:E3, f:COMIS -VCOMXSD ; Vdq,Wsd{sae} ; Fv ; evex m:1 p:2 l:0 w:1 0x2F /r ; s:AVX102, t:AVX10CMPSFP, l:t1s, w:R|R|W, e:E3NF, f:CMPSFP -VCOMXSS ; Vdq,Wss{sae} ; Fv ; evex m:1 p:3 l:0 w:0 0x2F /r ; s:AVX102, t:AVX10CMPSFP, l:t1s, w:R|R|W, e:E3NF, f:CMPSFP +VCVTTSS2SI ; Gy,Wss{sae} ; ; evex m:1 p:2 l:i w:x 0x2C /r ; s:AVX512F, t:CONVERT, l:t1f, e:E3, w:W|R, a:IWO64, x:IE|PE +VCVTTSD2SI ; Gy,Wsd{sae} ; ; evex m:1 p:3 l:i w:x 0x2C /r ; s:AVX512F, t:CONVERT, l:t1f, e:E3, w:W|R, a:IWO64, x:IE|PE +VCVTSS2SI ; Gy,Wss{er} ; ; evex m:1 p:2 l:i w:x 0x2D /r ; s:AVX512F, t:CONVERT, l:t1f, e:E3, w:W|R, a:IWO64, x:IE|PE +VCVTSD2SI ; Gy,Wsd{er} ; ; evex m:1 p:3 l:i w:x 0x2D /r ; s:AVX512F, t:CONVERT, l:t1f, e:E3, w:W|R, a:IWO64, x:IE|PE +VUCOMISS ; Vdq,Wss{sae} ; Fv ; evex m:1 p:0 l:i w:0 0x2E /r ; s:AVX512F, t:AVX512, l:t1s, w:R|R|W, e:E3, f:COMIS, x:IE|DE +VUCOMISD ; Vdq,Wsd{sae} ; Fv ; evex m:1 p:1 l:i w:1 0x2E /r ; s:AVX512F, t:AVX512, l:t1s, w:R|R|W, e:E3, f:COMIS, x:IE|DE +VUCOMXSS ; Vdq,Wss{sae} ; Fv ; evex m:1 p:2 l:i w:0 0x2E /r ; s:AVX102, t:AVX10CMPSFP, l:t1s, w:R|R|W, e:E3NF, f:CMPSFP, x:IE|DE +VUCOMXSD ; Vdq,Wsd{sae} ; Fv ; evex m:1 p:3 l:i w:1 0x2E /r ; s:AVX102, t:AVX10CMPSFP, l:t1s, w:R|R|W, e:E3NF, f:CMPSFP, x:IE|DE +VCOMISS ; Vdq,Wss{sae} ; Fv ; evex m:1 p:0 l:i w:0 0x2F /r ; s:AVX512F, t:AVX512, l:t1s, w:R|R|W, e:E3, f:COMIS, x:IE|DE +VCOMISD ; Vdq,Wsd{sae} ; Fv ; evex m:1 p:1 l:i w:1 0x2F /r ; s:AVX512F, t:AVX512, l:t1s, w:R|R|W, e:E3, f:COMIS, x:IE|DE +VCOMXSS ; Vdq,Wss{sae} ; Fv ; evex m:1 p:2 l:i w:0 0x2F /r ; s:AVX102, t:AVX10CMPSFP, l:t1s, w:R|R|W, e:E3NF, f:CMPSFP, x:IE|DE +VCOMXSD ; Vdq,Wsd{sae} ; Fv ; evex m:1 p:3 l:i w:1 0x2F /r ; s:AVX102, t:AVX10CMPSFP, l:t1s, w:R|R|W, e:E3NF, f:CMPSFP, x:IE|DE # 0x50 - 0x5F -VSQRTPS ; Vfv{K}{z},Wfv|B32{er} ; ; evex m:1 p:0 l:x w:0 0x51 /r ; s:AVX512F, t:AVX512, l:fv, e:E2, w:W|R|R -VSQRTPD ; Vfv{K}{z},Wfv|B64{er} ; ; evex m:1 p:1 l:x w:1 0x51 /r ; s:AVX512F, t:AVX512, l:fv, e:E2, w:W|R|R -VSQRTSS ; Vdq{K}{z},Hdq,Wss{er} ; ; evex m:1 p:2 l:i w:0 0x51 /r ; s:AVX512F, t:AVX512, l:t1s, e:E3, w:W|R|R|R -VSQRTSD ; Vdq{K}{z},Hdq,Wsd{er} ; ; evex m:1 p:3 l:i w:1 0x51 /r ; s:AVX512F, t:AVX512, l:t1s, e:E3, w:W|R|R|R +VSQRTPS ; Vfv{K}{z},Wfv|B32{er} ; ; evex m:1 p:0 l:x w:0 0x51 /r ; s:AVX512F, t:AVX512, l:fv, e:E2, w:W|R|R, x:IE|PE|DE +VSQRTPD ; Vfv{K}{z},Wfv|B64{er} ; ; evex m:1 p:1 l:x w:1 0x51 /r ; s:AVX512F, t:AVX512, l:fv, e:E2, w:W|R|R, x:IE|PE|DE +VSQRTSS ; Vdq{K}{z},Hdq,Wss{er} ; ; evex m:1 p:2 l:i w:0 0x51 /r ; s:AVX512F, t:AVX512, l:t1s, e:E3, w:W|R|R|R, x:IE|PE|DE +VSQRTSD ; Vdq{K}{z},Hdq,Wsd{er} ; ; evex m:1 p:3 l:i w:1 0x51 /r ; s:AVX512F, t:AVX512, l:t1s, e:E3, w:W|R|R|R, x:IE|PE|DE VANDPS ; Vfv{K}{z},Hfv,Wfv|B32 ; ; evex m:1 p:0 l:x w:0 0x54 /r ; s:AVX512DQ, t:LOGICAL_FP, l:fv, e:E4, w:W|R|R|R VANDPD ; Vfv{K}{z},Hfv,Wfv|B64 ; ; evex m:1 p:1 l:x w:1 0x54 /r ; s:AVX512DQ, t:LOGICAL_FP, l:fv, e:E4, w:W|R|R|R VANDNPS ; Vfv{K}{z},Hfv,Wfv|B32 ; ; evex m:1 p:0 l:x w:0 0x55 /r ; s:AVX512DQ, t:LOGICAL_FP, l:fv, e:E4, w:W|R|R|R @@ -72,38 +72,38 @@ VORPS ; Vfv{K}{z},Hfv,Wfv|B32 ; ; evex m:1 p:0 l:x w:0 VORPD ; Vfv{K}{z},Hfv,Wfv|B64 ; ; evex m:1 p:1 l:x w:1 0x56 /r ; s:AVX512DQ, t:LOGICAL_FP, l:fv, e:E4, w:W|R|R|R VXORPS ; Vfv{K}{z},Hfv,Wfv|B32 ; ; evex m:1 p:0 l:x w:0 0x57 /r ; s:AVX512DQ, t:LOGICAL_FP, l:fv, e:E4, w:W|R|R|R VXORPD ; Vfv{K}{z},Hfv,Wfv|B64 ; ; evex m:1 p:1 l:x w:1 0x57 /r ; s:AVX512DQ, t:LOGICAL_FP, l:fv, e:E4, w:W|R|R|R -VADDPS ; Vfv{K}{z},Hfv,Wfv|B32{er} ; ; evex m:1 p:0 l:x w:0 0x58 /r ; s:AVX512F, t:AVX512, l:fv, e:E2, w:W|R|R|R -VADDPD ; Vfv{K}{z},Hfv,Wfv|B64{er} ; ; evex m:1 p:1 l:x w:1 0x58 /r ; s:AVX512F, t:AVX512, l:fv, e:E2, w:W|R|R|R -VADDSS ; Vdq{K}{z},Hdq,Wss{er} ; ; evex m:1 p:2 l:i w:0 0x58 /r ; s:AVX512F, t:AVX512, l:t1s, e:E3, w:W|R|R|R -VADDSD ; Vdq{K}{z},Hdq,Wsd{er} ; ; evex m:1 p:3 l:i w:1 0x58 /r ; s:AVX512F, t:AVX512, l:t1s, e:E3, w:W|R|R|R -VMULPS ; Vfv{K}{z},Hfv,Wfv|B32{er} ; ; evex m:1 p:0 l:x w:0 0x59 /r ; s:AVX512F, t:AVX512, l:fv, e:E2, w:W|R|R|R -VMULPD ; Vfv{K}{z},Hfv,Wfv|B64{er} ; ; evex m:1 p:1 l:x w:1 0x59 /r ; s:AVX512F, t:AVX512, l:fv, e:E2, w:W|R|R|R -VMULSS ; Vdq{K}{z},Hdq,Wss{er} ; ; evex m:1 p:2 l:i w:0 0x59 /r ; s:AVX512F, t:AVX512, l:t1s, e:E3, w:W|R|R|R -VMULSD ; Vdq{K}{z},Hdq,Wsd{er} ; ; evex m:1 p:3 l:i w:1 0x59 /r ; s:AVX512F, t:AVX512, l:t1s, e:E3, w:W|R|R|R -VCVTPS2PD ; Vfv{K}{z},Whv|B32{sae} ; ; evex m:1 p:0 l:x w:0 0x5A /r ; s:AVX512F, t:CONVERT, l:hv, e:E3, w:W|R|R -VCVTPD2PS ; Vhv{K}{z},Wfv|B64{er} ; ; evex m:1 p:1 l:x w:1 0x5A /r ; s:AVX512F, t:CONVERT, l:fv, e:E2, w:W|R|R -VCVTSS2SD ; Vdq{K}{z},Hdq,Wss{sae} ; ; evex m:1 p:2 l:i w:0 0x5A /r ; s:AVX512F, t:CONVERT, l:t1s, e:E3, w:W|R|R|R -VCVTSD2SS ; Vdq{K}{z},Hdq,Wsd{er} ; ; evex m:1 p:3 l:i w:1 0x5A /r ; s:AVX512F, t:CONVERT, l:t1s, e:E3, w:W|R|R|R -VCVTDQ2PS ; Vfv{K}{z},Wfv|B32{er} ; ; evex m:1 p:0 l:x w:0 0x5B /r ; s:AVX512F, t:CONVERT, l:fv, e:E2, w:W|R|R -VCVTQQ2PS ; Vhv{K}{z},Wfv|B64{er} ; ; evex m:1 p:0 l:x w:1 0x5B /r ; s:AVX512DQ, t:CONVERT, l:fv, e:E2, w:W|R|R -VCVTPS2DQ ; Vfv{K}{z},Wfv|B32{er} ; ; evex m:1 p:1 l:x w:0 0x5B /r ; s:AVX512F, t:CONVERT, l:fv, e:E2, w:W|R|R -VCVTTPS2DQ ; Vfv{K}{z},Wfv|B32{sae} ; ; evex m:1 p:2 l:x w:0 0x5B /r ; s:AVX512F, t:CONVERT, l:fv, e:E2, w:W|R|R -VSUBPS ; Vfv{K}{z},Hfv,Wfv|B32{er} ; ; evex m:1 p:0 l:x w:0 0x5C /r ; s:AVX512F, t:AVX512, l:fv, e:E2, w:W|R|R|R -VSUBPD ; Vfv{K}{z},Hfv,Wfv|B64{er} ; ; evex m:1 p:1 l:x w:1 0x5C /r ; s:AVX512F, t:AVX512, l:fv, e:E2, w:W|R|R|R -VSUBSS ; Vdq{K}{z},Hdq,Wss{er} ; ; evex m:1 p:2 l:i w:0 0x5C /r ; s:AVX512F, t:AVX512, l:t1s, e:E3, w:W|R|R|R -VSUBSD ; Vdq{K}{z},Hdq,Wsd{er} ; ; evex m:1 p:3 l:i w:1 0x5C /r ; s:AVX512F, t:AVX512, l:t1s, e:E3, w:W|R|R|R -VMINPS ; Vfv{K}{z},Hfv,Wfv|B32{sae} ; ; evex m:1 p:0 l:x w:0 0x5D /r ; s:AVX512F, t:AVX512, l:fv, e:E2, w:W|R|R|R -VMINPD ; Vfv{K}{z},Hfv,Wfv|B64{sae} ; ; evex m:1 p:1 l:x w:1 0x5D /r ; s:AVX512F, t:AVX512, l:fv, e:E2, w:W|R|R|R -VMINSS ; Vdq{K}{z},Hdq,Wss{sae} ; ; evex m:1 p:2 l:i w:0 0x5D /r ; s:AVX512F, t:AVX512, l:t1s, e:E3, w:W|R|R|R -VMINSD ; Vdq{K}{z},Hdq,Wsd{sae} ; ; evex m:1 p:3 l:i w:1 0x5D /r ; s:AVX512F, t:AVX512, l:t1s, e:E3, w:W|R|R|R -VDIVPS ; Vfv{K}{z},Hfv,Wfv|B32{er} ; ; evex m:1 p:0 l:x w:0 0x5E /r ; s:AVX512F, t:AVX512, l:fv, e:E2, w:W|R|R|R -VDIVPD ; Vfv{K}{z},Hfv,Wfv|B64{er} ; ; evex m:1 p:1 l:x w:1 0x5E /r ; s:AVX512F, t:AVX512, l:fv, e:E2, w:W|R|R|R -VDIVSS ; Vdq{K}{z},Hdq,Wss{er} ; ; evex m:1 p:2 l:i w:0 0x5E /r ; s:AVX512F, t:AVX512, l:t1s, e:E3, w:W|R|R|R -VDIVSD ; Vdq{K}{z},Hdq,Wsd{er} ; ; evex m:1 p:3 l:i w:1 0x5E /r ; s:AVX512F, t:AVX512, l:t1s, e:E3, w:W|R|R|R -VMAXPS ; Vfv{K}{z},Hfv,Wfv|B32{sae} ; ; evex m:1 p:0 l:x w:0 0x5F /r ; s:AVX512F, t:AVX512, l:fv, e:E2, w:W|R|R|R -VMAXPD ; Vfv{K}{z},Hfv,Wfv|B64{sae} ; ; evex m:1 p:1 l:x w:1 0x5F /r ; s:AVX512F, t:AVX512, l:fv, e:E2, w:W|R|R|R -VMAXSS ; Vdq{K}{z},Hdq,Wss{sae} ; ; evex m:1 p:2 l:i w:0 0x5F /r ; s:AVX512F, t:AVX512, l:t1s, e:E3, w:W|R|R|R -VMAXSD ; Vdq{K}{z},Hdq,Wsd{sae} ; ; evex m:1 p:3 l:i w:1 0x5F /r ; s:AVX512F, t:AVX512, l:t1s, e:E3, w:W|R|R|R +VADDPS ; Vfv{K}{z},Hfv,Wfv|B32{er} ; ; evex m:1 p:0 l:x w:0 0x58 /r ; s:AVX512F, t:AVX512, l:fv, e:E2, w:W|R|R|R, x:IE|OE|UE|PE|DE +VADDPD ; Vfv{K}{z},Hfv,Wfv|B64{er} ; ; evex m:1 p:1 l:x w:1 0x58 /r ; s:AVX512F, t:AVX512, l:fv, e:E2, w:W|R|R|R, x:IE|OE|UE|PE|DE +VADDSS ; Vdq{K}{z},Hdq,Wss{er} ; ; evex m:1 p:2 l:i w:0 0x58 /r ; s:AVX512F, t:AVX512, l:t1s, e:E3, w:W|R|R|R, x:IE|OE|UE|PE|DE +VADDSD ; Vdq{K}{z},Hdq,Wsd{er} ; ; evex m:1 p:3 l:i w:1 0x58 /r ; s:AVX512F, t:AVX512, l:t1s, e:E3, w:W|R|R|R, x:IE|OE|UE|PE|DE +VMULPS ; Vfv{K}{z},Hfv,Wfv|B32{er} ; ; evex m:1 p:0 l:x w:0 0x59 /r ; s:AVX512F, t:AVX512, l:fv, e:E2, w:W|R|R|R, x:IE|OE|UE|PE|DE +VMULPD ; Vfv{K}{z},Hfv,Wfv|B64{er} ; ; evex m:1 p:1 l:x w:1 0x59 /r ; s:AVX512F, t:AVX512, l:fv, e:E2, w:W|R|R|R, x:IE|OE|UE|PE|DE +VMULSS ; Vdq{K}{z},Hdq,Wss{er} ; ; evex m:1 p:2 l:i w:0 0x59 /r ; s:AVX512F, t:AVX512, l:t1s, e:E3, w:W|R|R|R, x:IE|OE|UE|PE|DE +VMULSD ; Vdq{K}{z},Hdq,Wsd{er} ; ; evex m:1 p:3 l:i w:1 0x59 /r ; s:AVX512F, t:AVX512, l:t1s, e:E3, w:W|R|R|R, x:IE|OE|UE|PE|DE +VCVTPS2PD ; Vfv{K}{z},Whv|B32{sae} ; ; evex m:1 p:0 l:x w:0 0x5A /r ; s:AVX512F, t:CONVERT, l:hv, e:E3, w:W|R|R, x:IE|DE +VCVTPD2PS ; Vhv{K}{z},Wfv|B64{er} ; ; evex m:1 p:1 l:x w:1 0x5A /r ; s:AVX512F, t:CONVERT, l:fv, e:E2, w:W|R|R, x:IE|OE|UE|PE|DE +VCVTSS2SD ; Vdq{K}{z},Hdq,Wss{sae} ; ; evex m:1 p:2 l:i w:0 0x5A /r ; s:AVX512F, t:CONVERT, l:t1s, e:E3, w:W|R|R|R, x:IE|DE +VCVTSD2SS ; Vdq{K}{z},Hdq,Wsd{er} ; ; evex m:1 p:3 l:i w:1 0x5A /r ; s:AVX512F, t:CONVERT, l:t1s, e:E3, w:W|R|R|R, x:IE|OE|UE|PE|DE +VCVTDQ2PS ; Vfv{K}{z},Wfv|B32{er} ; ; evex m:1 p:0 l:x w:0 0x5B /r ; s:AVX512F, t:CONVERT, l:fv, e:E2, w:W|R|R, x:PE +VCVTQQ2PS ; Vhv{K}{z},Wfv|B64{er} ; ; evex m:1 p:0 l:x w:1 0x5B /r ; s:AVX512DQ, t:CONVERT, l:fv, e:E2, w:W|R|R, x:PE +VCVTPS2DQ ; Vfv{K}{z},Wfv|B32{er} ; ; evex m:1 p:1 l:x w:0 0x5B /r ; s:AVX512F, t:CONVERT, l:fv, e:E2, w:W|R|R, x:IE|PE +VCVTTPS2DQ ; Vfv{K}{z},Wfv|B32{sae} ; ; evex m:1 p:2 l:x w:0 0x5B /r ; s:AVX512F, t:CONVERT, l:fv, e:E2, w:W|R|R, x:IE|PE +VSUBPS ; Vfv{K}{z},Hfv,Wfv|B32{er} ; ; evex m:1 p:0 l:x w:0 0x5C /r ; s:AVX512F, t:AVX512, l:fv, e:E2, w:W|R|R|R, x:IE|OE|UE|PE|DE +VSUBPD ; Vfv{K}{z},Hfv,Wfv|B64{er} ; ; evex m:1 p:1 l:x w:1 0x5C /r ; s:AVX512F, t:AVX512, l:fv, e:E2, w:W|R|R|R, x:IE|OE|UE|PE|DE +VSUBSS ; Vdq{K}{z},Hdq,Wss{er} ; ; evex m:1 p:2 l:i w:0 0x5C /r ; s:AVX512F, t:AVX512, l:t1s, e:E3, w:W|R|R|R, x:IE|OE|UE|PE|DE +VSUBSD ; Vdq{K}{z},Hdq,Wsd{er} ; ; evex m:1 p:3 l:i w:1 0x5C /r ; s:AVX512F, t:AVX512, l:t1s, e:E3, w:W|R|R|R, x:IE|OE|UE|PE|DE +VMINPS ; Vfv{K}{z},Hfv,Wfv|B32{sae} ; ; evex m:1 p:0 l:x w:0 0x5D /r ; s:AVX512F, t:AVX512, l:fv, e:E2, w:W|R|R|R, x:IE|DE +VMINPD ; Vfv{K}{z},Hfv,Wfv|B64{sae} ; ; evex m:1 p:1 l:x w:1 0x5D /r ; s:AVX512F, t:AVX512, l:fv, e:E2, w:W|R|R|R, x:IE|DE +VMINSS ; Vdq{K}{z},Hdq,Wss{sae} ; ; evex m:1 p:2 l:i w:0 0x5D /r ; s:AVX512F, t:AVX512, l:t1s, e:E3, w:W|R|R|R, x:IE|DE +VMINSD ; Vdq{K}{z},Hdq,Wsd{sae} ; ; evex m:1 p:3 l:i w:1 0x5D /r ; s:AVX512F, t:AVX512, l:t1s, e:E3, w:W|R|R|R, x:IE|DE +VDIVPS ; Vfv{K}{z},Hfv,Wfv|B32{er} ; ; evex m:1 p:0 l:x w:0 0x5E /r ; s:AVX512F, t:AVX512, l:fv, e:E2, w:W|R|R|R, x:IE|OE|UE|PE|DE|ZE +VDIVPD ; Vfv{K}{z},Hfv,Wfv|B64{er} ; ; evex m:1 p:1 l:x w:1 0x5E /r ; s:AVX512F, t:AVX512, l:fv, e:E2, w:W|R|R|R, x:IE|OE|UE|PE|DE|ZE +VDIVSS ; Vdq{K}{z},Hdq,Wss{er} ; ; evex m:1 p:2 l:i w:0 0x5E /r ; s:AVX512F, t:AVX512, l:t1s, e:E3, w:W|R|R|R, x:IE|OE|UE|PE|DE|ZE +VDIVSD ; Vdq{K}{z},Hdq,Wsd{er} ; ; evex m:1 p:3 l:i w:1 0x5E /r ; s:AVX512F, t:AVX512, l:t1s, e:E3, w:W|R|R|R, x:IE|OE|UE|PE|DE|ZE +VMAXPS ; Vfv{K}{z},Hfv,Wfv|B32{sae} ; ; evex m:1 p:0 l:x w:0 0x5F /r ; s:AVX512F, t:AVX512, l:fv, e:E2, w:W|R|R|R, x:IE|DE +VMAXPD ; Vfv{K}{z},Hfv,Wfv|B64{sae} ; ; evex m:1 p:1 l:x w:1 0x5F /r ; s:AVX512F, t:AVX512, l:fv, e:E2, w:W|R|R|R, x:IE|DE +VMAXSS ; Vdq{K}{z},Hdq,Wss{sae} ; ; evex m:1 p:2 l:i w:0 0x5F /r ; s:AVX512F, t:AVX512, l:t1s, e:E3, w:W|R|R|R, x:IE|DE +VMAXSD ; Vdq{K}{z},Hdq,Wsd{sae} ; ; evex m:1 p:3 l:i w:1 0x5F /r ; s:AVX512F, t:AVX512, l:t1s, e:E3, w:W|R|R|R, x:IE|DE # 0x60 - 0x6F VPUNPCKLBW ; Vfv{K}{z},Hfv,Wfv ; ; evex m:1 p:1 l:x w:x 0x60 /r ; s:AVX512BW, t:AVX512, l:fvm, e:E4NFnb, w:W|R|R|R @@ -149,32 +149,30 @@ VPSRLDQ ; Hfv,Wfv,Ib ; ; evex m:1 p:1 l:x w:i VPSLLQ ; Hfv{K}{z},Wfv|B64,Ib ; ; evex m:1 p:1 l:x w:1 0x73 /6 ib ; s:AVX512F, t:AVX512, l:fv, e:E4, w:W|R|R|R VPSLLDQ ; Hfv,Wfv,Ib ; ; evex m:1 p:1 l:x w:i 0x73 /7 ib ; s:AVX512BW, t:AVX512, l:fvm, e:E4NFnb, w:W|R|R VPCMPEQB ; rKq{K},Hfv,Wfv ; ; evex m:1 p:1 l:x w:i 0x74 /r ; s:AVX512BW, t:AVX512, l:fvm, e:E4nb, w:W|R|R|R -VCVTNEPH2BF8 ; Vhv{K}{z},Wfv|B16 ; ; evex m:1 p:2 l:x w:0 0x74 /r ; s:AVX102, t:AVX10CONVERT, l:fv, e:E4NF, w:W|R|R -VCVTNE2PH2BF8 ; Vfv{K}{z},Hfv,Wfv|B16 ; ; evex m:1 p:3 l:x w:0 0x74 /r ; s:AVX102, t:AVX10CONVERT, l:fv, e:E4NF, w:W|R|R|R VPCMPEQW ; rKq{K},Hfv,Wfv ; ; evex m:1 p:1 l:x w:i 0x75 /r ; s:AVX512BW, t:AVX512, l:fvm, e:E4nb, w:W|R|R|R VPCMPEQD ; rKq{K},Hfv,Wfv|B32 ; ; evex m:1 p:1 l:x w:i 0x76 /r ; s:AVX512F, t:AVX512, l:fv, e:E4, w:W|R|R|R -VCVTTPS2UDQ ; Vfv{K}{z},Wfv|B32{sae} ; ; evex m:1 p:0 l:x w:0 0x78 /r ; s:AVX512F, t:CONVERT, l:fv, e:E2, w:W|R|R -VCVTTPD2UDQ ; Vhv{K}{z},Wfv|B64{sae} ; ; evex m:1 p:0 l:x w:1 0x78 /r ; s:AVX512F, t:CONVERT, l:fv, e:E2, w:W|R|R -VCVTTPS2UQQ ; Vfv{K}{z},Whv|B32{sae} ; ; evex m:1 p:1 l:x w:0 0x78 /r ; s:AVX512DQ, t:CONVERT, l:hv, e:E3, w:W|R|R -VCVTTPD2UQQ ; Vfv{K}{z},Wfv|B64{sae} ; ; evex m:1 p:1 l:x w:1 0x78 /r ; s:AVX512DQ, t:CONVERT, l:fv, e:E2, w:W|R|R -VCVTTSS2USI ; Gy,Wss{sae} ; ; evex m:1 p:2 l:i w:x 0x78 /r ; s:AVX512F, t:CONVERT, l:t1f, e:E3, w:W|R, a:IWO64 -VCVTTSD2USI ; Gy,Wsd{sae} ; ; evex m:1 p:3 l:i w:x 0x78 /r ; s:AVX512F, t:CONVERT, l:t1f, e:E3, w:W|R, a:IWO64 -VCVTPS2UDQ ; Vfv{K}{z},Wfv|B32{er} ; ; evex m:1 p:0 l:x w:0 0x79 /r ; s:AVX512F, t:CONVERT, l:fv, e:E2, w:W|R|R -VCVTPD2UDQ ; Vhv{K}{z},Wfv|B64{er} ; ; evex m:1 p:0 l:x w:1 0x79 /r ; s:AVX512F, t:CONVERT, l:fv, e:E2, w:W|R|R -VCVTPS2UQQ ; Vfv{K}{z},Whv|B32{er} ; ; evex m:1 p:1 l:x w:0 0x79 /r ; s:AVX512DQ, t:CONVERT, l:hv, e:E3, w:W|R|R -VCVTPD2UQQ ; Vfv{K}{z},Wfv|B64{er} ; ; evex m:1 p:1 l:x w:1 0x79 /r ; s:AVX512DQ, t:CONVERT, l:fv, e:E2, w:W|R|R -VCVTSS2USI ; Gy,Wss{er} ; ; evex m:1 p:2 l:i w:x 0x79 /r ; s:AVX512F, t:CONVERT, l:t1f, e:E3, w:W|R, a:IWO64 -VCVTSD2USI ; Gy,Wsd{er} ; ; evex m:1 p:3 l:i w:x 0x79 /r ; s:AVX512F, t:CONVERT, l:t1f, e:E3, w:W|R, a:IWO64 -VCVTTPS2QQ ; Vfv{K}{z},Whv|B32{sae} ; ; evex m:1 p:1 l:x w:0 0x7A /r ; s:AVX512DQ, t:CONVERT, l:hv, e:E3, w:W|R|R -VCVTTPD2QQ ; Vfv{K}{z},Wfv|B64{sae} ; ; evex m:1 p:1 l:x w:1 0x7A /r ; s:AVX512DQ, t:CONVERT, l:fv, e:E2, w:W|R|R +VCVTTPS2UDQ ; Vfv{K}{z},Wfv|B32{sae} ; ; evex m:1 p:0 l:x w:0 0x78 /r ; s:AVX512F, t:CONVERT, l:fv, e:E2, w:W|R|R, x:IE|PE +VCVTTPD2UDQ ; Vhv{K}{z},Wfv|B64{sae} ; ; evex m:1 p:0 l:x w:1 0x78 /r ; s:AVX512F, t:CONVERT, l:fv, e:E2, w:W|R|R, x:IE|PE +VCVTTPS2UQQ ; Vfv{K}{z},Whv|B32{sae} ; ; evex m:1 p:1 l:x w:0 0x78 /r ; s:AVX512DQ, t:CONVERT, l:hv, e:E3, w:W|R|R, x:IE|PE +VCVTTPD2UQQ ; Vfv{K}{z},Wfv|B64{sae} ; ; evex m:1 p:1 l:x w:1 0x78 /r ; s:AVX512DQ, t:CONVERT, l:fv, e:E2, w:W|R|R, x:IE|PE +VCVTTSS2USI ; Gy,Wss{sae} ; ; evex m:1 p:2 l:i w:x 0x78 /r ; s:AVX512F, t:CONVERT, l:t1f, e:E3, w:W|R, a:IWO64, x:IE|PE +VCVTTSD2USI ; Gy,Wsd{sae} ; ; evex m:1 p:3 l:i w:x 0x78 /r ; s:AVX512F, t:CONVERT, l:t1f, e:E3, w:W|R, a:IWO64, x:IE|PE +VCVTPS2UDQ ; Vfv{K}{z},Wfv|B32{er} ; ; evex m:1 p:0 l:x w:0 0x79 /r ; s:AVX512F, t:CONVERT, l:fv, e:E2, w:W|R|R, x:IE|PE +VCVTPD2UDQ ; Vhv{K}{z},Wfv|B64{er} ; ; evex m:1 p:0 l:x w:1 0x79 /r ; s:AVX512F, t:CONVERT, l:fv, e:E2, w:W|R|R, x:IE|PE +VCVTPS2UQQ ; Vfv{K}{z},Whv|B32{er} ; ; evex m:1 p:1 l:x w:0 0x79 /r ; s:AVX512DQ, t:CONVERT, l:hv, e:E3, w:W|R|R, x:IE|PE +VCVTPD2UQQ ; Vfv{K}{z},Wfv|B64{er} ; ; evex m:1 p:1 l:x w:1 0x79 /r ; s:AVX512DQ, t:CONVERT, l:fv, e:E2, w:W|R|R, x:IE|PE +VCVTSS2USI ; Gy,Wss{er} ; ; evex m:1 p:2 l:i w:x 0x79 /r ; s:AVX512F, t:CONVERT, l:t1f, e:E3, w:W|R, a:IWO64, x:IE|PE +VCVTSD2USI ; Gy,Wsd{er} ; ; evex m:1 p:3 l:i w:x 0x79 /r ; s:AVX512F, t:CONVERT, l:t1f, e:E3, w:W|R, a:IWO64, x:IE|PE +VCVTTPS2QQ ; Vfv{K}{z},Whv|B32{sae} ; ; evex m:1 p:1 l:x w:0 0x7A /r ; s:AVX512DQ, t:CONVERT, l:hv, e:E3, w:W|R|R, x:IE|PE +VCVTTPD2QQ ; Vfv{K}{z},Wfv|B64{sae} ; ; evex m:1 p:1 l:x w:1 0x7A /r ; s:AVX512DQ, t:CONVERT, l:fv, e:E2, w:W|R|R, x:IE|PE VCVTUDQ2PD ; Vfv{K}{z},Whv|B32 ; ; evex m:1 p:2 l:x w:0 0x7A /r ; s:AVX512F, t:CONVERT, l:hv, e:E5, w:W|R|R, a:IER -VCVTUQQ2PD ; Vfv{K}{z},Wfv|B64{er} ; ; evex m:1 p:2 l:x w:1 0x7A /r ; s:AVX512DQ, t:CONVERT, l:fv, e:E2, w:W|R|R -VCVTUDQ2PS ; Vfv{K}{z},Wfv|B32{er} ; ; evex m:1 p:3 l:x w:0 0x7A /r ; s:AVX512F, t:CONVERT, l:fv, e:E2, w:W|R|R -VCVTUQQ2PS ; Vhv{K}{z},Wfv|B64{er} ; ; evex m:1 p:3 l:x w:1 0x7A /r ; s:AVX512DQ, t:CONVERT, l:fv, e:E2, w:W|R|R -VCVTPS2QQ ; Vfv{K}{z},Whv|B32{er} ; ; evex m:1 p:1 l:x w:0 0x7B /r ; s:AVX512DQ, t:CONVERT, l:hv, e:E3, w:W|R|R -VCVTPD2QQ ; Vfv{K}{z},Wfv|B64{er} ; ; evex m:1 p:1 l:x w:1 0x7B /r ; s:AVX512DQ, t:CONVERT, l:fv, e:E2, w:W|R|R -VCVTUSI2SS ; Vss,Hss{er},Ey ; ; evex m:1 p:2 l:i w:x 0x7B /r ; s:AVX512F, t:CONVERT, l:t1s, e:E3, w:W|R|R, a:IWO64 -VCVTUSI2SD ; Vdq,Hdq,Ey ; ; evex m:1 p:3 l:i w:0 0x7B /r ; s:AVX512F, t:CONVERT, l:t1s, e:E10NF, w:W|R|R, a:IER|IWO64 +VCVTUQQ2PD ; Vfv{K}{z},Wfv|B64{er} ; ; evex m:1 p:2 l:x w:1 0x7A /r ; s:AVX512DQ, t:CONVERT, l:fv, e:E2, w:W|R|R, x:PE +VCVTUDQ2PS ; Vfv{K}{z},Wfv|B32{er} ; ; evex m:1 p:3 l:x w:0 0x7A /r ; s:AVX512F, t:CONVERT, l:fv, e:E2, w:W|R|R, x:PE +VCVTUQQ2PS ; Vhv{K}{z},Wfv|B64{er} ; ; evex m:1 p:3 l:x w:1 0x7A /r ; s:AVX512DQ, t:CONVERT, l:fv, e:E2, w:W|R|R, x:PE +VCVTPS2QQ ; Vfv{K}{z},Whv|B32{er} ; ; evex m:1 p:1 l:x w:0 0x7B /r ; s:AVX512DQ, t:CONVERT, l:hv, e:E3, w:W|R|R, x:IE|PE +VCVTPD2QQ ; Vfv{K}{z},Wfv|B64{er} ; ; evex m:1 p:1 l:x w:1 0x7B /r ; s:AVX512DQ, t:CONVERT, l:fv, e:E2, w:W|R|R, x:IE|PE +VCVTUSI2SS ; Vss,Hss{er},Ey ; ; evex m:1 p:2 l:i w:x 0x7B /r ; s:AVX512F, t:CONVERT, l:t1s, e:E3, w:W|R|R, a:IWO64, x:PE +VCVTUSI2SD ; Vdq,Hdq,Ey ; ; evex m:1 p:3 l:i w:0 0x7B /r ; s:AVX512F, t:CONVERT, l:t1s, e:E10NF, w:W|R|R, a:IER|IWO64, x:PE VCVTUSI2SD ; Vdq,Hdq{er},Ey ; ; evex m:1 p:3 l:i w:1 0x7B /r ; s:AVX512F, t:CONVERT, l:t1s, e:E3, w:W|R|R, a:IWO64 VMOVD ; Ey,Vdq ; ; evex m:1 p:1 l:0 w:0 0x7E /r ; s:AVX512F, t:DATAXFER, l:t1s, e:E9NF, w:W|R, a:IWO64 VMOVQ ; Ey,Vdq ; ; evex m:1 p:1 l:0 w:1 0x7E /r ; s:AVX512F, t:DATAXFER, l:t1s, e:E9NF, w:W|R, a:IWO64 @@ -196,10 +194,10 @@ VMOVDQU16 ; Wfv{K}{z},Vfv ; ; evex m:1 p:3 l:x w:1 # 0xB0 - 0xBF # 0xC0 - 0xCF -VCMPPS ; rKq{K},Hfv,Wfv|B32{sae},Ib ; ; evex m:1 p:0 l:x w:0 0xC2 /r ib ; s:AVX512F, t:AVX512, l:fv, e:E2, w:W|R|R|R|R -VCMPPD ; rKq{K},Hfv,Wfv|B64{sae},Ib ; ; evex m:1 p:1 l:x w:1 0xC2 /r ib ; s:AVX512F, t:AVX512, l:fv, e:E2, w:W|R|R|R|R -VCMPSS ; rKq{K},Hdq,Wss{sae},Ib ; ; evex m:1 p:2 l:x w:0 0xC2 /r ib ; s:AVX512F, t:AVX512, l:t1s, e:E3, w:W|R|R|R|R -VCMPSD ; rKq{K},Hdq,Wsd{sae},Ib ; ; evex m:1 p:3 l:x w:1 0xC2 /r ib ; s:AVX512F, t:AVX512, l:t1s, e:E3, w:W|R|R|R|R +VCMPPS ; rKq{K},Hfv,Wfv|B32{sae},Ib ; ; evex m:1 p:0 l:x w:0 0xC2 /r ib ; s:AVX512F, t:AVX512, l:fv, e:E2, w:W|R|R|R|R, x:IE|DE +VCMPPD ; rKq{K},Hfv,Wfv|B64{sae},Ib ; ; evex m:1 p:1 l:x w:1 0xC2 /r ib ; s:AVX512F, t:AVX512, l:fv, e:E2, w:W|R|R|R|R, x:IE|DE +VCMPSS ; rKq{K},Hdq,Wss{sae},Ib ; ; evex m:1 p:2 l:x w:0 0xC2 /r ib ; s:AVX512F, t:AVX512, l:t1s, e:E3, w:W|R|R|R|R, x:IE|DE +VCMPSD ; rKq{K},Hdq,Wsd{sae},Ib ; ; evex m:1 p:3 l:x w:1 0xC2 /r ib ; s:AVX512F, t:AVX512, l:t1s, e:E3, w:W|R|R|R|R, x:IE|DE VPINSRW ; Vdq,Hdq,Mw,Ib ; ; evex m:1 p:1 l:0 w:i 0xC4 /r:mem ib ; s:AVX512BW, t:AVX512, l:t1s16, e:E9NF, w:W|R|R|R VPINSRW ; Vdq,Hdq,Rv,Ib ; ; evex m:1 p:1 l:0 w:i 0xC4 /r:reg ib ; s:AVX512BW, t:AVX512, l:t1s16, e:E9NF, w:W|R|R|R VPEXTRW ; Gy,Udq,Ib ; ; evex m:1 p:1 l:0 w:i 0xC5 /r:reg ib ; s:AVX512BW, t:AVX512, l:t1s, e:E9NF, w:W|R|R @@ -233,10 +231,10 @@ VPSRAQ ; Vfv{K}{z},Hfv,Wdq ; ; evex m:1 p:1 l:x w:1 VPAVGW ; Vfv{K}{z},Hfv,Wfv ; ; evex m:1 p:1 l:x w:i 0xE3 /r ; s:AVX512BW, t:AVX512, l:fvm, e:E4nb, w:W|R|R|R VPMULHUW ; Vfv{K}{z},Hfv,Wfv ; ; evex m:1 p:1 l:x w:i 0xE4 /r ; s:AVX512BW, t:AVX512, l:fvm, e:E4nb, w:W|R|R|R VPMULHW ; Vfv{K}{z},Hfv,Wfv ; ; evex m:1 p:1 l:x w:i 0xE5 /r ; s:AVX512BW, t:AVX512, l:fvm, e:E4nb, w:W|R|R|R -VCVTTPD2DQ ; Vhv{K}{z},Wfv|B64{sae} ; ; evex m:1 p:1 l:x w:1 0xE6 /r ; s:AVX512F, t:CONVERT, l:fv, e:E2, w:W|R|R +VCVTTPD2DQ ; Vhv{K}{z},Wfv|B64{sae} ; ; evex m:1 p:1 l:x w:1 0xE6 /r ; s:AVX512F, t:CONVERT, l:fv, e:E2, w:W|R|R, x:IE|PE VCVTDQ2PD ; Vfv{K}{z},Whv|B32 ; ; evex m:1 p:2 l:x w:0 0xE6 /r ; s:AVX512F, t:CONVERT, l:hv, e:E5, w:W|R|R, a:IER -VCVTQQ2PD ; Vfv{K}{z},Wfv|B64{er} ; ; evex m:1 p:2 l:x w:1 0xE6 /r ; s:AVX512DQ, t:CONVERT, l:fv, e:E2, w:W|R|R -VCVTPD2DQ ; Vhv{K}{z},Wfv|B64{er} ; ; evex m:1 p:3 l:x w:1 0xE6 /r ; s:AVX512F, t:CONVERT, l:fv, e:E2, w:W|R|R +VCVTQQ2PD ; Vfv{K}{z},Wfv|B64{er} ; ; evex m:1 p:2 l:x w:1 0xE6 /r ; s:AVX512DQ, t:CONVERT, l:fv, e:E2, w:W|R|R, x:PE +VCVTPD2DQ ; Vhv{K}{z},Wfv|B64{er} ; ; evex m:1 p:3 l:x w:1 0xE6 /r ; s:AVX512F, t:CONVERT, l:fv, e:E2, w:W|R|R, x:IE|PE VMOVNTDQ ; Mfv,Vfv ; ; evex m:1 p:1 l:x w:0 0xE7 /r:mem ; s:AVX512F, t:DATAXFER, l:fvm, e:E1NF, w:W|R VPSUBSB ; Vfv{K}{z},Hfv,Wfv ; ; evex m:1 p:1 l:x w:i 0xE8 /r ; s:AVX512BW, t:AVX512, l:fvm, e:E4nb, w:W|R|R|R VPSUBSW ; Vfv{K}{z},Hfv,Wfv ; ; evex m:1 p:1 l:x w:i 0xE9 /r ; s:AVX512BW, t:AVX512, l:fvm, e:E4nb, w:W|R|R|R diff --git a/isagenerator/instructions/table_evex_2.dat b/isagenerator/instructions/table_evex_2.dat index 5be7ba7..b80ba6d 100644 --- a/isagenerator/instructions/table_evex_2.dat +++ b/isagenerator/instructions/table_evex_2.dat @@ -14,7 +14,7 @@ VPERMILPD ; Vfv{K}{z},Hfv,Wfv|B64 ; ; evex m:2 p:1 l:x w:1 VPSRLVW ; Vfv{K}{z},Hfv,Wfv ; ; evex m:2 p:1 l:x w:1 0x10 /r ; s:AVX512BW, t:AVX512, l:fvm, e:E4nb, w:W|R|R|R VPSRAVW ; Vfv{K}{z},Hfv,Wfv ; ; evex m:2 p:1 l:x w:1 0x11 /r ; s:AVX512BW, t:AVX512, l:fvm, e:E4, w:W|R|R|R VPSLLVW ; Vfv{K}{z},Hfv,Wfv ; ; evex m:2 p:1 l:x w:1 0x12 /r ; s:AVX512BW, t:AVX512, l:fvm, e:E4nb, w:W|R|R|R -VCVTPH2PS ; Vfv{K}{z},Whv{sae} ; ; evex m:2 p:1 l:x w:0 0x13 /r ; s:AVX512F, t:CONVERT, l:hvm, e:E11, w:W|R|R +VCVTPH2PS ; Vfv{K}{z},Whv{sae} ; ; evex m:2 p:1 l:x w:0 0x13 /r ; s:AVX512F, t:CONVERT, l:hvm, e:E11, w:W|R|R, x:IE VPRORVD ; Vfv{K}{z},Hfv,Wfv|B32 ; ; evex m:2 p:1 l:x w:0 0x14 /r ; s:AVX512F, t:AVX512, l:fv, e:E4, w:W|R|R|R VPRORVQ ; Vfv{K}{z},Hfv,Wfv|B64 ; ; evex m:2 p:1 l:x w:1 0x14 /r ; s:AVX512F, t:AVX512, l:fv, e:E4, w:W|R|R|R VPROLVD ; Vfv{K}{z},Hfv,Wfv|B32 ; ; evex m:2 p:1 l:x w:0 0x15 /r ; s:AVX512F, t:AVX512, l:fv, e:E4, w:W|R|R|R @@ -66,10 +66,10 @@ VPMULDQ ; Vfv{K}{z},Hfv,Wfv|B64 ; ; evex m:2 p:1 l:x w:1 VPCMPEQQ ; rKq{K},Hfv,Wfv|B64 ; ; evex m:2 p:1 l:x w:1 0x29 /r ; s:AVX512F, t:AVX512, l:fv, e:E4, w:W|R|R|R VMOVNTDQA ; Vfv,Mfv ; ; evex m:2 p:1 l:x w:0 0x2A /r:mem ; s:AVX512F, t:DATAXFER, l:fvm, e:E1NF, w:W|R VPACKUSDW ; Vfv{K}{z},Hfv,Wfv|B32 ; ; evex m:2 p:1 l:x w:0 0x2B /r ; s:AVX512BW, t:AVX512, l:fv, e:E4NF, w:W|R|R|R -VSCALEFPS ; Vfv{K}{z},Hfv,Wfv|B32{er} ; ; evex m:2 p:1 l:x w:0 0x2C /r ; s:AVX512F, t:AVX512, l:fv, e:E2, w:W|R|R|R -VSCALEFPD ; Vfv{K}{z},Hfv,Wfv|B64{er} ; ; evex m:2 p:1 l:x w:1 0x2C /r ; s:AVX512F, t:AVX512, l:fv, e:E2, w:W|R|R|R -VSCALEFSS ; Vss{K}{z},Hss,Wss{er} ; ; evex m:2 p:1 l:i w:0 0x2D /r ; s:AVX512F, t:AVX512, l:t1s, e:E3, w:W|R|R|R -VSCALEFSD ; Vsd{K}{z},Hsd,Wsd{er} ; ; evex m:2 p:1 l:i w:1 0x2D /r ; s:AVX512F, t:AVX512, l:t1s, e:E3, w:W|R|R|R +VSCALEFPS ; Vfv{K}{z},Hfv,Wfv|B32{er} ; ; evex m:2 p:1 l:x w:0 0x2C /r ; s:AVX512F, t:AVX512, l:fv, e:E2, w:W|R|R|R, x:IE|OE|UE|PE|DE +VSCALEFPD ; Vfv{K}{z},Hfv,Wfv|B64{er} ; ; evex m:2 p:1 l:x w:1 0x2C /r ; s:AVX512F, t:AVX512, l:fv, e:E2, w:W|R|R|R, x:IE|OE|UE|PE|DE +VSCALEFSS ; Vss{K}{z},Hss,Wss{er} ; ; evex m:2 p:1 l:i w:0 0x2D /r ; s:AVX512F, t:AVX512, l:t1s, e:E3, w:W|R|R|R, x:IE|OE|UE|PE|DE +VSCALEFSD ; Vsd{K}{z},Hsd,Wsd{er} ; ; evex m:2 p:1 l:i w:1 0x2D /r ; s:AVX512F, t:AVX512, l:t1s, e:E3, w:W|R|R|R, x:IE|OE|UE|PE|DE VPMOVM2B ; Vfv,mKq ; ; evex m:2 p:2 l:x w:0 0x28 /r:reg ; s:AVX512BW, t:DATAXFER, e:E7NM, w:W|R VPMOVM2W ; Vfv,mKq ; ; evex m:2 p:2 l:x w:1 0x28 /r:reg ; s:AVX512BW, t:DATAXFER, e:E7NM, w:W|R VPMOVB2M ; rKq,Ufv ; ; evex m:2 p:2 l:x w:0 0x29 /r:reg ; s:AVX512BW, t:DATAXFER, e:E7NM, w:W|R @@ -113,10 +113,10 @@ VPBROADCASTMW2D ; Vfv,mKq ; ; evex m:2 p:2 l:x w:0 # 0x40 - 0x4F VPMULLD ; Vfv{K}{z},Hfv,Wfv|B32 ; ; evex m:2 p:1 l:x w:0 0x40 /r ; s:AVX512F, t:AVX512, l:fv, e:E4, w:W|R|R|R VPMULLQ ; Vfv{K}{z},Hfv,Wfv|B64 ; ; evex m:2 p:1 l:x w:1 0x40 /r ; s:AVX512DQ, t:AVX512, l:fv, e:E4, w:W|R|R|R -VGETEXPPS ; Vfv{K}{z},Wfv|B32{sae} ; ; evex m:2 p:1 l:x w:0 0x42 /r ; s:AVX512F, t:AVX512, l:fv, e:E2, w:W|R|R -VGETEXPPD ; Vfv{K}{z},Wfv|B64{sae} ; ; evex m:2 p:1 l:x w:1 0x42 /r ; s:AVX512F, t:AVX512, l:fv, e:E2, w:W|R|R -VGETEXPSS ; Vdq{K}{z},Hdq,Wss{sae} ; ; evex m:2 p:1 l:x w:0 0x43 /r ; s:AVX512F, t:AVX512, l:t1s, e:E3, w:W|R|R|R -VGETEXPSD ; Vdq{K}{z},Hdq,Wsd{sae} ; ; evex m:2 p:1 l:x w:1 0x43 /r ; s:AVX512F, t:AVX512, l:t1s, e:E3, w:W|R|R|R +VGETEXPPS ; Vfv{K}{z},Wfv|B32{sae} ; ; evex m:2 p:1 l:x w:0 0x42 /r ; s:AVX512F, t:AVX512, l:fv, e:E2, w:W|R|R, x:IE|DE +VGETEXPPD ; Vfv{K}{z},Wfv|B64{sae} ; ; evex m:2 p:1 l:x w:1 0x42 /r ; s:AVX512F, t:AVX512, l:fv, e:E2, w:W|R|R, x:IE|DE +VGETEXPSS ; Vdq{K}{z},Hdq,Wss{sae} ; ; evex m:2 p:1 l:x w:0 0x43 /r ; s:AVX512F, t:AVX512, l:t1s, e:E3, w:W|R|R|R, x:IE|DE +VGETEXPSD ; Vdq{K}{z},Hdq,Wsd{sae} ; ; evex m:2 p:1 l:x w:1 0x43 /r ; s:AVX512F, t:AVX512, l:t1s, e:E3, w:W|R|R|R, x:IE|DE VPLZCNTD ; Vfv{K}{z},Wfv|B32 ; ; evex m:2 p:1 l:x w:0 0x44 /r ; s:AVX512CD, t:CONFLICT, l:fv, e:E4, w:W|R|R VPLZCNTQ ; Vfv{K}{z},Wfv|B64 ; ; evex m:2 p:1 l:x w:1 0x44 /r ; s:AVX512CD, t:CONFLICT, l:fv, e:E4, w:W|R|R VPSRLVD ; Vfv{K}{z},Hfv,Wfv|B32 ; ; evex m:2 p:1 l:x w:0 0x45 /r ; s:AVX512F, t:AVX512, l:fv, e:E4, w:W|R|R|R @@ -125,6 +125,8 @@ VPSRAVD ; Vfv{K}{z},Hfv,Wfv|B32 ; ; evex m:2 p:1 l:x w:0 VPSRAVQ ; Vfv{K}{z},Hfv,Wfv|B64 ; ; evex m:2 p:1 l:x w:1 0x46 /r ; s:AVX512F, t:AVX512, l:fv, e:E4, w:W|R|R|R VPSLLVD ; Vfv{K}{z},Hfv,Wfv|B32 ; ; evex m:2 p:1 l:x w:0 0x47 /r ; s:AVX512F, t:AVX512, l:fv, e:E4, w:W|R|R|R VPSLLVQ ; Vfv{K}{z},Hfv,Wfv|B64 ; ; evex m:2 p:1 l:x w:1 0x47 /r ; s:AVX512F, t:AVX512, l:fv, e:E4, w:W|R|R|R +TILEMOVROW ; Voq,mTt,Bd ; ; evex m:2 p:1 l:2 w:0 0x4A /r:reg ; s:AMXAVX512, t:AMX, e:AMX_EVEX_E8, w:W|R|R, m:NOTSX +TCVTROWD2PS ; Voq,mTt,Bd ; ; evex m:2 p:2 l:2 w:0 0x4A /r:reg ; s:AMXAVX512, t:AMX, e:AMX_EVEX_E8, w:W|R|R, m:NOTSX VRCP14PS ; Vfv{K}{z},Wfv|B32 ; ; evex m:2 p:1 l:x w:0 0x4C /r ; s:AVX512F, t:AVX512, l:fv, e:E4, w:W|R|R VRCP14PD ; Vfv{K}{z},Wfv|B64 ; ; evex m:2 p:1 l:x w:1 0x4C /r ; s:AVX512F, t:AVX512, l:fv, e:E4, w:W|R|R VRCP14SS ; Vdq{K}{z},Hdq,Wss ; ; evex m:2 p:1 l:x w:0 0x4D /r ; s:AVX512F, t:AVX512, l:t1s, e:E10, w:W|R|R|R @@ -172,21 +174,28 @@ VBLENDMPS ; Vfv{K}{z},Hfv,Wfv|B32 ; ; evex m:2 p:1 l:x w:0 VBLENDMPD ; Vfv{K}{z},Hfv,Wfv|B64 ; ; evex m:2 p:1 l:x w:1 0x65 /r ; s:AVX512F, t:BLEND, l:fv, e:E4, w:W|R|R|R VPBLENDMB ; Vfv{K}{z},Hfv,Wfv ; ; evex m:2 p:1 l:x w:0 0x66 /r ; s:AVX512BW, t:BLEND, l:fvm, e:E4, w:W|R|R|R VPBLENDMW ; Vfv{K}{z},Hfv,Wfv ; ; evex m:2 p:1 l:x w:1 0x66 /r ; s:AVX512BW, t:BLEND, l:fvm, e:E4, w:W|R|R|R -VCVT2PS2PHX ; Vfv{K}{z},Hfv,Wfv|B32{er} ; ; evex m:2 p:1 l:x w:0 0x67 /r ; s:AVX102, t:AVX10CONVERT, l:fv, e:E4NF, w:W|R|R|R +VCVT2PS2PHX ; Vfv{K}{z},Hfv,Wfv|B32{er} ; ; evex m:2 p:1 l:x w:0 0x67 /r ; s:AVX102, t:AVX10CONVERT, l:fv, e:E4NF, w:W|R|R|R, x:IE|OE|UE|PE|DE VP2INTERSECTD ; rKq+1,Hfv,Wfv|B32 ; ; evex m:2 p:3 l:x w:0 0x68 /r ; s:AVX512VP2INTERSECT, t:AVX512VP2INTERSECT, l:fv, e:E4NF, w:W|R|R VP2INTERSECTQ ; rKq+1,Hfv,Wfv|B64 ; ; evex m:2 p:3 l:x w:1 0x68 /r ; s:AVX512VP2INTERSECT, t:AVX512VP2INTERSECT, l:fv, e:E4NF, w:W|R|R +TCVTROWPS2PHH ; Voq,mTt,Bd ; ; evex m:2 p:0 l:2 w:0 0x6D /r:reg ; s:AMXAVX512, t:AMX, e:AMX_EVEX_E8, w:W|R|R, m:NOTSX +TCVTROWPS2PHL ; Voq,mTt,Bd ; ; evex m:2 p:1 l:2 w:0 0x6D /r:reg ; s:AMXAVX512, t:AMX, e:AMX_EVEX_E8, w:W|R|R, m:NOTSX +TCVTROWPS2PBF16L ; Voq,mTt,Bd ; ; evex m:2 p:2 l:2 w:0 0x6D /r:reg ; s:AMXAVX512, t:AMX, e:AMX_EVEX_E8, w:W|R|R, m:NOTSX +TCVTROWPS2PBF16H ; Voq,mTt,Bd ; ; evex m:2 p:3 l:2 w:0 0x6D /r:reg ; s:AMXAVX512, t:AMX, e:AMX_EVEX_E8, w:W|R|R, m:NOTSX + # 0x70 - 0x7F VPSHLDVW ; Vfv{K}{z},Hfv,Wfv ; ; evex m:2 p:1 l:x w:1 0x70 /r ; s:AVX512VBMI2, t:AVX512VBMI, l:fvm, e:E4, w:RW|R|R|R VPSHLDVD ; Vfv{K}{z},Hfv,Wfv|B32 ; ; evex m:2 p:1 l:x w:0 0x71 /r ; s:AVX512VBMI2, t:AVX512VBMI, l:fv, e:E4, w:RW|R|R|R VPSHLDVQ ; Vfv{K}{z},Hfv,Wfv|B64 ; ; evex m:2 p:1 l:x w:1 0x71 /r ; s:AVX512VBMI2, t:AVX512VBMI, l:fv, e:E4, w:RW|R|R|R VPSHRDVW ; Vfv{K}{z},Hfv,Wfv ; ; evex m:2 p:1 l:x w:1 0x72 /r ; s:AVX512VBMI2, t:AVX512VBMI, l:fvm, e:E4, w:RW|R|R|R -VCVTNEPS2BF16 ; Vhv{K}{z},Wfv|B32 ; ; evex m:2 p:2 l:x w:0 0x72 /r ; s:AVX512BF16, t:AVX512BF16, l:fv, e:E4, w:W|R|R -VCVTNE2PS2BF16 ; Vfv{K}{z},Hfv,Wfv|B32 ; ; evex m:2 p:3 l:x w:0 0x72 /r ; s:AVX512BF16, t:AVX512BF16, l:fv, e:E4NF, w:W|R|R|R +VCVTNEPS2BF16 ; Vhv{K}{z},Wfv|B32 ; ; evex m:2 p:2 l:x w:0 0x72 /r ; s:AVX512BF16, t:AVX512BF16, l:fv, e:E4, w:W|R|R, x:IE|OE|UE|PE|DE +VCVTNE2PS2BF16 ; Vfv{K}{z},Hfv,Wfv|B32 ; ; evex m:2 p:3 l:x w:0 0x72 /r ; s:AVX512BF16, t:AVX512BF16, l:fv, e:E4NF, w:W|R|R|R, x:IE|OE|UE|PE|DE VPSHRDVD ; Vfv{K}{z},Hfv,Wfv|B32 ; ; evex m:2 p:1 l:x w:0 0x73 /r ; s:AVX512VBMI2, t:AVX512VBMI, l:fv, e:E4, w:RW|R|R|R VPSHRDVQ ; Vfv{K}{z},Hfv,Wfv|B64 ; ; evex m:2 p:1 l:x w:1 0x73 /r ; s:AVX512VBMI2, t:AVX512VBMI, l:fv, e:E4, w:RW|R|R|R VCVTBIASPH2BF8 ; Vhv{K}{z},Hfv,Wfv|B16 ; ; evex m:2 p:0 l:x w:0 0x74 /r ; s:AVX102, t:AVX10CONVERT, l:fv, e:E4NF, w:W|R|R|R +VCVTNEPH2BF8 ; Vhv{K}{z},Wfv|B16 ; ; evex m:2 p:2 l:x w:0 0x74 /r ; s:AVX102, t:AVX10CONVERT, l:fv, e:E4NF, w:W|R|R, x:IE|OE|UE|PE|DE +VCVTNE2PH2BF8 ; Vfv{K}{z},Hfv,Wfv|B16 ; ; evex m:2 p:3 l:x w:0 0x74 /r ; s:AVX102, t:AVX10CONVERT, l:fv, e:E4NF, w:W|R|R|R, x:IE|OE|UE|PE|DE VPERMI2B ; Vfv{K}{z},Hfv,Wfv ; ; evex m:2 p:1 l:x w:0 0x75 /r ; s:AVX512VBMI, t:AVX512VBMI, l:fvm, e:E4NFnb, w:RW|R|R|R VPERMI2W ; Vfv{K}{z},Hfv,Wfv ; ; evex m:2 p:1 l:x w:1 0x75 /r ; s:AVX512BW, t:AVX512, l:fvm, e:E4NFnb, w:RW|R|R|R @@ -231,85 +240,85 @@ VGATHERDPD ; Vfv{K},Mvm32h ; ; evex m:2 p:1 l:x w:1 VGATHERQPS ; Vhv{K},Mvm64n ; ; evex m:2 p:1 l:x w:0 0x93 /r:mem vsib ; s:AVX512F, t:GATHER, a:MMASK, l:t1s, e:E12, w:W|R|RW VGATHERQPD ; Vfv{K},Mvm64n ; ; evex m:2 p:1 l:x w:1 0x93 /r:mem vsib ; s:AVX512F, t:GATHER, a:MMASK, l:t1s, e:E12, w:W|R|RW -VFMADDSUB132PS ; Vfv{K}{z},Hfv,Wfv|B32{er} ; ; evex m:2 p:1 l:x w:0 0x96 /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R -VFMADDSUB132PD ; Vfv{K}{z},Hfv,Wfv|B64{er} ; ; evex m:2 p:1 l:x w:1 0x96 /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R -VFMSUBADD132PS ; Vfv{K}{z},Hfv,Wfv|B32{er} ; ; evex m:2 p:1 l:x w:0 0x97 /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R -VFMSUBADD132PD ; Vfv{K}{z},Hfv,Wfv|B64{er} ; ; evex m:2 p:1 l:x w:1 0x97 /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R -VFMADD132PS ; Vfv{K}{z},Hfv,Wfv|B32{er} ; ; evex m:2 p:1 l:x w:0 0x98 /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R -VFMADD132PD ; Vfv{K}{z},Hfv,Wfv|B64{er} ; ; evex m:2 p:1 l:x w:1 0x98 /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R -VFMADD132SS ; Vdq{K}{z},Hdq,Wss{er} ; ; evex m:2 p:1 l:i w:0 0x99 /r ; s:AVX512F, t:VFMA, l:t1s, e:E3, w:RW|R|R|R -VFMADD132SD ; Vdq{K}{z},Hdq,Wsd{er} ; ; evex m:2 p:1 l:i w:1 0x99 /r ; s:AVX512F, t:VFMA, l:t1s, e:E2, w:RW|R|R|R -VFMSUB132PS ; Vfv{K}{z},Hfv,Wfv|B32{er} ; ; evex m:2 p:1 l:x w:0 0x9A /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R -VFMSUB132PD ; Vfv{K}{z},Hfv,Wfv|B64{er} ; ; evex m:2 p:1 l:x w:1 0x9A /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R -V4FMADDPS ; Voq{K}{z},Hoq+3,Mdq ; ; evex m:2 p:3 l:2 w:0 0x9A /r:mem ; s:AVX5124FMAPS, t:VFMAPS, l:t1_4x, e:E2, w:RW|R|R|R -VFMSUB132SS ; Vdq{K}{z},Hdq,Wss{er} ; ; evex m:2 p:1 l:i w:0 0x9B /r ; s:AVX512F, t:VFMA, l:t1s, e:E3, w:RW|R|R|R -VFMSUB132SD ; Vdq{K}{z},Hdq,Wsd{er} ; ; evex m:2 p:1 l:i w:1 0x9B /r ; s:AVX512F, t:VFMA, l:t1s, e:E3, w:RW|R|R|R -V4FMADDSS ; Vdq{K}{z},Hdq+3,Mdq ; ; evex m:2 p:3 l:i w:0 0x9B /r:mem ; s:AVX5124FMAPS, t:VFMAPS, e:E3, l:t1_4x, w:RW|R|R|R -VFNMADD132PS ; Vfv{K}{z},Hfv,Wfv|B32{er} ; ; evex m:2 p:1 l:x w:0 0x9C /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R -VFNMADD132PD ; Vfv{K}{z},Hfv,Wfv|B64{er} ; ; evex m:2 p:1 l:x w:1 0x9C /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R -VFNMADD132SS ; Vdq{K}{z},Hdq,Wss{er} ; ; evex m:2 p:1 l:i w:0 0x9D /r ; s:AVX512F, t:VFMA, l:t1s, e:E3, w:RW|R|R|R -VFNMADD132SD ; Vdq{K}{z},Hdq,Wsd{er} ; ; evex m:2 p:1 l:i w:1 0x9D /r ; s:AVX512F, t:VFMA, l:t1s, e:E3, w:RW|R|R|R -VFNMSUB132PS ; Vfv{K}{z},Hfv,Wfv|B32{er} ; ; evex m:2 p:1 l:x w:0 0x9E /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R -VFNMSUB132PD ; Vfv{K}{z},Hfv,Wfv|B64{er} ; ; evex m:2 p:1 l:x w:1 0x9E /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R -VFNMSUB132SS ; Vdq{K}{z},Hdq,Wss{er} ; ; evex m:2 p:1 l:i w:0 0x9F /r ; s:AVX512F, t:VFMA, l:t1s, e:E3, w:RW|R|R|R -VFNMSUB132SD ; Vdq{K}{z},Hdq,Wsd{er} ; ; evex m:2 p:1 l:i w:1 0x9F /r ; s:AVX512F, t:VFMA, l:t1s, e:E3, w:RW|R|R|R +VFMADDSUB132PS ; Vfv{K}{z},Hfv,Wfv|B32{er} ; ; evex m:2 p:1 l:x w:0 0x96 /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFMADDSUB132PD ; Vfv{K}{z},Hfv,Wfv|B64{er} ; ; evex m:2 p:1 l:x w:1 0x96 /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFMSUBADD132PS ; Vfv{K}{z},Hfv,Wfv|B32{er} ; ; evex m:2 p:1 l:x w:0 0x97 /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFMSUBADD132PD ; Vfv{K}{z},Hfv,Wfv|B64{er} ; ; evex m:2 p:1 l:x w:1 0x97 /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFMADD132PS ; Vfv{K}{z},Hfv,Wfv|B32{er} ; ; evex m:2 p:1 l:x w:0 0x98 /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFMADD132PD ; Vfv{K}{z},Hfv,Wfv|B64{er} ; ; evex m:2 p:1 l:x w:1 0x98 /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFMADD132SS ; Vdq{K}{z},Hdq,Wss{er} ; ; evex m:2 p:1 l:i w:0 0x99 /r ; s:AVX512F, t:VFMA, l:t1s, e:E3, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFMADD132SD ; Vdq{K}{z},Hdq,Wsd{er} ; ; evex m:2 p:1 l:i w:1 0x99 /r ; s:AVX512F, t:VFMA, l:t1s, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFMSUB132PS ; Vfv{K}{z},Hfv,Wfv|B32{er} ; ; evex m:2 p:1 l:x w:0 0x9A /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFMSUB132PD ; Vfv{K}{z},Hfv,Wfv|B64{er} ; ; evex m:2 p:1 l:x w:1 0x9A /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE +V4FMADDPS ; Voq{K}{z},Hoq+3,Mdq ; ; evex m:2 p:3 l:2 w:0 0x9A /r:mem ; s:AVX5124FMAPS, t:VFMAPS, l:t1_4x, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFMSUB132SS ; Vdq{K}{z},Hdq,Wss{er} ; ; evex m:2 p:1 l:i w:0 0x9B /r ; s:AVX512F, t:VFMA, l:t1s, e:E3, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFMSUB132SD ; Vdq{K}{z},Hdq,Wsd{er} ; ; evex m:2 p:1 l:i w:1 0x9B /r ; s:AVX512F, t:VFMA, l:t1s, e:E3, w:RW|R|R|R, x:IE|OE|UE|PE|DE +V4FMADDSS ; Vdq{K}{z},Hdq+3,Mdq ; ; evex m:2 p:3 l:i w:0 0x9B /r:mem ; s:AVX5124FMAPS, t:VFMAPS, e:E3, l:t1_4x, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFNMADD132PS ; Vfv{K}{z},Hfv,Wfv|B32{er} ; ; evex m:2 p:1 l:x w:0 0x9C /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFNMADD132PD ; Vfv{K}{z},Hfv,Wfv|B64{er} ; ; evex m:2 p:1 l:x w:1 0x9C /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFNMADD132SS ; Vdq{K}{z},Hdq,Wss{er} ; ; evex m:2 p:1 l:i w:0 0x9D /r ; s:AVX512F, t:VFMA, l:t1s, e:E3, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFNMADD132SD ; Vdq{K}{z},Hdq,Wsd{er} ; ; evex m:2 p:1 l:i w:1 0x9D /r ; s:AVX512F, t:VFMA, l:t1s, e:E3, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFNMSUB132PS ; Vfv{K}{z},Hfv,Wfv|B32{er} ; ; evex m:2 p:1 l:x w:0 0x9E /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFNMSUB132PD ; Vfv{K}{z},Hfv,Wfv|B64{er} ; ; evex m:2 p:1 l:x w:1 0x9E /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFNMSUB132SS ; Vdq{K}{z},Hdq,Wss{er} ; ; evex m:2 p:1 l:i w:0 0x9F /r ; s:AVX512F, t:VFMA, l:t1s, e:E3, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFNMSUB132SD ; Vdq{K}{z},Hdq,Wsd{er} ; ; evex m:2 p:1 l:i w:1 0x9F /r ; s:AVX512F, t:VFMA, l:t1s, e:E3, w:RW|R|R|R, x:IE|OE|UE|PE|DE # 0xA0 - 0xAF VPSCATTERDD ; Mvm32n{K},Vfv ; ; evex m:2 p:1 l:x w:0 0xA0 /r:mem vsib ; s:AVX512F, t:SCATTER, a:MMASK, l:t1s, e:E12, w:W|R|RW VPSCATTERDQ ; Mvm32h{K},Vfv ; ; evex m:2 p:1 l:x w:1 0xA0 /r:mem vsib ; s:AVX512F, t:SCATTER, a:MMASK, l:t1s, e:E12, w:W|R|RW VPSCATTERQD ; Mvm64n{K},Vhv ; ; evex m:2 p:1 l:x w:0 0xA1 /r:mem vsib ; s:AVX512F, t:SCATTER, a:MMASK, l:t1s, e:E12, w:W|R|RW VPSCATTERQQ ; Mvm64n{K},Vfv ; ; evex m:2 p:1 l:x w:1 0xA1 /r:mem vsib ; s:AVX512F, t:SCATTER, a:MMASK, l:t1s, e:E12, w:W|R|RW -VSCATTERDPS ; Mvm32n{K},Vfv ; ; evex m:2 p:1 l:x w:0 0xA2 /r:mem vsib ; s:AVX512F, t:SCATTER, a:MMASK, l:t1s, e:E12, w:W|R|RW -VSCATTERDPD ; Mvm32h{K},Vfv ; ; evex m:2 p:1 l:x w:1 0xA2 /r:mem vsib ; s:AVX512F, t:SCATTER, a:MMASK, l:t1s, e:E12, w:W|R|RW -VSCATTERQPS ; Mvm64n{K},Vhv ; ; evex m:2 p:1 l:x w:0 0xA3 /r:mem vsib ; s:AVX512F, t:SCATTER, a:MMASK, l:t1s, e:E12, w:W|R|RW -VSCATTERQPD ; Mvm64n{K},Vfv ; ; evex m:2 p:1 l:x w:1 0xA3 /r:mem vsib ; s:AVX512F, t:SCATTER, a:MMASK, l:t1s, e:E12, w:W|R|RW +VSCATTERDPS ; Mvm32n{K},Vfv ; ; evex m:2 p:1 l:x w:0 0xA2 /r:mem vsib ; s:AVX512F, t:SCATTER, a:MMASK, l:t1s, e:E12, w:W|R|RW, x:IE|OE|UE|PE|DE +VSCATTERDPD ; Mvm32h{K},Vfv ; ; evex m:2 p:1 l:x w:1 0xA2 /r:mem vsib ; s:AVX512F, t:SCATTER, a:MMASK, l:t1s, e:E12, w:W|R|RW, x:IE|OE|UE|PE|DE +VSCATTERQPS ; Mvm64n{K},Vhv ; ; evex m:2 p:1 l:x w:0 0xA3 /r:mem vsib ; s:AVX512F, t:SCATTER, a:MMASK, l:t1s, e:E12, w:W|R|RW, x:IE|OE|UE|PE|DE +VSCATTERQPD ; Mvm64n{K},Vfv ; ; evex m:2 p:1 l:x w:1 0xA3 /r:mem vsib ; s:AVX512F, t:SCATTER, a:MMASK, l:t1s, e:E12, w:W|R|RW, x:IE|OE|UE|PE|DE -VFMADDSUB213PS ; Vfv{K}{z},Hfv,Wfv|B32{er} ; ; evex m:2 p:1 l:x w:0 0xA6 /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R -VFMADDSUB213PD ; Vfv{K}{z},Hfv,Wfv|B64{er} ; ; evex m:2 p:1 l:x w:1 0xA6 /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R -VFMSUBADD213PS ; Vfv{K}{z},Hfv,Wfv|B32{er} ; ; evex m:2 p:1 l:x w:0 0xA7 /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R -VFMSUBADD213PD ; Vfv{K}{z},Hfv,Wfv|B64{er} ; ; evex m:2 p:1 l:x w:1 0xA7 /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R -VFMADD213PS ; Vfv{K}{z},Hfv,Wfv|B32{er} ; ; evex m:2 p:1 l:x w:0 0xA8 /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R -VFMADD213PD ; Vfv{K}{z},Hfv,Wfv|B64{er} ; ; evex m:2 p:1 l:x w:1 0xA8 /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R -VFMADD213SS ; Vdq{K}{z},Hdq,Wss{er} ; ; evex m:2 p:1 l:i w:0 0xA9 /r ; s:AVX512F, t:VFMA, l:t1s, e:E3, w:RW|R|R|R -VFMADD213SD ; Vdq{K}{z},Hdq,Wsd{er} ; ; evex m:2 p:1 l:i w:1 0xA9 /r ; s:AVX512F, t:VFMA, l:t1s, e:E3, w:RW|R|R|R -VFMSUB213PS ; Vfv{K}{z},Hfv,Wfv|B32{er} ; ; evex m:2 p:1 l:x w:0 0xAA /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R -VFMSUB213PD ; Vfv{K}{z},Hfv,Wfv|B64{er} ; ; evex m:2 p:1 l:x w:1 0xAA /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R -V4FNMADDPS ; Voq{K}{z},Hoq+3,Mdq ; ; evex m:2 p:3 l:2 w:0 0xAA /r:mem ; s:AVX5124FMAPS, t:VFMAPS, l:t1_4x, e:E2, w:RW|R|R|R -VFMSUB213SS ; Vdq{K}{z},Hdq,Wss{er} ; ; evex m:2 p:1 l:i w:0 0xAB /r ; s:AVX512F, t:VFMA, l:t1s, e:E3, w:RW|R|R|R -VFMSUB213SD ; Vdq{K}{z},Hdq,Wsd{er} ; ; evex m:2 p:1 l:i w:1 0xAB /r ; s:AVX512F, t:VFMA, l:t1s, e:E3, w:RW|R|R|R -V4FNMADDSS ; Vdq{K}{z},Hdq+3,Mdq ; ; evex m:2 p:3 l:i w:0 0xAB /r:mem ; s:AVX5124FMAPS, t:VFMAPS, l:t1_4x, e:E2, w:RW|R|R|R -VFNMADD213PS ; Vfv{K}{z},Hfv,Wfv|B32{er} ; ; evex m:2 p:1 l:x w:0 0xAC /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R -VFNMADD213PD ; Vfv{K}{z},Hfv,Wfv|B64{er} ; ; evex m:2 p:1 l:x w:1 0xAC /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R -VFNMADD213SS ; Vdq{K}{z},Hdq,Wss{er} ; ; evex m:2 p:1 l:i w:0 0xAD /r ; s:AVX512F, t:VFMA, l:t1s, e:E3, w:RW|R|R|R -VFNMADD213SD ; Vdq{K}{z},Hdq,Wsd{er} ; ; evex m:2 p:1 l:i w:1 0xAD /r ; s:AVX512F, t:VFMA, l:t1s, e:E3, w:RW|R|R|R -VFNMSUB213PS ; Vfv{K}{z},Hfv,Wfv|B32{er} ; ; evex m:2 p:1 l:x w:0 0xAE /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R -VFNMSUB213PD ; Vfv{K}{z},Hfv,Wfv|B64{er} ; ; evex m:2 p:1 l:x w:1 0xAE /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R -VFNMSUB213SS ; Vdq{K}{z},Hdq,Wss{er} ; ; evex m:2 p:1 l:i w:0 0xAF /r ; s:AVX512F, t:VFMA, l:t1s, e:E3, w:RW|R|R|R -VFNMSUB213SD ; Vdq{K}{z},Hdq,Wsd{er} ; ; evex m:2 p:1 l:i w:1 0xAF /r ; s:AVX512F, t:VFMA, l:t1s, e:E3, w:RW|R|R|R +VFMADDSUB213PS ; Vfv{K}{z},Hfv,Wfv|B32{er} ; ; evex m:2 p:1 l:x w:0 0xA6 /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFMADDSUB213PD ; Vfv{K}{z},Hfv,Wfv|B64{er} ; ; evex m:2 p:1 l:x w:1 0xA6 /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFMSUBADD213PS ; Vfv{K}{z},Hfv,Wfv|B32{er} ; ; evex m:2 p:1 l:x w:0 0xA7 /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFMSUBADD213PD ; Vfv{K}{z},Hfv,Wfv|B64{er} ; ; evex m:2 p:1 l:x w:1 0xA7 /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFMADD213PS ; Vfv{K}{z},Hfv,Wfv|B32{er} ; ; evex m:2 p:1 l:x w:0 0xA8 /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFMADD213PD ; Vfv{K}{z},Hfv,Wfv|B64{er} ; ; evex m:2 p:1 l:x w:1 0xA8 /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFMADD213SS ; Vdq{K}{z},Hdq,Wss{er} ; ; evex m:2 p:1 l:i w:0 0xA9 /r ; s:AVX512F, t:VFMA, l:t1s, e:E3, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFMADD213SD ; Vdq{K}{z},Hdq,Wsd{er} ; ; evex m:2 p:1 l:i w:1 0xA9 /r ; s:AVX512F, t:VFMA, l:t1s, e:E3, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFMSUB213PS ; Vfv{K}{z},Hfv,Wfv|B32{er} ; ; evex m:2 p:1 l:x w:0 0xAA /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFMSUB213PD ; Vfv{K}{z},Hfv,Wfv|B64{er} ; ; evex m:2 p:1 l:x w:1 0xAA /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE +V4FNMADDPS ; Voq{K}{z},Hoq+3,Mdq ; ; evex m:2 p:3 l:2 w:0 0xAA /r:mem ; s:AVX5124FMAPS, t:VFMAPS, l:t1_4x, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFMSUB213SS ; Vdq{K}{z},Hdq,Wss{er} ; ; evex m:2 p:1 l:i w:0 0xAB /r ; s:AVX512F, t:VFMA, l:t1s, e:E3, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFMSUB213SD ; Vdq{K}{z},Hdq,Wsd{er} ; ; evex m:2 p:1 l:i w:1 0xAB /r ; s:AVX512F, t:VFMA, l:t1s, e:E3, w:RW|R|R|R, x:IE|OE|UE|PE|DE +V4FNMADDSS ; Vdq{K}{z},Hdq+3,Mdq ; ; evex m:2 p:3 l:i w:0 0xAB /r:mem ; s:AVX5124FMAPS, t:VFMAPS, l:t1_4x, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFNMADD213PS ; Vfv{K}{z},Hfv,Wfv|B32{er} ; ; evex m:2 p:1 l:x w:0 0xAC /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFNMADD213PD ; Vfv{K}{z},Hfv,Wfv|B64{er} ; ; evex m:2 p:1 l:x w:1 0xAC /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFNMADD213SS ; Vdq{K}{z},Hdq,Wss{er} ; ; evex m:2 p:1 l:i w:0 0xAD /r ; s:AVX512F, t:VFMA, l:t1s, e:E3, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFNMADD213SD ; Vdq{K}{z},Hdq,Wsd{er} ; ; evex m:2 p:1 l:i w:1 0xAD /r ; s:AVX512F, t:VFMA, l:t1s, e:E3, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFNMSUB213PS ; Vfv{K}{z},Hfv,Wfv|B32{er} ; ; evex m:2 p:1 l:x w:0 0xAE /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFNMSUB213PD ; Vfv{K}{z},Hfv,Wfv|B64{er} ; ; evex m:2 p:1 l:x w:1 0xAE /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFNMSUB213SS ; Vdq{K}{z},Hdq,Wss{er} ; ; evex m:2 p:1 l:i w:0 0xAF /r ; s:AVX512F, t:VFMA, l:t1s, e:E3, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFNMSUB213SD ; Vdq{K}{z},Hdq,Wsd{er} ; ; evex m:2 p:1 l:i w:1 0xAF /r ; s:AVX512F, t:VFMA, l:t1s, e:E3, w:RW|R|R|R, x:IE|OE|UE|PE|DE # 0xB0 - 0xBF VPMADD52LUQ ; Vfv{K}{z},Hfv,Wfv|B64 ; ; evex m:2 p:1 l:x w:1 0xB4 /r ; s:AVX512IFMA, t:IFMA, l:fv, e:E4, w:RW|R|R|R VPMADD52HUQ ; Vfv{K}{z},Hfv,Wfv|B64 ; ; evex m:2 p:1 l:x w:1 0xB5 /r ; s:AVX512IFMA, t:IFMA, l:fv, e:E4, w:RW|R|R|R -VFMADDSUB231PS ; Vfv{K}{z},Hfv,Wfv|B32{er} ; ; evex m:2 p:1 l:x w:0 0xB6 /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R -VFMADDSUB231PD ; Vfv{K}{z},Hfv,Wfv|B64{er} ; ; evex m:2 p:1 l:x w:1 0xB6 /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R -VFMSUBADD231PS ; Vfv{K}{z},Hfv,Wfv|B32{er} ; ; evex m:2 p:1 l:x w:0 0xB7 /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R -VFMSUBADD231PD ; Vfv{K}{z},Hfv,Wfv|B64{er} ; ; evex m:2 p:1 l:x w:1 0xB7 /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R -VFMADD231PS ; Vfv{K}{z},Hfv,Wfv|B32{er} ; ; evex m:2 p:1 l:x w:0 0xB8 /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R -VFMADD231PD ; Vfv{K}{z},Hfv,Wfv|B64{er} ; ; evex m:2 p:1 l:x w:1 0xB8 /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R -VFMADD231SS ; Vdq{K}{z},Hdq,Wss{er} ; ; evex m:2 p:1 l:i w:0 0xB9 /r ; s:AVX512F, t:VFMA, l:t1s, e:E3, w:RW|R|R|R -VFMADD231SD ; Vdq{K}{z},Hdq,Wsd{er} ; ; evex m:2 p:1 l:i w:1 0xB9 /r ; s:AVX512F, t:VFMA, l:t1s, e:E3, w:RW|R|R|R -VFMSUB231PS ; Vfv{K}{z},Hfv,Wfv|B32{er} ; ; evex m:2 p:1 l:x w:0 0xBA /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R -VFMSUB231PD ; Vfv{K}{z},Hfv,Wfv|B64{er} ; ; evex m:2 p:1 l:x w:1 0xBA /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R -VFMSUB231SS ; Vdq{K}{z},Hdq,Wss{er} ; ; evex m:2 p:1 l:i w:0 0xBB /r ; s:AVX512F, t:VFMA, l:t1s, e:E3, w:RW|R|R|R -VFMSUB231SD ; Vdq{K}{z},Hdq,Wsd{er} ; ; evex m:2 p:1 l:i w:1 0xBB /r ; s:AVX512F, t:VFMA, l:t1s, e:E3, w:RW|R|R|R -VFNMADD231PS ; Vfv{K}{z},Hfv,Wfv|B32{er} ; ; evex m:2 p:1 l:x w:0 0xBC /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R -VFNMADD231PD ; Vfv{K}{z},Hfv,Wfv|B64{er} ; ; evex m:2 p:1 l:x w:1 0xBC /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R -VFNMADD231SS ; Vdq{K}{z},Hdq,Wss{er} ; ; evex m:2 p:1 l:i w:0 0xBD /r ; s:AVX512F, t:VFMA, l:t1s, e:E3, w:RW|R|R|R -VFNMADD231SD ; Vdq{K}{z},Hdq,Wsd{er} ; ; evex m:2 p:1 l:i w:1 0xBD /r ; s:AVX512F, t:VFMA, l:t1s, e:E3, w:RW|R|R|R -VFNMSUB231PS ; Vfv{K}{z},Hfv,Wfv|B32{er} ; ; evex m:2 p:1 l:x w:0 0xBE /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R -VFNMSUB231PD ; Vfv{K}{z},Hfv,Wfv|B64{er} ; ; evex m:2 p:1 l:x w:1 0xBE /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R -VFNMSUB231SS ; Vdq{K}{z},Hdq,Wss{er} ; ; evex m:2 p:1 l:i w:0 0xBF /r ; s:AVX512F, t:VFMA, l:t1s, e:E3, w:RW|R|R|R -VFNMSUB231SD ; Vdq{K}{z},Hdq,Wsd{er} ; ; evex m:2 p:1 l:i w:1 0xBF /r ; s:AVX512F, t:VFMA, l:t1s, e:E3, w:RW|R|R|R +VFMADDSUB231PS ; Vfv{K}{z},Hfv,Wfv|B32{er} ; ; evex m:2 p:1 l:x w:0 0xB6 /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFMADDSUB231PD ; Vfv{K}{z},Hfv,Wfv|B64{er} ; ; evex m:2 p:1 l:x w:1 0xB6 /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFMSUBADD231PS ; Vfv{K}{z},Hfv,Wfv|B32{er} ; ; evex m:2 p:1 l:x w:0 0xB7 /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFMSUBADD231PD ; Vfv{K}{z},Hfv,Wfv|B64{er} ; ; evex m:2 p:1 l:x w:1 0xB7 /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFMADD231PS ; Vfv{K}{z},Hfv,Wfv|B32{er} ; ; evex m:2 p:1 l:x w:0 0xB8 /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFMADD231PD ; Vfv{K}{z},Hfv,Wfv|B64{er} ; ; evex m:2 p:1 l:x w:1 0xB8 /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFMADD231SS ; Vdq{K}{z},Hdq,Wss{er} ; ; evex m:2 p:1 l:i w:0 0xB9 /r ; s:AVX512F, t:VFMA, l:t1s, e:E3, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFMADD231SD ; Vdq{K}{z},Hdq,Wsd{er} ; ; evex m:2 p:1 l:i w:1 0xB9 /r ; s:AVX512F, t:VFMA, l:t1s, e:E3, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFMSUB231PS ; Vfv{K}{z},Hfv,Wfv|B32{er} ; ; evex m:2 p:1 l:x w:0 0xBA /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFMSUB231PD ; Vfv{K}{z},Hfv,Wfv|B64{er} ; ; evex m:2 p:1 l:x w:1 0xBA /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFMSUB231SS ; Vdq{K}{z},Hdq,Wss{er} ; ; evex m:2 p:1 l:i w:0 0xBB /r ; s:AVX512F, t:VFMA, l:t1s, e:E3, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFMSUB231SD ; Vdq{K}{z},Hdq,Wsd{er} ; ; evex m:2 p:1 l:i w:1 0xBB /r ; s:AVX512F, t:VFMA, l:t1s, e:E3, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFNMADD231PS ; Vfv{K}{z},Hfv,Wfv|B32{er} ; ; evex m:2 p:1 l:x w:0 0xBC /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFNMADD231PD ; Vfv{K}{z},Hfv,Wfv|B64{er} ; ; evex m:2 p:1 l:x w:1 0xBC /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFNMADD231SS ; Vdq{K}{z},Hdq,Wss{er} ; ; evex m:2 p:1 l:i w:0 0xBD /r ; s:AVX512F, t:VFMA, l:t1s, e:E3, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFNMADD231SD ; Vdq{K}{z},Hdq,Wsd{er} ; ; evex m:2 p:1 l:i w:1 0xBD /r ; s:AVX512F, t:VFMA, l:t1s, e:E3, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFNMSUB231PS ; Vfv{K}{z},Hfv,Wfv|B32{er} ; ; evex m:2 p:1 l:x w:0 0xBE /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFNMSUB231PD ; Vfv{K}{z},Hfv,Wfv|B64{er} ; ; evex m:2 p:1 l:x w:1 0xBE /r ; s:AVX512F, t:VFMA, l:fv, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFNMSUB231SS ; Vdq{K}{z},Hdq,Wss{er} ; ; evex m:2 p:1 l:i w:0 0xBF /r ; s:AVX512F, t:VFMA, l:t1s, e:E3, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFNMSUB231SD ; Vdq{K}{z},Hdq,Wsd{er} ; ; evex m:2 p:1 l:i w:1 0xBF /r ; s:AVX512F, t:VFMA, l:t1s, e:E3, w:RW|R|R|R, x:IE|OE|UE|PE|DE # 0xC0 - 0xCF VPCONFLICTD ; Vfv{K}{z},Wfv|B32 ; ; evex m:2 p:1 l:x w:0 0xC4 /r ; s:AVX512CD, t:CONFLICT, l:fv, e:E4NF, w:W|R|R @@ -331,16 +340,16 @@ VSCATTERPF0QPD ; Mvm64n{K} ; ; evex m:2 p:1 l:2 w:1 VSCATTERPF1QPS ; Mvm64n{K} ; ; evex m:2 p:1 l:2 w:0 0xC7 /6:mem vsib ; s:AVX512PF, t:SCATTER, a:MMASK, l:t1s, e:E12NP, w:P|R VSCATTERPF1QPD ; Mvm64n{K} ; ; evex m:2 p:1 l:2 w:1 0xC7 /6:mem vsib ; s:AVX512PF, t:SCATTER, a:MMASK, l:t1s, e:E12NP, w:P|R -VEXP2PS ; Voq{K}{z},Woq|B32{sae} ; ; evex m:2 p:1 l:2 w:0 0xC8 /r ; s:AVX512ER, t:KNL, l:fv, e:E2, w:W|R|R -VEXP2PD ; Voq{K}{z},Woq|B64{sae} ; ; evex m:2 p:1 l:2 w:1 0xC8 /r ; s:AVX512ER, t:KNL, l:fv, e:E2, w:W|R|R -VRCP28PS ; Voq{K}{z},Woq|B32{sae} ; ; evex m:2 p:1 l:2 w:0 0xCA /r ; s:AVX512ER, t:KNL, l:fv, e:E2, w:W|R|R -VRCP28PD ; Voq{K}{z},Woq|B64{sae} ; ; evex m:2 p:1 l:2 w:1 0xCA /r ; s:AVX512ER, t:KNL, l:fv, e:E2, w:W|R|R -VRCP28SS ; Vdq{K}{z},Hdq,Wss{sae} ; ; evex m:2 p:1 l:i w:0 0xCB /r ; s:AVX512ER, t:KNL, l:t1s, e:E3, w:W|R|R|R -VRCP28SD ; Vdq{K}{z},Hdq,Wsd{sae} ; ; evex m:2 p:1 l:i w:1 0xCB /r ; s:AVX512ER, t:KNL, l:t1s, e:E3, w:W|R|R|R -VRSQRT28PS ; Voq{K}{z},Woq|B32{sae} ; ; evex m:2 p:1 l:2 w:0 0xCC /r ; s:AVX512ER, t:KNL, l:fv, e:E2, w:W|R|R -VRSQRT28PD ; Voq{K}{z},Woq|B64{sae} ; ; evex m:2 p:1 l:2 w:1 0xCC /r ; s:AVX512ER, t:KNL, l:fv, e:E2, w:W|R|R -VRSQRT28SS ; Vdq{K}{z},Hdq,Wss{sae} ; ; evex m:2 p:1 l:i w:0 0xCD /r ; s:AVX512ER, t:KNL, l:t1s, e:E3, w:W|R|R|R -VRSQRT28SD ; Vdq{K}{z},Hdq,Wsd{sae} ; ; evex m:2 p:1 l:i w:1 0xCD /r ; s:AVX512ER, t:KNL, l:t1s, e:E3, w:W|R|R|R +VEXP2PS ; Voq{K}{z},Woq|B32{sae} ; ; evex m:2 p:1 l:2 w:0 0xC8 /r ; s:AVX512ER, t:KNL, l:fv, e:E2, w:W|R|R, x:IE|OE +VEXP2PD ; Voq{K}{z},Woq|B64{sae} ; ; evex m:2 p:1 l:2 w:1 0xC8 /r ; s:AVX512ER, t:KNL, l:fv, e:E2, w:W|R|R, x:IE|OE +VRCP28PS ; Voq{K}{z},Woq|B32{sae} ; ; evex m:2 p:1 l:2 w:0 0xCA /r ; s:AVX512ER, t:KNL, l:fv, e:E2, w:W|R|R, x:IE|ZE +VRCP28PD ; Voq{K}{z},Woq|B64{sae} ; ; evex m:2 p:1 l:2 w:1 0xCA /r ; s:AVX512ER, t:KNL, l:fv, e:E2, w:W|R|R, x:IE|ZE +VRCP28SS ; Vdq{K}{z},Hdq,Wss{sae} ; ; evex m:2 p:1 l:i w:0 0xCB /r ; s:AVX512ER, t:KNL, l:t1s, e:E3, w:W|R|R|R, x:IE|ZE +VRCP28SD ; Vdq{K}{z},Hdq,Wsd{sae} ; ; evex m:2 p:1 l:i w:1 0xCB /r ; s:AVX512ER, t:KNL, l:t1s, e:E3, w:W|R|R|R, x:IE|ZE +VRSQRT28PS ; Voq{K}{z},Woq|B32{sae} ; ; evex m:2 p:1 l:2 w:0 0xCC /r ; s:AVX512ER, t:KNL, l:fv, e:E2, w:W|R|R, x:IE|ZE +VRSQRT28PD ; Voq{K}{z},Woq|B64{sae} ; ; evex m:2 p:1 l:2 w:1 0xCC /r ; s:AVX512ER, t:KNL, l:fv, e:E2, w:W|R|R, x:IE|ZE +VRSQRT28SS ; Vdq{K}{z},Hdq,Wss{sae} ; ; evex m:2 p:1 l:i w:0 0xCD /r ; s:AVX512ER, t:KNL, l:t1s, e:E3, w:W|R|R|R, x:IE|ZE +VRSQRT28SD ; Vdq{K}{z},Hdq,Wsd{sae} ; ; evex m:2 p:1 l:i w:1 0xCD /r ; s:AVX512ER, t:KNL, l:t1s, e:E3, w:W|R|R|R, x:IE|ZE VGF2P8MULB ; Vfv{K}{z},Hfv,Wfv ; ; evex m:2 p:1 l:x w:0 0xCF /r ; s:GFNI, t:GFNI, l:fvm, e:E4, w:W|R|R|R # 0xD0 - 0xDF @@ -350,6 +359,8 @@ VPDPWSUD ; Vfv{K}{z},Hfv,Wfv|B32 ; ; evex m:2 p:2 l:x w:0 VPDPWUUDS ; Vfv{K}{z},Hfv,Wfv|B32 ; ; evex m:2 p:0 l:x w:0 0xD3 /r ; s:AVX102, t:AVX10INT, l:fv, e:E4, w:RW|R|R|R VPDPWUSDS ; Vfv{K}{z},Hfv,Wfv|B32 ; ; evex m:2 p:1 l:x w:0 0xD3 /r ; s:AVX102, t:AVX10INT, l:fv, e:E4, w:RW|R|R|R VPDPWSUDS ; Vfv{K}{z},Hfv,Wfv|B32 ; ; evex m:2 p:2 l:x w:0 0xD3 /r ; s:AVX102, t:AVX10INT, l:fv, e:E4, w:RW|R|R|R +VSM4KEY4 ; Vfv,Hfv,Wfv ; ; evex m:2 p:2 l:x w:0 0xDA /r ; s:SM4, t:SM4, l:fvm, e:E6, w:W|R|R +VSM4RNDS4 ; Vfv,Hfv,Wfv ; ; evex m:2 p:3 l:x w:0 0xDA /r ; s:SM4, t:SM4, l:fvm, e:E6, w:W|R|R VAESENC ; Vfv,Hfv,Wfv ; ; evex m:2 p:1 l:x w:i 0xDC /r ; s:VAES, t:VAES, l:fvm, e:E4NF, w:W|R|R VAESENCLAST ; Vfv,Hfv,Wfv ; ; evex m:2 p:1 l:x w:i 0xDD /r ; s:VAES, t:VAES, l:fvm, e:E4NF, w:W|R|R VAESDEC ; Vfv,Hfv,Wfv ; ; evex m:2 p:1 l:x w:i 0xDE /r ; s:VAES, t:VAES, l:fvm, e:E4NF, w:W|R|R diff --git a/isagenerator/instructions/table_evex_3.dat b/isagenerator/instructions/table_evex_3.dat index 6f3bd4d..6c2b29f 100644 --- a/isagenerator/instructions/table_evex_3.dat +++ b/isagenerator/instructions/table_evex_3.dat @@ -10,13 +10,19 @@ VALIGND ; Vfv{K}{z},Hfv,Wfv|B32,Ib ; ; evex m:3 p:1 l:x w:0 VALIGNQ ; Vfv{K}{z},Hfv,Wfv|B64,Ib ; ; evex m:3 p:1 l:x w:1 0x03 /r ib ; s:AVX512F, t:AVX512, l:fv, e:E4NF, w:W|R|R|R|R VPERMILPS ; Vfv{K}{z},Wfv|B32,Ib ; ; evex m:3 p:1 l:x w:0 0x04 /r ib ; s:AVX512F, t:AVX512, l:fv, e:E4NF, w:W|R|R|R VPERMILPD ; Vfv{K}{z},Wfv|B64,Ib ; ; evex m:3 p:1 l:x w:1 0x05 /r ib ; s:AVX512F, t:AVX512, l:fv, e:E4NF, w:W|R|R|R -VRNDSCALEPH ; Vfv{K}{z},Wfv|B16{sae},Ib ; ; evex m:3 p:0 l:x w:0 0x08 /r ib ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:W|R|R|R -VRNDSCALEPS ; Vfv{K}{z},Wfv|B32{sae},Ib ; ; evex m:3 p:1 l:x w:0 0x08 /r ib ; s:AVX512F, t:AVX512, l:fv, e:E2, w:W|R|R|R + +TCVTROWPS2PHH ; Voq,mTt,Ib ; ; evex m:3 p:0 l:2 w:0 0x07 /r:reg ib ; s:AMXAVX512, t:AMX, e:AMX_EVEX_E7, w:W|R|R, m:NOTSX +TILEMOVROW ; Voq,mTt,Ib ; ; evex m:3 p:1 l:2 w:0 0x07 /r:reg ib ; s:AMXAVX512, t:AMX, e:AMX_EVEX_E7, w:W|R|R, m:NOTSX +TCVTROWD2PS ; Voq,mTt,Ib ; ; evex m:3 p:2 l:2 w:0 0x07 /r:reg ib ; s:AMXAVX512, t:AMX, e:AMX_EVEX_E7, w:W|R|R, m:NOTSX +TCVTROWPS2PBF16H ; Voq,mTt,Ib ; ; evex m:3 p:3 l:2 w:0 0x07 /r:reg ib ; s:AMXAVX512, t:AMX, e:AMX_EVEX_E7, w:W|R|R, m:NOTSX + +VRNDSCALEPH ; Vfv{K}{z},Wfv|B16{sae},Ib ; ; evex m:3 p:0 l:x w:0 0x08 /r ib ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:W|R|R|R, x:IE|PE|UE +VRNDSCALEPS ; Vfv{K}{z},Wfv|B32{sae},Ib ; ; evex m:3 p:1 l:x w:0 0x08 /r ib ; s:AVX512F, t:AVX512, l:fv, e:E2, w:W|R|R|R, x:IE|PE VRNDSCALENEPBF16 ; Vfv{K}{z},Wfv|B16,Ib ; ; evex m:3 p:3 l:x w:0 0x08 /r ib ; s:AVX102, t:AVX10BF16, l:fv, e:E4, w:W|R|R|R -VRNDSCALEPD ; Vfv{K}{z},Wfv|B64{sae},Ib ; ; evex m:3 p:1 l:x w:1 0x09 /r ib ; s:AVX512F, t:AVX512, l:fv, e:E2, w:W|R|R|R -VRNDSCALESH ; Vdq{K}{z},Hdq,Wsh{sae},Ib ; ; evex m:3 p:0 l:i w:0 0x0A /r ib ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3, w:W|R|R|R|R -VRNDSCALESS ; Vdq{K}{z},Hdq,Wss{sae},Ib ; ; evex m:3 p:1 l:i w:0 0x0A /r ib ; s:AVX512F, t:AVX512, l:t1s, e:E3, w:W|R|R|R|R -VRNDSCALESD ; Vdq{K}{z},Hdq,Wsd{sae},Ib ; ; evex m:3 p:1 l:i w:1 0x0B /r ib ; s:AVX512F, t:AVX512, l:t1s, e:E3, w:W|R|R|R|R +VRNDSCALEPD ; Vfv{K}{z},Wfv|B64{sae},Ib ; ; evex m:3 p:1 l:x w:1 0x09 /r ib ; s:AVX512F, t:AVX512, l:fv, e:E2, w:W|R|R|R, x:IE|PE +VRNDSCALESH ; Vdq{K}{z},Hdq,Wsh{sae},Ib ; ; evex m:3 p:0 l:i w:0 0x0A /r ib ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3, w:W|R|R|R|R, x:IE|UE|PE +VRNDSCALESS ; Vdq{K}{z},Hdq,Wss{sae},Ib ; ; evex m:3 p:1 l:i w:0 0x0A /r ib ; s:AVX512F, t:AVX512, l:t1s, e:E3, w:W|R|R|R|R, x:IE|PE +VRNDSCALESD ; Vdq{K}{z},Hdq,Wsd{sae},Ib ; ; evex m:3 p:1 l:i w:1 0x0B /r ib ; s:AVX512F, t:AVX512, l:t1s, e:E3, w:W|R|R|R|R, x:IE|PE VPALIGNR ; Vfv{K}{z},Hfv,Wfv,Ib ; ; evex m:3 p:1 l:x w:i 0x0F /r ib ; s:AVX512BW, t:AVX512, l:fvm, e:E4NFnb, w:W|R|R|R|R # 0x10 - 0x1F @@ -38,7 +44,7 @@ VINSERTF32X8 ; Voq{K}{z},Hoq,Wqq,Ib ; ; evex m:3 p:1 l:2 w:0 VINSERTF64X4 ; Voq{K}{z},Hoq,Wqq,Ib ; ; evex m:3 p:1 l:2 w:1 0x1A /r ib ; s:AVX512F, t:AVX512, l:t4, e:E6NF, w:W|R|R|R|R VEXTRACTF32X8 ; Wqq{K}{z},Voq,Ib ; ; evex m:3 p:1 l:2 w:0 0x1B /r ib ; s:AVX512DQ, t:AVX512, l:t8, e:E6NF, w:W|R|R|R VEXTRACTF64X4 ; Wqq{K}{z},Voq,Ib ; ; evex m:3 p:1 l:2 w:1 0x1B /r ib ; s:AVX512F, t:AVX512, l:t4, e:E6NF, w:W|R|R|R -VCVTPS2PH ; Whv{K}{z},Vfv{sae},Ib ; ; evex m:3 p:1 l:x w:0 0x1D /r ib ; s:AVX512F, t:CONVERT, l:hvm, e:E11, w:W|R|R|R +VCVTPS2PH ; Whv{K}{z},Vfv{sae},Ib ; ; evex m:3 p:1 l:x w:0 0x1D /r ib ; s:AVX512F, t:CONVERT, l:hvm, e:E11, w:W|R|R|R, x:IE|OE|UE|PE|DE VPCMPUD ; rKq{K},Hfv,Wfv|B32,Ib ; ; evex m:3 p:1 l:x w:0 0x1E /r ib ; s:AVX512F, t:AVX512, l:fv, e:E4, w:W|R|R|R|R VPCMPUQ ; rKq{K},Hfv,Wfv|B64,Ib ; ; evex m:3 p:1 l:x w:1 0x1E /r ib ; s:AVX512F, t:AVX512, l:fv, e:E4, w:W|R|R|R|R VPCMPD ; rKq{K},Hfv,Wfv|B32,Ib ; ; evex m:3 p:1 l:x w:0 0x1F /r ib ; s:AVX512F, t:AVX512, l:fv, e:E4, w:W|R|R|R|R @@ -55,13 +61,13 @@ VSHUFF32X4 ; Vuv{K}{z},Huv,Wuv|B32,Ib ; ; evex m:3 p:1 l:x w:0 VSHUFF64X2 ; Vuv{K}{z},Huv,Wuv|B64,Ib ; ; evex m:3 p:1 l:x w:1 0x23 /r ib ; s:AVX512F, t:AVX512, a:NOL0, l:fv, e:E4NF, w:W|R|R|R|R VPTERNLOGD ; Vfv{K}{z},Hfv,Wfv|B32,Ib ; ; evex m:3 p:1 l:x w:0 0x25 /r ib ; s:AVX512F, t:LOGICAL, l:fv, e:E4, w:RW|R|R|R|R VPTERNLOGQ ; Vfv{K}{z},Hfv,Wfv|B64,Ib ; ; evex m:3 p:1 l:x w:1 0x25 /r ib ; s:AVX512F, t:LOGICAL, l:fv, e:E4, w:RW|R|R|R|R -VGETMANTPH ; Vfv{K}{z},Wfv|B16{sae},Ib ; ; evex m:3 p:0 l:x w:0 0x26 /r ib ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:W|R|R|R -VGETMANTPS ; Vfv{K}{z},Wfv|B32{sae},Ib ; ; evex m:3 p:1 l:x w:0 0x26 /r ib ; s:AVX512F, t:AVX512, l:fv, e:E2, w:W|R|R|R -VGETMANTPD ; Vfv{K}{z},Wfv|B64{sae},Ib ; ; evex m:3 p:1 l:x w:1 0x26 /r ib ; s:AVX512F, t:AVX512, l:fv, e:E2, w:W|R|R|R +VGETMANTPH ; Vfv{K}{z},Wfv|B16{sae},Ib ; ; evex m:3 p:0 l:x w:0 0x26 /r ib ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:W|R|R|R, x:IE|DE +VGETMANTPS ; Vfv{K}{z},Wfv|B32{sae},Ib ; ; evex m:3 p:1 l:x w:0 0x26 /r ib ; s:AVX512F, t:AVX512, l:fv, e:E2, w:W|R|R|R, x:IE|DE +VGETMANTPD ; Vfv{K}{z},Wfv|B64{sae},Ib ; ; evex m:3 p:1 l:x w:1 0x26 /r ib ; s:AVX512F, t:AVX512, l:fv, e:E2, w:W|R|R|R, x:IE|DE VGETMANTPBF16 ; Vfv{K}{z},Wfv|B16,Ib ; ; evex m:3 p:3 l:x w:0 0x26 /r ib ; s:AVX102, t:AVX10BF16, l:fv, e:E4, w:W|R|R|R -VGETMANTSH ; Vdq{K}{z},Hdq,Wsh{sae},Ib ; ; evex m:3 p:0 l:i w:0 0x27 /r ib ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3, w:W|R|R|R|R -VGETMANTSS ; Vdq{K}{z},Hdq,Wss{sae},Ib ; ; evex m:3 p:1 l:i w:0 0x27 /r ib ; s:AVX512F, t:AVX512, l:t1s, e:E2, w:W|R|R|R|R -VGETMANTSD ; Vdq{K}{z},Hdq,Wsd{sae},Ib ; ; evex m:3 p:1 l:i w:1 0x27 /r ib ; s:AVX512F, t:AVX512, l:t1s, e:E2, w:W|R|R|R|R +VGETMANTSH ; Vdq{K}{z},Hdq,Wsh{sae},Ib ; ; evex m:3 p:0 l:i w:0 0x27 /r ib ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3, w:W|R|R|R|R, x:IE|DE +VGETMANTSS ; Vdq{K}{z},Hdq,Wss{sae},Ib ; ; evex m:3 p:1 l:i w:0 0x27 /r ib ; s:AVX512F, t:AVX512, l:t1s, e:E2, w:W|R|R|R|R, x:IE|DE +VGETMANTSD ; Vdq{K}{z},Hdq,Wsd{sae},Ib ; ; evex m:3 p:1 l:i w:1 0x27 /r ib ; s:AVX512F, t:AVX512, l:t1s, e:E2, w:W|R|R|R|R, x:IE|DE # 0x30 - 0x3F VINSERTI32X4 ; Vuv{K}{z},Huv,Wdq,Ib ; ; evex m:3 p:1 l:x w:0 0x38 /r ib ; s:AVX512F, t:AVX512, a:NOL0, l:t4, e:E6NF, w:W|R|R|R|R @@ -85,28 +91,28 @@ VSHUFI64X2 ; Vuv{K}{z},Huv,Wuv|B64,Ib ; ; evex m:3 p:1 l:x w:1 VPCLMULQDQ ; Vfv,Hfv,Wfv,Ib ; ; evex m:3 p:1 l:x w:i 0x44 /r ib ; s:VPCLMULQDQ, t:VPCLMULQDQ, l:fvm, e:E4NF, w:W|R|R|R # 0x50 - 0x5F -VRANGEPS ; Vfv{K}{z},Hfv,Wfv|B32{sae},Ib ; ; evex m:3 p:1 l:x w:0 0x50 /r ib ; s:AVX512DQ, t:AVX512, l:fv, e:E2, w:W|R|R|R|R -VRANGEPD ; Vfv{K}{z},Hfv,Wfv|B64{sae},Ib ; ; evex m:3 p:1 l:x w:1 0x50 /r ib ; s:AVX512DQ, t:AVX512, l:fv, e:E2, w:W|R|R|R|R -VRANGESS ; Vdq{K}{z},Hdq,Wss{sae},Ib ; ; evex m:3 p:1 l:i w:0 0x51 /r ib ; s:AVX512DQ, t:AVX512, l:t1s, e:E3, w:W|R|R|R|R -VRANGESD ; Vdq{K}{z},Hdq,Wsd{sae},Ib ; ; evex m:3 p:1 l:i w:1 0x51 /r ib ; s:AVX512DQ, t:AVX512, l:t1s, e:E3, w:W|R|R|R|R -VMINMAXPH ; Vfv{K}{z},Hfv,Wfv|B16{sae},Ib ; ; evex m:3 p:0 l:x w:0 0x52 /r ib ; s:AVX102, t:AVX10MINMAX, l:fv, e:E2, w:W|R|R|R|R -VMINMAXPS ; Vfv{K}{z},Hfv,Wfv|B32{sae},Ib ; ; evex m:3 p:1 l:x w:0 0x52 /r ib ; s:AVX102, t:AVX10MINMAX, l:fv, e:E2, w:W|R|R|R|R -VMINMAXPD ; Vfv{K}{z},Hfv,Wfv|B64{sae},Ib ; ; evex m:3 p:1 l:x w:1 0x52 /r ib ; s:AVX102, t:AVX10MINMAX, l:fv, e:E2, w:W|R|R|R|R +VRANGEPS ; Vfv{K}{z},Hfv,Wfv|B32{sae},Ib ; ; evex m:3 p:1 l:x w:0 0x50 /r ib ; s:AVX512DQ, t:AVX512, l:fv, e:E2, w:W|R|R|R|R, x:IE|DE +VRANGEPD ; Vfv{K}{z},Hfv,Wfv|B64{sae},Ib ; ; evex m:3 p:1 l:x w:1 0x50 /r ib ; s:AVX512DQ, t:AVX512, l:fv, e:E2, w:W|R|R|R|R, x:IE|DE +VRANGESS ; Vdq{K}{z},Hdq,Wss{sae},Ib ; ; evex m:3 p:1 l:i w:0 0x51 /r ib ; s:AVX512DQ, t:AVX512, l:t1s, e:E3, w:W|R|R|R|R, x:IE|DE +VRANGESD ; Vdq{K}{z},Hdq,Wsd{sae},Ib ; ; evex m:3 p:1 l:i w:1 0x51 /r ib ; s:AVX512DQ, t:AVX512, l:t1s, e:E3, w:W|R|R|R|R, x:IE|DE +VMINMAXPH ; Vfv{K}{z},Hfv,Wfv|B16{sae},Ib ; ; evex m:3 p:0 l:x w:0 0x52 /r ib ; s:AVX102, t:AVX10MINMAX, l:fv, e:E2, w:W|R|R|R|R, x:IE|DE +VMINMAXPS ; Vfv{K}{z},Hfv,Wfv|B32{sae},Ib ; ; evex m:3 p:1 l:x w:0 0x52 /r ib ; s:AVX102, t:AVX10MINMAX, l:fv, e:E2, w:W|R|R|R|R, x:IE|DE +VMINMAXPD ; Vfv{K}{z},Hfv,Wfv|B64{sae},Ib ; ; evex m:3 p:1 l:x w:1 0x52 /r ib ; s:AVX102, t:AVX10MINMAX, l:fv, e:E2, w:W|R|R|R|R, x:IE|DE VMINMAXNEPBF16 ; Vfv{K}{z},Hfv,Wfv|B16,Ib ; ; evex m:3 p:3 l:x w:0 0x52 /r ib ; s:AVX102, t:AVX10MINMAX, l:fv, e:E4, w:W|R|R|R|R -VMINMAXSH ; Vdq{K}{z},Hdq,Wsh{sae},Ib ; ; evex m:3 p:0 l:i w:0 0x53 /r ib ; s:AVX102, t:AVX10MINMAX, l:t1s, e:E3, w:W|R|R|R|R -VMINMAXSS ; Vdq{K}{z},Hdq,Wss{sae},Ib ; ; evex m:3 p:1 l:i w:0 0x53 /r ib ; s:AVX102, t:AVX10MINMAX, l:t1s, e:E3, w:W|R|R|R|R -VMINMAXSD ; Vdq{K}{z},Hdq,Wsd{sae},Ib ; ; evex m:3 p:1 l:i w:1 0x53 /r ib ; s:AVX102, t:AVX10MINMAX, l:t1s, e:E3, w:W|R|R|R|R -VFIXUPIMMPS ; Vfv{K}{z},Hfv,Wfv|B32{sae},Ib ; ; evex m:3 p:1 l:x w:0 0x54 /r ib ; s:AVX512F, t:AVX512, l:fv, e:E2, w:RW|R|R|R|R -VFIXUPIMMPD ; Vfv{K}{z},Hfv,Wfv|B64{sae},Ib ; ; evex m:3 p:1 l:x w:1 0x54 /r ib ; s:AVX512F, t:AVX512, l:fv, e:E2, w:RW|R|R|R|R -VFIXUPIMMSS ; Vdq{K}{z},Hdq,Wss{sae},Ib ; ; evex m:3 p:1 l:i w:0 0x55 /r ib ; s:AVX512F, t:AVX512, l:t1s, e:E3, w:RW|R|R|R|R -VFIXUPIMMSD ; Vdq{K}{z},Hdq,Wsd{sae},Ib ; ; evex m:3 p:1 l:i w:1 0x55 /r ib ; s:AVX512F, t:AVX512, l:t1s, e:E3, w:RW|R|R|R|R -VREDUCEPH ; Vfv{K}{z},Wfv|B16{sae},Ib ; ; evex m:3 p:0 l:x w:0 0x56 /r ib ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:W|R|R|R -VREDUCEPS ; Vfv{K}{z},Wfv|B32{sae},Ib ; ; evex m:3 p:1 l:x w:0 0x56 /r ib ; s:AVX512DQ, t:AVX512, l:fv, e:E2, w:W|R|R|R -VREDUCEPD ; Vfv{K}{z},Wfv|B64{sae},Ib ; ; evex m:3 p:1 l:x w:1 0x56 /r ib ; s:AVX512DQ, t:AVX512, l:fv, e:E2, w:W|R|R|R +VMINMAXSH ; Vdq{K}{z},Hdq,Wsh{sae},Ib ; ; evex m:3 p:0 l:i w:0 0x53 /r ib ; s:AVX102, t:AVX10MINMAX, l:t1s, e:E3, w:W|R|R|R|R, x:IE|DE +VMINMAXSS ; Vdq{K}{z},Hdq,Wss{sae},Ib ; ; evex m:3 p:1 l:i w:0 0x53 /r ib ; s:AVX102, t:AVX10MINMAX, l:t1s, e:E3, w:W|R|R|R|R, x:IE|DE +VMINMAXSD ; Vdq{K}{z},Hdq,Wsd{sae},Ib ; ; evex m:3 p:1 l:i w:1 0x53 /r ib ; s:AVX102, t:AVX10MINMAX, l:t1s, e:E3, w:W|R|R|R|R, x:IE|DE +VFIXUPIMMPS ; Vfv{K}{z},Hfv,Wfv|B32{sae},Ib ; ; evex m:3 p:1 l:x w:0 0x54 /r ib ; s:AVX512F, t:AVX512, l:fv, e:E2, w:RW|R|R|R|R, x:IE|ZE +VFIXUPIMMPD ; Vfv{K}{z},Hfv,Wfv|B64{sae},Ib ; ; evex m:3 p:1 l:x w:1 0x54 /r ib ; s:AVX512F, t:AVX512, l:fv, e:E2, w:RW|R|R|R|R, x:IE|ZE +VFIXUPIMMSS ; Vdq{K}{z},Hdq,Wss{sae},Ib ; ; evex m:3 p:1 l:i w:0 0x55 /r ib ; s:AVX512F, t:AVX512, l:t1s, e:E3, w:RW|R|R|R|R, x:IE|ZE +VFIXUPIMMSD ; Vdq{K}{z},Hdq,Wsd{sae},Ib ; ; evex m:3 p:1 l:i w:1 0x55 /r ib ; s:AVX512F, t:AVX512, l:t1s, e:E3, w:RW|R|R|R|R, x:IE|ZE +VREDUCEPH ; Vfv{K}{z},Wfv|B16{sae},Ib ; ; evex m:3 p:0 l:x w:0 0x56 /r ib ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:W|R|R|R, x:IE|PE +VREDUCEPS ; Vfv{K}{z},Wfv|B32{sae},Ib ; ; evex m:3 p:1 l:x w:0 0x56 /r ib ; s:AVX512DQ, t:AVX512, l:fv, e:E2, w:W|R|R|R, x:IE|PE +VREDUCEPD ; Vfv{K}{z},Wfv|B64{sae},Ib ; ; evex m:3 p:1 l:x w:1 0x56 /r ib ; s:AVX512DQ, t:AVX512, l:fv, e:E2, w:W|R|R|R, x:IE|PE VREDUCENEPBF16 ; Vfv{K}{z},Wfv|B16,Ib ; ; evex m:3 p:3 l:x w:0 0x56 /r ib ; s:AVX102, t:AVX10BF16, l:fv, e:E4, w:W|R|R|R -VREDUCESH ; Vdq{K}{z},Hdq,Wsh{sae},Ib ; ; evex m:3 p:0 l:i w:0 0x57 /r ib ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3, w:W|R|R|R|R -VREDUCESS ; Vdq{K}{z},Hdq,Wss{sae},Ib ; ; evex m:3 p:1 l:i w:0 0x57 /r ib ; s:AVX512DQ, t:AVX512, l:t1s, e:E3, w:W|R|R|R|R -VREDUCESD ; Vdq{K}{z},Hdq,Wsd{sae},Ib ; ; evex m:3 p:1 l:i w:1 0x57 /r ib ; s:AVX512DQ, t:AVX512, l:t1s, e:E3, w:W|R|R|R|R +VREDUCESH ; Vdq{K}{z},Hdq,Wsh{sae},Ib ; ; evex m:3 p:0 l:i w:0 0x57 /r ib ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3, w:W|R|R|R|R, x:IE|PE +VREDUCESS ; Vdq{K}{z},Hdq,Wss{sae},Ib ; ; evex m:3 p:1 l:i w:0 0x57 /r ib ; s:AVX512DQ, t:AVX512, l:t1s, e:E3, w:W|R|R|R|R, x:IE|PE +VREDUCESD ; Vdq{K}{z},Hdq,Wsd{sae},Ib ; ; evex m:3 p:1 l:i w:1 0x57 /r ib ; s:AVX512DQ, t:AVX512, l:t1s, e:E3, w:W|R|R|R|R, x:IE|PE # 0x60 - 0x6F VFPCLASSPH ; rKq{K},Wfv|B16,Ib ; ; evex m:3 p:0 l:x w:0 0x66 /r ib ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E4, w:W|R|R|R @@ -125,6 +131,9 @@ VPSHRDW ; Vfv{K}{z},Hfv,Wfv,Ib ; ; evex m:3 p:1 l:x w:1 VPSHRDD ; Vfv{K}{z},Hfv,Wfv|B32,Ib ; ; evex m:3 p:1 l:x w:0 0x73 /r ib ; s:AVX512VBMI2, t:AVX512VBMI, l:fv, e:E4, w:RW|R|R|R|R VPSHRDQ ; Vfv{K}{z},Hfv,Wfv|B64,Ib ; ; evex m:3 p:1 l:x w:1 0x73 /r ib ; s:AVX512VBMI2, t:AVX512VBMI, l:fv, e:E4, w:RW|R|R|R|R +TCVTROWPS2PBF16L ; Voq,mTt,Ib ; ; evex m:3 p:2 l:2 w:0 0x77 /r:reg ib ; s:AMXAVX512, t:AMX, e:AMX_EVEX_E7, w:W|R|R, m:NOTSX +TCVTROWPS2PHL ; Voq,mTt,Ib ; ; evex m:3 p:3 l:2 w:0 0x77 /r:reg ib ; s:AMXAVX512, t:AMX, e:AMX_EVEX_E7, w:W|R|R, m:NOTSX + # 0x80 - 0x8F # 0x90 - 0x9F @@ -134,12 +143,12 @@ VPSHRDQ ; Vfv{K}{z},Hfv,Wfv|B64,Ib ; ; evex m:3 p:1 l:x w:1 # 0xB0 - 0xBF # 0xC0 - 0xCF -VCMPPH ; rK{K},Hfv,Wfv|B16{sae},Ib ; ; evex m:3 p:0 l:x w:0 0xC2 /r ib ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:W|R|R|R|R -VCMPSH ; rK{K},Hfv,Wsh{sae},Ib ; ; evex m:3 p:2 l:i w:0 0xC2 /r ib ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3, w:W|R|R|R|R +VCMPPH ; rK{K},Hfv,Wfv|B16{sae},Ib ; ; evex m:3 p:0 l:x w:0 0xC2 /r ib ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:W|R|R|R|R, x:IE|DE +VCMPSH ; rK{K},Hfv,Wsh{sae},Ib ; ; evex m:3 p:2 l:i w:0 0xC2 /r ib ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3, w:W|R|R|R|R, x:IE|DE VCMPPBF16 ; rK{K},Hfv,Wfv|B16,Ib ; ; evex m:3 p:3 l:x w:0 0xC2 /r ib ; s:AVX102, t:AVX10BF16, l:fv, e:E4, w:W|R|R|R|R -VGF2P8AFFINEQB ; Vfv{K}{z},Hfv,Wfv|B64,Ib ; ; evex m:3 p:1 l:x w:1 0xCE /r ib ; s:GFNI, t:GFNI, l:fv, e:E4NF, w:W|R|R|R|R -VGF2P8AFFINEINVQB ; Vfv{K}{z},Hfv,Wfv|B64,Ib ; ; evex m:3 p:1 l:x w:1 0xCF /r ib ; s:GFNI, t:GFNI, l:fv, e:E4NF, w:W|R|R|R|R +VGF2P8AFFINEQB ; Vfv{K}{z},Hfv,Wfv|B64,Ib ; ; evex m:3 p:1 l:x w:1 0xCE /r ib ; s:GFNI, t:GFNI, l:fv, e:E4NF, w:W|R|R|R|R +VGF2P8AFFINEINVQB ; Vfv{K}{z},Hfv,Wfv|B64,Ib ; ; evex m:3 p:1 l:x w:1 0xCF /r ib ; s:GFNI, t:GFNI, l:fv, e:E4NF, w:W|R|R|R|R # 0xD0 - 0xDF diff --git a/isagenerator/instructions/table_evex_5.dat b/isagenerator/instructions/table_evex_5.dat index 79d50c3..09d4fef 100644 --- a/isagenerator/instructions/table_evex_5.dat +++ b/isagenerator/instructions/table_evex_5.dat @@ -8,111 +8,113 @@ VMOVSH ; Vdq{K}{z},Wsh ; ; evex m:5 p:2 l:i w:0 VMOVSH ; Vdq{K}{z},Hdq,Wsh ; ; evex m:5 p:2 l:i w:0 0x10 /r:reg ; s:AVX512FP16, t:AVX512FP16, e:E5, w:W|R|R|R VMOVSH ; Wsh{K},Vdq ; ; evex m:5 p:2 l:i w:0 0x11 /r:mem ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E5, w:W|R|R VMOVSH ; Wsh{K}{z},Hdq,Vdq ; ; evex m:5 p:2 l:i w:0 0x11 /r:reg ; s:AVX512FP16, t:AVX512FP16, e:E5, w:W|R|R|R -VCVTBIASPH2HF8 ; Vhv{K}{z},Hfv,Wfv|B16 ; ; evex m:5 p:0 l:x w:0 0x18 /r ; s:AVX102, t:AVX10CONVERT, l:fv, e:E4NF, w:W|R|R|R -VCVTNEPH2HF8 ; Vhv{K}{z},Wfv|B16 ; ; evex m:5 p:2 l:x w:0 0x18 /r ; s:AVX102, t:AVX10CONVERT, l:fv, e:E4NF, w:W|R|R -VCVTNE2PH2HF8 ; Vfv{K}{z},Hfv,Wfv|B16 ; ; evex m:5 p:3 l:x w:0 0x18 /r ; s:AVX102, t:AVX10CONVERT, l:fv, e:E4NF, w:W|R|R|R -VCVTBIASPH2HF8S ; Vhv{K}{z},Hfv,Wfv|B16 ; ; evex m:5 p:0 l:x w:0 0x1B /r ; s:AVX102, t:AVX10CONVERT, l:fv, e:E4NF, w:W|R|R|R -VCVTNEPH2HF8S ; Vhv{K}{z},Wfv|B16 ; ; evex m:5 p:2 l:x w:0 0x1B /r ; s:AVX102, t:AVX10CONVERT, l:fv, e:E4NF, w:W|R|R -VCVTNE2PH2HF8S ; Vfv{K}{z},Hfv,Wfv|B16 ; ; evex m:5 p:3 l:x w:0 0x1B /r ; s:AVX102, t:AVX10CONVERT, l:fv, e:E4NF, w:W|R|R|R -VCVTPS2PHX ; Vhv{K}{z},Wfv|B32{er} ; ; evex m:5 p:1 l:x w:0 0x1D /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:W|R|R -VCVTSS2SH ; Vdq{K}{z},Hdq,Wss{er} ; ; evex m:5 p:0 l:i w:0 0x1D /r ; s:AVX512FP16, t:AVX512FP16, l:t1s, e:E3, w:W|R|R|R -VCVTHF82PH ; Vfv{K}{z},Whv ; ; evex m:5 p:3 l:x w:0 0x1E /r ; s:AVX102, t:AVX10CONVERT, l:hv, e:E2, w:W|R|R +VCVTBIASPH2HF8 ; Vhv{K}{z},Hfv,Wfv|B16 ; ; evex m:5 p:0 l:x w:0 0x18 /r ; s:AVX102, t:AVX10CONVERT, l:fv, e:E4NF, w:W|R|R|R, x:IE|OE|UE|PE|DE +VCVTNEPH2HF8 ; Vhv{K}{z},Wfv|B16 ; ; evex m:5 p:2 l:x w:0 0x18 /r ; s:AVX102, t:AVX10CONVERT, l:fv, e:E4NF, w:W|R|R, x:IE|OE|UE|PE|DE +VCVTNE2PH2HF8 ; Vfv{K}{z},Hfv,Wfv|B16 ; ; evex m:5 p:3 l:x w:0 0x18 /r ; s:AVX102, t:AVX10CONVERT, l:fv, e:E4NF, w:W|R|R|R, x:IE|OE|UE|PE|DE +VCVTBIASPH2HF8S ; Vhv{K}{z},Hfv,Wfv|B16 ; ; evex m:5 p:0 l:x w:0 0x1B /r ; s:AVX102, t:AVX10CONVERT, l:fv, e:E4NF, w:W|R|R|R, x:IE|OE|UE|PE|DE +VCVTNEPH2HF8S ; Vhv{K}{z},Wfv|B16 ; ; evex m:5 p:2 l:x w:0 0x1B /r ; s:AVX102, t:AVX10CONVERT, l:fv, e:E4NF, w:W|R|R, x:IE|OE|UE|PE|DE +VCVTNE2PH2HF8S ; Vfv{K}{z},Hfv,Wfv|B16 ; ; evex m:5 p:3 l:x w:0 0x1B /r ; s:AVX102, t:AVX10CONVERT, l:fv, e:E4NF, w:W|R|R|R, x:IE|OE|UE|PE|DE +VCVTPS2PHX ; Vhv{K}{z},Wfv|B32{er} ; ; evex m:5 p:1 l:x w:0 0x1D /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:W|R|R, x:IE|OE|UE|PE|DE +VCVTSS2SH ; Vdq{K}{z},Hdq,Wss{er} ; ; evex m:5 p:0 l:i w:0 0x1D /r ; s:AVX512FP16, t:AVX512FP16, l:t1s, e:E3, w:W|R|R|R, x:IE|OE|UE|PE|DE +VCVTHF82PH ; Vfv{K}{z},Whv ; ; evex m:5 p:3 l:x w:0 0x1E /r ; s:AVX102, t:AVX10CONVERT, l:hv, e:E2, w:W|R|R, x:DE # 0x20 - 0x2F -VCVTSI2SH ; Vdq,Hdq,Ey ; ; evex m:5 p:2 l:i w:x 0x2A /r ; s:AVX512FP16, t:AVX512FP16, l:t1s, e:E3NF, w:W|R|R, a:IWO64 -VCVTTSH2SI ; Gy,Wsh{sae} ; ; evex m:5 p:2 l:i w:x 0x2C /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3NF, w:W|R, a:IWO64 -VCVTSH2SI ; Gy,Wsh{er} ; ; evex m:5 p:2 l:i w:x 0x2D /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3NF, w:W|R, a:IWO64 -VUCOMISH ; Vdq,Wsh{sae} ; Fv ; evex m:5 p:0 l:i w:0 0x2E /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3NF, w:R|R|W, f:ZF=m|PF=m|CF=m|OF=0|SF=0|AF=0 -VUCOMXSH ; Vdq,Wsh{sae} ; Fv ; evex m:5 p:3 l:0 w:0 0x2E /r ; s:AVX102, t:AVX10CMPSFP,l:t1s16, e:E3NF, w:R|R|W, f:CMPSFP -VCOMISH ; Vdq,Wsh{sae} ; Fv ; evex m:5 p:0 l:i w:0 0x2F /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3NF, w:R|R|W, f:ZF=m|PF=m|CF=m|OF=0|SF=0|AF=0 +VCVTSI2SH ; Vdq,Hdq,Ey ; ; evex m:5 p:2 l:i w:x 0x2A /r ; s:AVX512FP16, t:AVX512FP16, l:t1s, e:E3NF, w:W|R|R, a:IWO64, x:OE|PE +VCVTTSH2SI ; Gy,Wsh{sae} ; ; evex m:5 p:2 l:i w:x 0x2C /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3NF, w:W|R, a:IWO64, x:IE|PE +VCVTSH2SI ; Gy,Wsh{er} ; ; evex m:5 p:2 l:i w:x 0x2D /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3NF, w:W|R, a:IWO64, x:IE|PE +VUCOMISH ; Vdq,Wsh{sae} ; Fv ; evex m:5 p:0 l:i w:0 0x2E /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3NF, w:R|R|W, f:ZF=m|PF=m|CF=m|OF=0|SF=0|AF=0, x:IE|DE +VUCOMXSH ; Vdq,Wsh{sae} ; Fv ; evex m:5 p:2 l:i w:0 0x2E /r ; s:AVX102, t:AVX10CMPSFP,l:t1s16, e:E3NF, w:R|R|W, f:CMPSFP, x:IE|DE +VCOMISH ; Vdq,Wsh{sae} ; Fv ; evex m:5 p:0 l:i w:0 0x2F /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3NF, w:R|R|W, f:ZF=m|PF=m|CF=m|OF=0|SF=0|AF=0, x:IE|DE VCOMSBF16 ; Vdq,Wsh ; Fv ; evex m:5 p:1 l:i w:0 0x2F /r ; s:AVX102, t:AVX10BF16, l:t1s16, e:E10NF, w:R|R|W, f:ZF=m|PF=m|CF=m|OF=0|SF=0|AF=0 -VCOMXSH ; Vdq,Wsh{sae} ; Fv ; evex m:5 p:3 l:0 w:0 0x2F /r ; s:AVX102, t:AVX10CMPSFP,l:t1s16, e:E3NF, w:R|R|W, f:CMPSFP - -# 0x40 - 0x4F -VGETEXPPBF16 ; Vfv{K}{z},Wfv|B16 ; ; evex m:5 p:1 l:x w:0 0x42 /r ; s:AVX102, t:AVX10BF16, l:fv, e:E4, w:W|R|R +VCOMXSH ; Vdq,Wsh{sae} ; Fv ; evex m:5 p:2 l:i w:0 0x2F /r ; s:AVX102, t:AVX10CMPSFP,l:t1s16, e:E3NF, w:R|R|W, f:CMPSFP, x:IE|DE # 0x50 - 0x5F -VSQRTPH ; Vfv{K}{z},Wfv|B16{er} ; ; evex m:5 p:0 l:x w:0 0x51 /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:W|R|R +VSQRTPH ; Vfv{K}{z},Wfv|B16{er} ; ; evex m:5 p:0 l:x w:0 0x51 /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:W|R|R, x:IE|PE|DE VSQRTNEPBF16 ; Vfv{K}{z},Wfv|B16 ; ; evex m:5 p:1 l:x w:0 0x51 /r ; s:AVX102, t:AVX10BF16, l:fv, e:E4, w:W|R|R -VSQRTSH ; Vdq{K}{z},Hdq,Wsh{er} ; ; evex m:5 p:2 l:i w:0 0x51 /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3, w:W|R|R|R -VADDPH ; Vfv{K}{z},Hfv,Wfv|B16{er} ; ; evex m:5 p:0 l:x w:0 0x58 /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:W|R|R|R +VSQRTSH ; Vdq{K}{z},Hdq,Wsh{er} ; ; evex m:5 p:2 l:i w:0 0x51 /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3, w:W|R|R|R, x:IE|PE|DE +VADDPH ; Vfv{K}{z},Hfv,Wfv|B16{er} ; ; evex m:5 p:0 l:x w:0 0x58 /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:W|R|R|R, x:IE|OE|UE|PE|DE VADDNEPBF16 ; Vfv{K}{z},Hfv,Wfv|B16 ; ; evex m:5 p:1 l:x w:0 0x58 /r ; s:AVX102, t:AVX10BF16, l:fv, e:E4, w:W|R|R|R -VADDSH ; Vdq{K}{z},Hdq,Wsh{er} ; ; evex m:5 p:2 l:i w:0 0x58 /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3, w:W|R|R|R -VMULPH ; Vfv{K}{z},Hfv,Wfv|B16{er} ; ; evex m:5 p:0 l:x w:0 0x59 /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:W|R|R|R +VADDSH ; Vdq{K}{z},Hdq,Wsh{er} ; ; evex m:5 p:2 l:i w:0 0x58 /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3, w:W|R|R|R, x:IE|OE|UE|PE|DE +VMULPH ; Vfv{K}{z},Hfv,Wfv|B16{er} ; ; evex m:5 p:0 l:x w:0 0x59 /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:W|R|R|R, x:IE|OE|UE|PE|DE VMULNEPBF16 ; Vfv{K}{z},Hfv,Wfv|B16 ; ; evex m:5 p:1 l:x w:0 0x59 /r ; s:AVX102, t:AVX10BF16, l:fv, e:E4, w:W|R|R|R -VMULSH ; Vdq{K}{z},Hdq,Wsh{er} ; ; evex m:5 p:2 l:i w:0 0x59 /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3, w:W|R|R|R -VCVTPH2PD ; Vfv{K}{z},Wqv|B16{sae} ; ; evex m:5 p:0 l:x w:0 0x5A /r ; s:AVX512FP16, t:AVX512FP16, l:qv, e:E2, w:W|R|R -VCVTPD2PH ; Vdq{K}{z},Wfv|B64{er} ; ; evex m:5 p:1 l:x w:1 0x5A /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:W|R|R -VCVTSH2SD ; Vdq{K}{z},Hdq,Wsh{sae} ; ; evex m:5 p:2 l:i w:0 0x5A /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3, w:W|R|R|R -VCVTSD2SH ; Vdq{K}{z},Hdq,Wsd{er} ; ; evex m:5 p:3 l:i w:1 0x5A /r ; s:AVX512FP16, t:AVX512FP16, l:t1s, e:E3, w:W|R|R|R -VCVTDQ2PH ; Vhv{K}{z},Wfv|B32{er} ; ; evex m:5 p:0 l:x w:0 0x5B /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:W|R|R -VCVTQQ2PH ; Vdq{K}{z},Wfv|B64{er} ; ; evex m:5 p:0 l:x w:1 0x5B /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:W|R|R -VCVTPH2DQ ; Vfv{K}{z},Whv|B16{er} ; ; evex m:5 p:1 l:x w:0 0x5B /r ; s:AVX512FP16, t:AVX512FP16, l:hv, e:E2, w:W|R|R -VCVTTPH2DQ ; Vfv{K}{z},Whv|B16{sae} ; ; evex m:5 p:2 l:x w:0 0x5B /r ; s:AVX512FP16, t:AVX512FP16, l:hv, e:E2, w:W|R|R -VSUBPH ; Vfv{K}{z},Hfv,Wfv|B16{sae} ; ; evex m:5 p:0 l:x w:0 0x5C /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:W|R|R|R +VMULSH ; Vdq{K}{z},Hdq,Wsh{er} ; ; evex m:5 p:2 l:i w:0 0x59 /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3, w:W|R|R|R, x:IE|OE|UE|PE|DE +VCVTPH2PD ; Vfv{K}{z},Wqv|B16{sae} ; ; evex m:5 p:0 l:x w:0 0x5A /r ; s:AVX512FP16, t:AVX512FP16, l:qv, e:E2, w:W|R|R, x:IE|PE +VCVTPD2PH ; Vdq{K}{z},Wfv|B64{er} ; ; evex m:5 p:1 l:x w:1 0x5A /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:W|R|R, x:IE|OE|UE|PE|DE +VCVTSH2SD ; Vdq{K}{z},Hdq,Wsh{sae} ; ; evex m:5 p:2 l:i w:0 0x5A /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3, w:W|R|R|R, x:IE|DE +VCVTSD2SH ; Vdq{K}{z},Hdq,Wsd{er} ; ; evex m:5 p:3 l:i w:1 0x5A /r ; s:AVX512FP16, t:AVX512FP16, l:t1s, e:E3, w:W|R|R|R, x:IE|OE|UE|PE|DE +VCVTDQ2PH ; Vhv{K}{z},Wfv|B32{er} ; ; evex m:5 p:0 l:x w:0 0x5B /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:W|R|R, x:PE|OE +VCVTQQ2PH ; Vdq{K}{z},Wfv|B64{er} ; ; evex m:5 p:0 l:x w:1 0x5B /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:W|R|R, x:PE|OE +VCVTPH2DQ ; Vfv{K}{z},Whv|B16{er} ; ; evex m:5 p:1 l:x w:0 0x5B /r ; s:AVX512FP16, t:AVX512FP16, l:hv, e:E2, w:W|R|R, x:IE|PE +VCVTTPH2DQ ; Vfv{K}{z},Whv|B16{sae} ; ; evex m:5 p:2 l:x w:0 0x5B /r ; s:AVX512FP16, t:AVX512FP16, l:hv, e:E2, w:W|R|R, x:IE|PE +VSUBPH ; Vfv{K}{z},Hfv,Wfv|B16{sae} ; ; evex m:5 p:0 l:x w:0 0x5C /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:W|R|R|R, x:IE|OE|UE|PE|DE VSUBNEPBF16 ; Vfv{K}{z},Hfv,Wfv|B16 ; ; evex m:5 p:1 l:x w:0 0x5C /r ; s:AVX102, t:AVX10BF16, l:fv, e:E4, w:W|R|R|R -VSUBSH ; Vdq{K}{z},Hdq,Wsh{sae} ; ; evex m:5 p:2 l:i w:0 0x5C /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3, w:W|R|R|R -VMINPH ; Vfv{K}{z},Hfv,Wfv|B16{sae} ; ; evex m:5 p:0 l:x w:0 0x5D /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:W|R|R|R +VSUBSH ; Vdq{K}{z},Hdq,Wsh{sae} ; ; evex m:5 p:2 l:i w:0 0x5C /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3, w:W|R|R|R, x:IE|OE|UE|PE|DE +VMINPH ; Vfv{K}{z},Hfv,Wfv|B16{sae} ; ; evex m:5 p:0 l:x w:0 0x5D /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:W|R|R|R, x:IE|DE VMINPBF16 ; Vfv{K}{z},Hfv,Wfv|B16 ; ; evex m:5 p:1 l:x w:0 0x5D /r ; s:AVX102, t:AVX10BF16, l:fv, e:E4, w:W|R|R|R -VMINSH ; Vdq{K}{z},Hdq,Wsh{sae} ; ; evex m:5 p:2 l:i w:0 0x5D /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3, w:W|R|R|R -VDIVPH ; Vfv{K}{z},Hfv,Wfv|B16{er} ; ; evex m:5 p:0 l:x w:0 0x5E /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:W|R|R|R +VMINSH ; Vdq{K}{z},Hdq,Wsh{sae} ; ; evex m:5 p:2 l:i w:0 0x5D /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3, w:W|R|R|R, x:IE|DE +VDIVPH ; Vfv{K}{z},Hfv,Wfv|B16{er} ; ; evex m:5 p:0 l:x w:0 0x5E /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:W|R|R|R, x:IE|OE|UE|PE|DE|ZE VDIVNEPBF16 ; Vfv{K}{z},Hfv,Wfv|B16 ; ; evex m:5 p:1 l:x w:0 0x5E /r ; s:AVX102, t:AVX10BF16, l:fv, e:E4, w:W|R|R|R -VDIVSH ; Vdq{K}{z},Hdq,Wsh{er} ; ; evex m:5 p:2 l:i w:0 0x5E /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3, w:W|R|R|R -VMAXPH ; Vfv{K}{z},Hfv,Wfv|B16{sae} ; ; evex m:5 p:0 l:x w:0 0x5F /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:W|R|R|R +VDIVSH ; Vdq{K}{z},Hdq,Wsh{er} ; ; evex m:5 p:2 l:i w:0 0x5E /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3, w:W|R|R|R, x:IE|OE|UE|PE|DE|ZE +VMAXPH ; Vfv{K}{z},Hfv,Wfv|B16{sae} ; ; evex m:5 p:0 l:x w:0 0x5F /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:W|R|R|R, x:IE|DE VMAXPBF16 ; Vfv{K}{z},Hfv,Wfv|B16 ; ; evex m:5 p:1 l:x w:0 0x5F /r ; s:AVX102, t:AVX10BF16, l:fv, e:E4, w:W|R|R|R -VMAXSH ; Vdq{K}{z},Hdq,Wsh{sae} ; ; evex m:5 p:2 l:i w:0 0x5F /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3, w:W|R|R|R +VMAXSH ; Vdq{K}{z},Hdq,Wsh{sae} ; ; evex m:5 p:2 l:i w:0 0x5F /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3, w:W|R|R|R, x:IE|DE # 0x60 - 0x6F -VCVTTPH2IBS ; Vfv{K}{z},Wfv|B16{sae} ; ; evex m:5 p:0 l:x w:0 0x68 /r ; s:AVX102, t:AVX10SCONVERT, l:fv, e:E2, w:W|R|R -VCVTTPS2IBS ; Vfv{K}{z},Wfv|B32{sae} ; ; evex m:5 p:1 l:x w:0 0x68 /r ; s:AVX102, t:AVX10SCONVERT, l:fv, e:E2, w:W|R|R +VCVTTPH2IBS ; Vfv{K}{z},Wfv|B16{sae} ; ; evex m:5 p:0 l:x w:0 0x68 /r ; s:AVX102, t:AVX10SCONVERT, l:fv, e:E2, w:W|R|R, x:IE|PE +VCVTTPS2IBS ; Vfv{K}{z},Wfv|B32{sae} ; ; evex m:5 p:1 l:x w:0 0x68 /r ; s:AVX102, t:AVX10SCONVERT, l:fv, e:E2, w:W|R|R, x:IE|PE VCVTTNEBF162IBS ; Vfv{K}{z},Wfv|B16 ; ; evex m:5 p:3 l:x w:0 0x68 /r ; s:AVX102, t:AVX10SCONVERT, l:fv, e:E4, w:W|R|R -VCVTPH2IBS ; Vfv{K}{z},Wfv|B16{er} ; ; evex m:5 p:0 l:x w:0 0x69 /r ; s:AVX102, t:AVX10SCONVERT, l:fv, e:E2, w:W|R|R -VCVTPS2IBS ; Vfv{K}{z},Wfv|B32{er} ; ; evex m:5 p:1 l:x w:0 0x69 /r ; s:AVX102, t:AVX10SCONVERT, l:fv, e:E2, w:W|R|R +VCVTPH2IBS ; Vfv{K}{z},Wfv|B16{er} ; ; evex m:5 p:0 l:x w:0 0x69 /r ; s:AVX102, t:AVX10SCONVERT, l:fv, e:E2, w:W|R|R, x:IE|PE +VCVTPS2IBS ; Vfv{K}{z},Wfv|B32{er} ; ; evex m:5 p:1 l:x w:0 0x69 /r ; s:AVX102, t:AVX10SCONVERT, l:fv, e:E2, w:W|R|R, x:IE|PE VCVTNEBF162IBS ; Vfv{K}{z},Wfv|B16 ; ; evex m:5 p:3 l:x w:0 0x69 /r ; s:AVX102, t:AVX10SCONVERT, l:fv, e:E4, w:W|R|R -VCVTTPH2IUBS ; Vfv{K}{z},Wfv|B16{sae} ; ; evex m:5 p:0 l:x w:0 0x6A /r ; s:AVX102, t:AVX10SCONVERT, l:fv, e:E2, w:W|R|R -VCVTTPS2IUBS ; Vfv{K}{z},Wfv|B32{sae} ; ; evex m:5 p:1 l:x w:0 0x6A /r ; s:AVX102, t:AVX10SCONVERT, l:fv, e:E2, w:W|R|R +VCVTTPH2IUBS ; Vfv{K}{z},Wfv|B16{sae} ; ; evex m:5 p:0 l:x w:0 0x6A /r ; s:AVX102, t:AVX10SCONVERT, l:fv, e:E2, w:W|R|R, x:IE|PE +VCVTTPS2IUBS ; Vfv{K}{z},Wfv|B32{sae} ; ; evex m:5 p:1 l:x w:0 0x6A /r ; s:AVX102, t:AVX10SCONVERT, l:fv, e:E2, w:W|R|R, x:IE|PE VCVTTNEBF162IUBS ; Vfv{K}{z},Wfv|B16 ; ; evex m:5 p:3 l:x w:0 0x6A /r ; s:AVX102, t:AVX10SCONVERT, l:fv, e:E4, w:W|R|R -VCVTPH2IUBS ; Vfv{K}{z},Wfv|B16{er} ; ; evex m:5 p:0 l:x w:0 0x6B /r ; s:AVX102, t:AVX10SCONVERT, l:fv, e:E2, w:W|R|R -VCVTPS2IUBS ; Vfv{K}{z},Wfv|B32{er} ; ; evex m:5 p:1 l:x w:0 0x6B /r ; s:AVX102, t:AVX10SCONVERT, l:fv, e:E2, w:W|R|R +VCVTPH2IUBS ; Vfv{K}{z},Wfv|B16{er} ; ; evex m:5 p:0 l:x w:0 0x6B /r ; s:AVX102, t:AVX10SCONVERT, l:fv, e:E2, w:W|R|R, x:IE|PE +VCVTPS2IUBS ; Vfv{K}{z},Wfv|B32{er} ; ; evex m:5 p:1 l:x w:0 0x6B /r ; s:AVX102, t:AVX10SCONVERT, l:fv, e:E2, w:W|R|R, x:IE|PE VCVTNEBF162IUBS ; Vfv{K}{z},Wfv|B16 ; ; evex m:5 p:3 l:x w:0 0x6B /r ; s:AVX102, t:AVX10SCONVERT, l:fv, e:E4, w:W|R|R -VCVTTPS2UDQS ; Vfv{K}{z},Wfv|B32{sae} ; ; evex m:5 p:0 l:x w:0 0x6C /r ; s:AVX102, t:AVX10SCONVERT, l:fv, e:E2, w:W|R|R -VCVTTPD2UDQS ; Vhv{K}{z},Wfv|B64{sae} ; ; evex m:5 p:0 l:x w:1 0x6C /r ; s:AVX102, t:AVX10SCONVERT, l:fv, e:E2, w:W|R|R -VCVTTPS2UQQS ; Vfv{K}{z},Whv|B32{sae} ; ; evex m:5 p:1 l:x w:0 0x6C /r ; s:AVX102, t:AVX10SCONVERT, l:hv, e:E2, w:W|R|R -VCVTTPD2UQQS ; Vfv{K}{z},Wfv|B64{sae} ; ; evex m:5 p:1 l:x w:1 0x6C /r ; s:AVX102, t:AVX10SCONVERT, l:fv, e:E2, w:W|R|R -VCVTTSS2USIS ; Gy,Wss{sae} ; ; evex m:5 p:2 l:i w:x 0x6C /r ; s:AVX102, t:AVX10SCONVERT, l:t1s, e:E3NF, w:W|R, a:IWO64 -VCVTTSD2USIS ; Gy,Wsd{sae} ; ; evex m:5 p:3 l:i w:x 0x6C /r ; s:AVX102, t:AVX10SCONVERT, l:t1s, e:E3NF, w:W|R, a:IWO64 -VCVTTPS2DQS ; Vfv{K}{z},Wfv|B32{sae} ; ; evex m:5 p:0 l:x w:0 0x6D /r ; s:AVX102, t:AVX10SCONVERT, l:fv, e:E2, w:W|R|R -VCVTTPD2DQS ; Vhv{K}{z},Wfv|B64{sae} ; ; evex m:5 p:0 l:x w:1 0x6D /r ; s:AVX102, t:AVX10SCONVERT, l:fv, e:E2, w:W|R|R -VCVTTPS2QQS ; Vfv{K}{z},Whv|B32{sae} ; ; evex m:5 p:1 l:x w:0 0x6D /r ; s:AVX102, t:AVX10SCONVERT, l:hv, e:E2, w:W|R|R -VCVTTPD2QQS ; Vfv{K}{z},Wfv|B64{sae} ; ; evex m:5 p:1 l:x w:1 0x6D /r ; s:AVX102, t:AVX10SCONVERT, l:fv, e:E2, w:W|R|R -VCVTTSS2SIS ; Gy,Wss{sae} ; ; evex m:5 p:2 l:i w:x 0x6D /r ; s:AVX102, t:AVX10SCONVERT, l:t1s, e:E3NF, w:W|R, a:IWO64 -VCVTTSD2SIS ; Gy,Wsd{sae} ; ; evex m:5 p:3 l:i w:x 0x6D /r ; s:AVX102, t:AVX10SCONVERT, l:t1s, e:E3NF, w:W|R, a:IWO64 +VCVTTPS2UDQS ; Vfv{K}{z},Wfv|B32{sae} ; ; evex m:5 p:0 l:x w:0 0x6C /r ; s:AVX102, t:AVX10SCONVERT, l:fv, e:E2, w:W|R|R, x:IE|PE +VCVTTPD2UDQS ; Vhv{K}{z},Wfv|B64{sae} ; ; evex m:5 p:0 l:x w:1 0x6C /r ; s:AVX102, t:AVX10SCONVERT, l:fv, e:E2, w:W|R|R, x:IE|PE +VCVTTPS2UQQS ; Vfv{K}{z},Whv|B32{sae} ; ; evex m:5 p:1 l:x w:0 0x6C /r ; s:AVX102, t:AVX10SCONVERT, l:hv, e:E2, w:W|R|R, x:IE|PE +VCVTTPD2UQQS ; Vfv{K}{z},Wfv|B64{sae} ; ; evex m:5 p:1 l:x w:1 0x6C /r ; s:AVX102, t:AVX10SCONVERT, l:fv, e:E2, w:W|R|R, x:IE|PE +VCVTTSS2USIS ; Gy,Wss{sae} ; ; evex m:5 p:2 l:i w:x 0x6C /r ; s:AVX102, t:AVX10SCONVERT, l:t1s, e:E3NF, w:W|R, a:IWO64, x:IE|PE +VCVTTSD2USIS ; Gy,Wsd{sae} ; ; evex m:5 p:3 l:i w:x 0x6C /r ; s:AVX102, t:AVX10SCONVERT, l:t1s, e:E3NF, w:W|R, a:IWO64, x:IE|PE +VCVTTPS2DQS ; Vfv{K}{z},Wfv|B32{sae} ; ; evex m:5 p:0 l:x w:0 0x6D /r ; s:AVX102, t:AVX10SCONVERT, l:fv, e:E2, w:W|R|R, x:IE|PE +VCVTTPD2DQS ; Vhv{K}{z},Wfv|B64{sae} ; ; evex m:5 p:0 l:x w:1 0x6D /r ; s:AVX102, t:AVX10SCONVERT, l:fv, e:E2, w:W|R|R, x:IE|PE +VCVTTPS2QQS ; Vfv{K}{z},Whv|B32{sae} ; ; evex m:5 p:1 l:x w:0 0x6D /r ; s:AVX102, t:AVX10SCONVERT, l:hv, e:E2, w:W|R|R, x:IE|PE +VCVTTPD2QQS ; Vfv{K}{z},Wfv|B64{sae} ; ; evex m:5 p:1 l:x w:1 0x6D /r ; s:AVX102, t:AVX10SCONVERT, l:fv, e:E2, w:W|R|R, x:IE|PE +VCVTTSS2SIS ; Gy,Wss{sae} ; ; evex m:5 p:2 l:i w:x 0x6D /r ; s:AVX102, t:AVX10SCONVERT, l:t1s, e:E3NF, w:W|R, a:IWO64, x:IE|PE +VCVTTSD2SIS ; Gy,Wsd{sae} ; ; evex m:5 p:3 l:i w:x 0x6D /r ; s:AVX102, t:AVX10SCONVERT, l:t1s, e:E3NF, w:W|R, a:IWO64, x:IE|PE VMOVW ; Vdq,Mw ; ; evex m:5 p:1 l:0 w:i 0x6E /r:mem ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E9NF, w:W|R VMOVW ; Vdq,Rd ; ; evex m:5 p:1 l:0 w:i 0x6E /r:reg ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E9NF, w:W|R VMOVW ; Vdq,Ww ; ; evex m:5 p:2 l:0 w:0 0x6E /r ; s:AVX102, t:AVX10PARTCOPY, l:t1s16, e:E9NF, w:W|R +VMOVRSD ; Vfv{K}{z},Wfv ; ; evex m:5 p:2 l:x w:0 0x6F /r:mem ; s:MOVRS, t:DATAXFER, l:fvm, e:E4, w:W|R|R +VMOVRSB ; Vfv{K}{z},Wfv ; ; evex m:5 p:3 l:x w:0 0x6F /r:mem ; s:MOVRS, t:DATAXFER, l:fvm, e:E4, w:W|R|R +VMOVRSQ ; Vfv{K}{z},Wfv ; ; evex m:5 p:2 l:x w:1 0x6F /r:mem ; s:MOVRS, t:DATAXFER, l:fvm, e:E4, w:W|R|R +VMOVRSW ; Vfv{K}{z},Wfv ; ; evex m:5 p:3 l:x w:1 0x6F /r:mem ; s:MOVRS, t:DATAXFER, l:fvm, e:E4, w:W|R|R + # 0x70 - 0x7F -VCVTBIASPH2BF8S ; Vhv{K}{z},Hfv,Wfv|B16 ; ; evex m:5 p:0 l:x w:0 0x74 /r ; s:AVX102, t:AVX10CONVERT, l:fv, e:E4NF, w:W|R|R|R -VCVTNEPH2BF8S ; Vhv{K}{z},Wfv|B16 ; ; evex m:5 p:2 l:x w:0 0x74 /r ; s:AVX102, t:AVX10CONVERT, l:fv, e:E4NF, w:W|R|R -VCVTNE2PH2BF8S ; Vfv{K}{z},Hfv,Wfv|B16 ; ; evex m:5 p:3 l:x w:0 0x74 /r ; s:AVX102, t:AVX10CONVERT, l:fv, e:E4NF, w:W|R|R|R -VCVTTPH2UDQ ; Vfv{K}{z},Whv|B16{sae} ; ; evex m:5 p:0 l:x w:0 0x78 /r ; s:AVX512FP16, t:AVX512FP16, l:hv, e:E2, w:W|R|R -VCVTTPH2UQQ ; Vfv{K}{z},Wqv|B16{sae} ; ; evex m:5 p:1 l:x w:0 0x78 /r ; s:AVX512FP16, t:AVX512FP16, l:qv, e:E2, w:W|R|R -VCVTTSH2USI ; Gy,Wsh{sae} ; ; evex m:5 p:2 l:i w:0 0x78 /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3NF, w:W|R, a:IWO64 -VCVTPH2UDQ ; Vfv{K}{z},Whv|B16{er} ; ; evex m:5 p:0 l:x w:0 0x79 /r ; s:AVX512FP16, t:AVX512FP16, l:hv, e:E2, w:W|R|R -VCVTPH2UQQ ; Vfv{K}{z},Wqv|B16{er} ; ; evex m:5 p:1 l:x w:0 0x79 /r ; s:AVX512FP16, t:AVX512FP16, l:qv, e:E2, w:W|R|R -VCVTSH2USI ; Gy,Wsh{er} ; ; evex m:5 p:2 l:i w:x 0x79 /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3NF, w:W|R, a:IWO64 -VCVTUDQ2PH ; Vhv{K}{z},Wfv|B32{er} ; ; evex m:5 p:3 l:x w:0 0x7A /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:W|R|R -VCVTUQQ2PH ; Vqv{K}{z},Wfv|B64{er} ; ; evex m:5 p:3 l:x w:1 0x7A /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:W|R|R -VCVTTPH2QQ ; Vfv{K}{z},Wqv|B16{sae} ; ; evex m:5 p:1 l:x w:0 0x7A /r ; s:AVX512FP16, t:AVX512FP16, l:qv, e:E2, w:W|R|R -VCVTPH2QQ ; Vfv{K}{z},Wqv|B16{er} ; ; evex m:5 p:1 l:x w:0 0x7B /r ; s:AVX512FP16, t:AVX512FP16, l:qv, e:E2, w:W|R|R -VCVTUSI2SH ; Vdq,Hdq,Ey{er} ; ; evex m:5 p:2 l:i w:x 0x7B /r ; s:AVX512FP16, t:AVX512FP16, l:t1s, e:E3NF, w:W|R|R, a:IWO64 -VCVTTPH2UW ; Vfv{K}{z},Wfv|B16{sae} ; ; evex m:5 p:0 l:x w:0 0x7C /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:W|R|R -VCVTTPH2W ; Vfv{K}{z},Wfv|B16{sae} ; ; evex m:5 p:1 l:x w:0 0x7C /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:W|R|R -VCVTPH2UW ; Vfv{K}{z},Wfv|B16{er} ; ; evex m:5 p:0 l:x w:0 0x7D /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:W|R|R -VCVTPH2W ; Vfv{K}{z},Wfv|B16{er} ; ; evex m:5 p:1 l:x w:0 0x7D /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:W|R|R -VCVTW2PH ; Vfv{K}{z},Wfv|B16{er} ; ; evex m:5 p:2 l:x w:0 0x7D /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:W|R|R -VCVTUW2PH ; Vfv{K}{z},Wfv|B16{er} ; ; evex m:5 p:3 l:x w:0 0x7D /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:W|R|R +VCVTBIASPH2BF8S ; Vhv{K}{z},Hfv,Wfv|B16 ; ; evex m:5 p:0 l:x w:0 0x74 /r ; s:AVX102, t:AVX10CONVERT, l:fv, e:E4NF, w:W|R|R|R, x:IE|OE|UE|PE|DE +VCVTNEPH2BF8S ; Vhv{K}{z},Wfv|B16 ; ; evex m:5 p:2 l:x w:0 0x74 /r ; s:AVX102, t:AVX10CONVERT, l:fv, e:E4NF, w:W|R|R, x:IE|OE|UE|PE|DE +VCVTNE2PH2BF8S ; Vfv{K}{z},Hfv,Wfv|B16 ; ; evex m:5 p:3 l:x w:0 0x74 /r ; s:AVX102, t:AVX10CONVERT, l:fv, e:E4NF, w:W|R|R|R, x:IE|OE|UE|PE|DE +VCVTTPH2UDQ ; Vfv{K}{z},Whv|B16{sae} ; ; evex m:5 p:0 l:x w:0 0x78 /r ; s:AVX512FP16, t:AVX512FP16, l:hv, e:E2, w:W|R|R, x:IE|PE +VCVTTPH2UQQ ; Vfv{K}{z},Wqv|B16{sae} ; ; evex m:5 p:1 l:x w:0 0x78 /r ; s:AVX512FP16, t:AVX512FP16, l:qv, e:E2, w:W|R|R, x:IE|PE +VCVTTSH2USI ; Gy,Wsh{sae} ; ; evex m:5 p:2 l:i w:0 0x78 /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3NF, w:W|R, a:IWO64, x:IE|PE +VCVTPH2UDQ ; Vfv{K}{z},Whv|B16{er} ; ; evex m:5 p:0 l:x w:0 0x79 /r ; s:AVX512FP16, t:AVX512FP16, l:hv, e:E2, w:W|R|R, x:IE|PE +VCVTPH2UQQ ; Vfv{K}{z},Wqv|B16{er} ; ; evex m:5 p:1 l:x w:0 0x79 /r ; s:AVX512FP16, t:AVX512FP16, l:qv, e:E2, w:W|R|R, x:IE|PE +VCVTSH2USI ; Gy,Wsh{er} ; ; evex m:5 p:2 l:i w:x 0x79 /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3NF, w:W|R, a:IWO64, x:IE|PE +VCVTUDQ2PH ; Vhv{K}{z},Wfv|B32{er} ; ; evex m:5 p:3 l:x w:0 0x7A /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:W|R|R, x:PE|OE +VCVTUQQ2PH ; Vqv{K}{z},Wfv|B64{er} ; ; evex m:5 p:3 l:x w:1 0x7A /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:W|R|R, x:PE|OE +VCVTTPH2QQ ; Vfv{K}{z},Wqv|B16{sae} ; ; evex m:5 p:1 l:x w:0 0x7A /r ; s:AVX512FP16, t:AVX512FP16, l:qv, e:E2, w:W|R|R, x:IE|PE +VCVTPH2QQ ; Vfv{K}{z},Wqv|B16{er} ; ; evex m:5 p:1 l:x w:0 0x7B /r ; s:AVX512FP16, t:AVX512FP16, l:qv, e:E2, w:W|R|R, x:IE|PE +VCVTUSI2SH ; Vdq,Hdq,Ey{er} ; ; evex m:5 p:2 l:i w:x 0x7B /r ; s:AVX512FP16, t:AVX512FP16, l:t1s, e:E3NF, w:W|R|R, a:IWO64, x:IE|PE +VCVTTPH2UW ; Vfv{K}{z},Wfv|B16{sae} ; ; evex m:5 p:0 l:x w:0 0x7C /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:W|R|R, x:IE|PE +VCVTTPH2W ; Vfv{K}{z},Wfv|B16{sae} ; ; evex m:5 p:1 l:x w:0 0x7C /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:W|R|R, x:IE|PE +VCVTPH2UW ; Vfv{K}{z},Wfv|B16{er} ; ; evex m:5 p:0 l:x w:0 0x7D /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:W|R|R, x:IE|PE +VCVTPH2W ; Vfv{K}{z},Wfv|B16{er} ; ; evex m:5 p:1 l:x w:0 0x7D /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:W|R|R, x:IE|PE +VCVTW2PH ; Vfv{K}{z},Wfv|B16{er} ; ; evex m:5 p:2 l:x w:0 0x7D /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:W|R|R, x:PE +VCVTUW2PH ; Vfv{K}{z},Wfv|B16{er} ; ; evex m:5 p:3 l:x w:0 0x7D /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:W|R|R, x:PE|OE VMOVW ; Mw,Vdq ; ; evex m:5 p:1 l:0 w:i 0x7E /r:mem ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E9NF, w:W|R VMOVW ; Rd,Vdq ; ; evex m:5 p:1 l:0 w:i 0x7E /r:reg ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E9NF, w:W|R VMOVW ; Ww,Vdq ; ; evex m:5 p:2 l:0 w:0 0x7E /r ; s:AVX102, t:AVX10PARTCOPY, l:t1s16, e:E9NF, w:W|R diff --git a/isagenerator/instructions/table_evex_6.dat b/isagenerator/instructions/table_evex_6.dat index bfa47d6..4a962bb 100644 --- a/isagenerator/instructions/table_evex_6.dat +++ b/isagenerator/instructions/table_evex_6.dat @@ -4,17 +4,18 @@ # # 0x10 - 0x1F -VCVTSH2SS ; Vdq{K}{z},Hdq,Wsh{sae} ; ; evex m:6 p:0 l:i w:0 0x13 /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3, w:W|R|R|R -VCVTPH2PSX ; Vfv{K}{z},Whv|B16{sae} ; ; evex m:6 p:1 l:x w:0 0x13 /r ; s:AVX512FP16, t:AVX512FP16, l:hv, e:E2, w:W|R|R +VCVTSH2SS ; Vdq{K}{z},Hdq,Wsh{sae} ; ; evex m:6 p:0 l:i w:0 0x13 /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3, w:W|R|R|R, x:IE|DE +VCVTPH2PSX ; Vfv{K}{z},Whv|B16{sae} ; ; evex m:6 p:1 l:x w:0 0x13 /r ; s:AVX512FP16, t:AVX512FP16, l:hv, e:E2, w:W|R|R, x:IE|DE # 0x20 - 0x2F VSCALEFPBF16 ; Vfv{K}{z},Hfv,Wfv|B16 ; ; evex m:6 p:0 l:x w:0 0x2C /r ; s:AVX102, t:AVX10BF16, l:fv, e:E4, w:W|R|R|R -VSCALEFPH ; Vfv{K}{z},Hfv,Wfv|B16{er} ; ; evex m:6 p:1 l:x w:0 0x2C /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:W|R|R|R -VSCALEFSH ; Vdq{K}{z},Hdq,Wsh{er} ; ; evex m:6 p:1 l:i w:0 0x2D /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3, w:W|R|R|R +VSCALEFPH ; Vfv{K}{z},Hfv,Wfv|B16{er} ; ; evex m:6 p:1 l:x w:0 0x2C /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:W|R|R|R, x:IE|OE|UE|PE|DE +VSCALEFSH ; Vdq{K}{z},Hdq,Wsh{er} ; ; evex m:6 p:1 l:i w:0 0x2D /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3, w:W|R|R|R, x:IE|OE|UE|PE|DE # 0x40 - 0x4F -VGETEXPPH ; Vfv{K}{z},Wfv|B16{sae} ; ; evex m:6 p:1 l:x w:0 0x42 /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:W|R|R -VGETEXPSH ; Vdq{K}{z},Hdq,Wsh{sae} ; ; evex m:6 p:1 l:i w:0 0x43 /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3, w:W|R|R|R +VGETEXPPBF16 ; Vfv{K}{z},Wfv|B16 ; ; evex m:6 p:0 l:x w:0 0x42 /r ; s:AVX102, t:AVX10BF16, l:fv, e:E4, w:W|R|R +VGETEXPPH ; Vfv{K}{z},Wfv|B16{sae} ; ; evex m:6 p:1 l:x w:0 0x42 /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:W|R|R, x:IE|DE +VGETEXPSH ; Vdq{K}{z},Hdq,Wsh{sae} ; ; evex m:6 p:1 l:i w:0 0x43 /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3, w:W|R|R|R, x:IE|DE VRCPPBF16 ; Vfv{K}{z},Wfv|B16 ; ; evex m:6 p:0 l:x w:0 0x4C /r ; s:AVX102, t:AVX10BF16, l:fv, e:E4, w:W|R|R VRCPPH ; Vfv{K}{z},Wfv|B16 ; ; evex m:6 p:1 l:x w:0 0x4C /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E4, w:W|R|R VRCPSH ; Vdq{K}{z},Hdq,Wsh ; ; evex m:6 p:1 l:i w:0 0x4D /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E10, w:W|R|R|R @@ -23,61 +24,61 @@ VRSQRTPH ; Vfv{K}{z},Wfv|B16 ; ; evex m:6 p:1 l:x w:0 VRSQRTSH ; Vdq{K}{z},Hdq,Wsh ; ; evex m:6 p:1 l:i w:0 0x4F /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E10, w:W|R|R|R # 0x50 - 0x5F -VFMADDCPH ; Vfv{K}{z},Hfv,Wfv|B32{er} ; ; evex m:6 p:2 l:x w:0 0x56 /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E4S, w:RW|R|R|R -VFCMADDCPH ; Vfv{K}{z},Hfv,Wfv|B32{er} ; ; evex m:6 p:3 l:x w:0 0x56 /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E4S, w:RW|R|R|R -VFMADDCSH ; Vdq{K}{z},Hdq,Wd{er} ; ; evex m:6 p:2 l:i w:0 0x57 /r ; s:AVX512FP16, t:AVX512FP16, l:t1s, e:E10S, w:RW|R|R|R -VFCMADDCSH ; Vdq{K}{z},Hdq,Wd{er} ; ; evex m:6 p:3 l:i w:0 0x57 /r ; s:AVX512FP16, t:AVX512FP16, l:t1s, e:E10S, w:RW|R|R|R +VFMADDCPH ; Vfv{K}{z},Hfv,Wfv|B32{er} ; ; evex m:6 p:2 l:x w:0 0x56 /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E4S, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFCMADDCPH ; Vfv{K}{z},Hfv,Wfv|B32{er} ; ; evex m:6 p:3 l:x w:0 0x56 /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E4S, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFMADDCSH ; Vdq{K}{z},Hdq,Wd{er} ; ; evex m:6 p:2 l:i w:0 0x57 /r ; s:AVX512FP16, t:AVX512FP16, l:t1s, e:E10S, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFCMADDCSH ; Vdq{K}{z},Hdq,Wd{er} ; ; evex m:6 p:3 l:i w:0 0x57 /r ; s:AVX512FP16, t:AVX512FP16, l:t1s, e:E10S, w:RW|R|R|R, x:IE|OE|UE|PE|DE # 0x90 - 0x9F -VFMADDSUB132PH ; Vfv{K}{z},Hfv,Wfv|B16{er} ; ; evex m:6 p:1 l:x w:0 0x96 /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:RW|R|R|R -VFMSUBADD132PH ; Vfv{K}{z},Hfv,Wfv|B16{er} ; ; evex m:6 p:1 l:x w:0 0x97 /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:RW|R|R|R +VFMADDSUB132PH ; Vfv{K}{z},Hfv,Wfv|B16{er} ; ; evex m:6 p:1 l:x w:0 0x96 /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFMSUBADD132PH ; Vfv{K}{z},Hfv,Wfv|B16{er} ; ; evex m:6 p:1 l:x w:0 0x97 /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE VFMADD132NEPBF16 ; Vfv{K}{z},Hfv,Wfv|B16 ; ; evex m:6 p:0 l:x w:0 0x98 /r ; s:AVX102, t:AVX10BF16, l:fv, e:E4, w:RW|R|R|R -VFMADD132PH ; Vfv{K}{z},Hfv,Wfv|B16{er} ; ; evex m:6 p:1 l:x w:0 0x98 /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:RW|R|R|R -VFMADD132SH ; Vdq{K}{z},Hdq,Wsh{er} ; ; evex m:6 p:1 l:i w:0 0x99 /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3, w:RW|R|R|R +VFMADD132PH ; Vfv{K}{z},Hfv,Wfv|B16{er} ; ; evex m:6 p:1 l:x w:0 0x98 /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFMADD132SH ; Vdq{K}{z},Hdq,Wsh{er} ; ; evex m:6 p:1 l:i w:0 0x99 /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3, w:RW|R|R|R, x:IE|OE|UE|PE|DE VFMSUB132NEPBF16 ; Vfv{K}{z},Hfv,Wfv|B16 ; ; evex m:6 p:0 l:x w:0 0x9A /r ; s:AVX102, t:AVX10BF16, l:fv, e:E4, w:RW|R|R|R -VFMSUB132PH ; Vfv{K}{z},Hfv,Wfv|B16{er} ; ; evex m:6 p:1 l:x w:0 0x9A /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:RW|R|R|R -VFMSUB132SH ; Vdq{K}{z},Hdq,Wsh{er} ; ; evex m:6 p:1 l:i w:0 0x9B /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3, w:RW|R|R|R +VFMSUB132PH ; Vfv{K}{z},Hfv,Wfv|B16{er} ; ; evex m:6 p:1 l:x w:0 0x9A /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFMSUB132SH ; Vdq{K}{z},Hdq,Wsh{er} ; ; evex m:6 p:1 l:i w:0 0x9B /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3, w:RW|R|R|R, x:IE|OE|UE|PE|DE VFNMADD132NEPBF16 ; Vfv{K}{z},Hfv,Wfv|B16 ; ; evex m:6 p:0 l:x w:0 0x9C /r ; s:AVX102, t:AVX10BF16, l:fv, e:E4, w:RW|R|R|R -VFNMADD132PH ; Vfv{K}{z},Hfv,Wfv|B16{er} ; ; evex m:6 p:1 l:x w:0 0x9C /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:RW|R|R|R -VFNMADD132SH ; Vdq{K}{z},Hdq,Wsh{er} ; ; evex m:6 p:1 l:i w:0 0x9D /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3, w:RW|R|R|R +VFNMADD132PH ; Vfv{K}{z},Hfv,Wfv|B16{er} ; ; evex m:6 p:1 l:x w:0 0x9C /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFNMADD132SH ; Vdq{K}{z},Hdq,Wsh{er} ; ; evex m:6 p:1 l:i w:0 0x9D /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3, w:RW|R|R|R, x:IE|OE|UE|PE|DE VFNMSUB132NEPBF16 ; Vfv{K}{z},Hfv,Wfv|B16 ; ; evex m:6 p:0 l:x w:0 0x9E /r ; s:AVX102, t:AVX10BF16, l:fv, e:E4, w:RW|R|R|R -VFNMSUB132PH ; Vfv{K}{z},Hfv,Wfv|B16{er} ; ; evex m:6 p:1 l:x w:0 0x9E /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:RW|R|R|R -VFNMSUB132SH ; Vdq{K}{z},Hdq,Wsh{er} ; ; evex m:6 p:1 l:i w:0 0x9F /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3, w:RW|R|R|R +VFNMSUB132PH ; Vfv{K}{z},Hfv,Wfv|B16{er} ; ; evex m:6 p:1 l:x w:0 0x9E /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFNMSUB132SH ; Vdq{K}{z},Hdq,Wsh{er} ; ; evex m:6 p:1 l:i w:0 0x9F /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3, w:RW|R|R|R, x:IE|OE|UE|PE|DE # 0xA0 - 0xAF -VFMADDSUB213PH ; Vfv{K}{z},Hfv,Wfv|B16{er} ; ; evex m:6 p:1 l:x w:0 0xA6 /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:RW|R|R|R -VFMSUBADD213PH ; Vfv{K}{z},Hfv,Wfv|B16{er} ; ; evex m:6 p:1 l:x w:0 0xA7 /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:RW|R|R|R +VFMADDSUB213PH ; Vfv{K}{z},Hfv,Wfv|B16{er} ; ; evex m:6 p:1 l:x w:0 0xA6 /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFMSUBADD213PH ; Vfv{K}{z},Hfv,Wfv|B16{er} ; ; evex m:6 p:1 l:x w:0 0xA7 /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE VFMADD213NEPBF16 ; Vfv{K}{z},Hfv,Wfv|B16 ; ; evex m:6 p:0 l:x w:0 0xA8 /r ; s:AVX102, t:AVX10BF16, l:fv, e:E4, w:RW|R|R|R -VFMADD213PH ; Vfv{K}{z},Hfv,Wfv|B16{er} ; ; evex m:6 p:1 l:x w:0 0xA8 /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:RW|R|R|R -VFMADD213SH ; Vdq{K}{z},Hdq,Wsh{er} ; ; evex m:6 p:1 l:i w:0 0xA9 /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3, w:RW|R|R|R +VFMADD213PH ; Vfv{K}{z},Hfv,Wfv|B16{er} ; ; evex m:6 p:1 l:x w:0 0xA8 /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFMADD213SH ; Vdq{K}{z},Hdq,Wsh{er} ; ; evex m:6 p:1 l:i w:0 0xA9 /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3, w:RW|R|R|R, x:IE|OE|UE|PE|DE VFMSUB213NEPBF16 ; Vfv{K}{z},Hfv,Wfv|B16 ; ; evex m:6 p:0 l:x w:0 0xAA /r ; s:AVX102, t:AVX10BF16, l:fv, e:E4, w:RW|R|R|R -VFMSUB213PH ; Vfv{K}{z},Hfv,Wfv|B16{er} ; ; evex m:6 p:1 l:x w:0 0xAA /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:RW|R|R|R -VFMSUB213SH ; Vdq{K}{z},Hdq,Wsh{er} ; ; evex m:6 p:1 l:i w:0 0xAB /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3, w:RW|R|R|R +VFMSUB213PH ; Vfv{K}{z},Hfv,Wfv|B16{er} ; ; evex m:6 p:1 l:x w:0 0xAA /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFMSUB213SH ; Vdq{K}{z},Hdq,Wsh{er} ; ; evex m:6 p:1 l:i w:0 0xAB /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3, w:RW|R|R|R, x:IE|OE|UE|PE|DE VFNMADD213NEPBF16 ; Vfv{K}{z},Hfv,Wfv|B16 ; ; evex m:6 p:0 l:x w:0 0xAC /r ; s:AVX102, t:AVX10BF16, l:fv, e:E4, w:RW|R|R|R -VFNMADD213PH ; Vfv{K}{z},Hfv,Wfv|B16{er} ; ; evex m:6 p:1 l:x w:0 0xAC /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:RW|R|R|R -VFNMADD213SH ; Vdq{K}{z},Hdq,Wsh{er} ; ; evex m:6 p:1 l:i w:0 0xAD /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3, w:RW|R|R|R +VFNMADD213PH ; Vfv{K}{z},Hfv,Wfv|B16{er} ; ; evex m:6 p:1 l:x w:0 0xAC /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFNMADD213SH ; Vdq{K}{z},Hdq,Wsh{er} ; ; evex m:6 p:1 l:i w:0 0xAD /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3, w:RW|R|R|R, x:IE|OE|UE|PE|DE VFNMSUB213NEPBF16 ; Vfv{K}{z},Hfv,Wfv|B16 ; ; evex m:6 p:0 l:x w:0 0xAE /r ; s:AVX102, t:AVX10BF16, l:fv, e:E4, w:RW|R|R|R -VFNMSUB213PH ; Vfv{K}{z},Hfv,Wfv|B16{er} ; ; evex m:6 p:1 l:x w:0 0xAE /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:RW|R|R|R -VFNMSUB213SH ; Vdq{K}{z},Hdq,Wsh{er} ; ; evex m:6 p:1 l:i w:0 0xAF /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3, w:RW|R|R|R +VFNMSUB213PH ; Vfv{K}{z},Hfv,Wfv|B16{er} ; ; evex m:6 p:1 l:x w:0 0xAE /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFNMSUB213SH ; Vdq{K}{z},Hdq,Wsh{er} ; ; evex m:6 p:1 l:i w:0 0xAF /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3, w:RW|R|R|R, x:IE|OE|UE|PE|DE # 0xB0 - 0xBF -VFMADDSUB231PH ; Vfv{K}{z},Hfv,Wfv|B16{er} ; ; evex m:6 p:1 l:x w:0 0xB6 /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:RW|R|R|R -VFMSUBADD231PH ; Vfv{K}{z},Hfv,Wfv|B16{er} ; ; evex m:6 p:1 l:x w:0 0xB7 /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:RW|R|R|R +VFMADDSUB231PH ; Vfv{K}{z},Hfv,Wfv|B16{er} ; ; evex m:6 p:1 l:x w:0 0xB6 /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFMSUBADD231PH ; Vfv{K}{z},Hfv,Wfv|B16{er} ; ; evex m:6 p:1 l:x w:0 0xB7 /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE VFMADD231NEPBF16 ; Vfv{K}{z},Hfv,Wfv|B16 ; ; evex m:6 p:0 l:x w:0 0xB8 /r ; s:AVX102, t:AVX10BF16, l:fv, e:E4, w:RW|R|R|R -VFMADD231PH ; Vfv{K}{z},Hfv,Wfv|B16{er} ; ; evex m:6 p:1 l:x w:0 0xB8 /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:RW|R|R|R -VFMADD231SH ; Vdq{K}{z},Hdq,Wsh{er} ; ; evex m:6 p:1 l:i w:0 0xB9 /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3, w:RW|R|R|R +VFMADD231PH ; Vfv{K}{z},Hfv,Wfv|B16{er} ; ; evex m:6 p:1 l:x w:0 0xB8 /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFMADD231SH ; Vdq{K}{z},Hdq,Wsh{er} ; ; evex m:6 p:1 l:i w:0 0xB9 /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3, w:RW|R|R|R, x:IE|OE|UE|PE|DE VFMSUB231NEPBF16 ; Vfv{K}{z},Hfv,Wfv|B16 ; ; evex m:6 p:0 l:x w:0 0xBA /r ; s:AVX102, t:AVX10BF16, l:fv, e:E4, w:RW|R|R|R -VFMSUB231PH ; Vfv{K}{z},Hfv,Wfv|B16{er} ; ; evex m:6 p:1 l:x w:0 0xBA /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:RW|R|R|R -VFMSUB231SH ; Vdq{K}{z},Hdq,Wsh{er} ; ; evex m:6 p:1 l:i w:0 0xBB /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3, w:RW|R|R|R +VFMSUB231PH ; Vfv{K}{z},Hfv,Wfv|B16{er} ; ; evex m:6 p:1 l:x w:0 0xBA /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFMSUB231SH ; Vdq{K}{z},Hdq,Wsh{er} ; ; evex m:6 p:1 l:i w:0 0xBB /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3, w:RW|R|R|R, x:IE|OE|UE|PE|DE VFNMADD231NEPBF16 ; Vfv{K}{z},Hfv,Wfv|B16 ; ; evex m:6 p:0 l:x w:0 0xBC /r ; s:AVX102, t:AVX10BF16, l:fv, e:E4, w:RW|R|R|R -VFNMADD231PH ; Vfv{K}{z},Hfv,Wfv|B16{er} ; ; evex m:6 p:1 l:x w:0 0xBC /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:RW|R|R|R -VFNMADD231SH ; Vdq{K}{z},Hdq,Wsh{er} ; ; evex m:6 p:1 l:i w:0 0xBD /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3, w:RW|R|R|R +VFNMADD231PH ; Vfv{K}{z},Hfv,Wfv|B16{er} ; ; evex m:6 p:1 l:x w:0 0xBC /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFNMADD231SH ; Vdq{K}{z},Hdq,Wsh{er} ; ; evex m:6 p:1 l:i w:0 0xBD /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3, w:RW|R|R|R, x:IE|OE|UE|PE|DE VFNMSUB231NEPBF16 ; Vfv{K}{z},Hfv,Wfv|B16 ; ; evex m:6 p:0 l:x w:0 0xBE /r ; s:AVX102, t:AVX10BF16, l:fv, e:E4, w:RW|R|R|R -VFNMSUB231PH ; Vfv{K}{z},Hfv,Wfv|B16{er} ; ; evex m:6 p:1 l:x w:0 0xBE /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:RW|R|R|R -VFNMSUB231SH ; Vdq{K}{z},Hdq,Wsh{er} ; ; evex m:6 p:1 l:i w:0 0xBF /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3, w:RW|R|R|R +VFNMSUB231PH ; Vfv{K}{z},Hfv,Wfv|B16{er} ; ; evex m:6 p:1 l:x w:0 0xBE /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E2, w:RW|R|R|R, x:IE|OE|UE|PE|DE +VFNMSUB231SH ; Vdq{K}{z},Hdq,Wsh{er} ; ; evex m:6 p:1 l:i w:0 0xBF /r ; s:AVX512FP16, t:AVX512FP16, l:t1s16, e:E3, w:RW|R|R|R, x:IE|OE|UE|PE|DE # 0xD0 - 0xD7 -VFMULCPH ; Vfv{K}{z},Hfv,Wfv|B32{er} ; ; evex m:6 p:2 l:x w:0 0xD6 /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E4S, w:W|R|R|R -VFCMULCPH ; Vfv{K}{z},Hfv,Wfv|B32{er} ; ; evex m:6 p:3 l:x w:0 0xD6 /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E4S, w:W|R|R|R -VFMULCSH ; Vdq{K}{z},Hdq,Wd{er} ; ; evex m:6 p:2 l:i w:0 0xD7 /r ; s:AVX512FP16, t:AVX512FP16, l:t1s, e:E10S, w:W|R|R|R -VFCMULCSH ; Vdq{K}{z},Hdq,Wd{er} ; ; evex m:6 p:3 l:i w:0 0xD7 /r ; s:AVX512FP16, t:AVX512FP16, l:t1s, e:E10S, w:W|R|R|R +VFMULCPH ; Vfv{K}{z},Hfv,Wfv|B32{er} ; ; evex m:6 p:2 l:x w:0 0xD6 /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E4S, w:W|R|R|R, x:IE|OE|UE|PE|DE +VFCMULCPH ; Vfv{K}{z},Hfv,Wfv|B32{er} ; ; evex m:6 p:3 l:x w:0 0xD6 /r ; s:AVX512FP16, t:AVX512FP16, l:fv, e:E4S, w:W|R|R|R, x:IE|OE|UE|PE|DE +VFMULCSH ; Vdq{K}{z},Hdq,Wd{er} ; ; evex m:6 p:2 l:i w:0 0xD7 /r ; s:AVX512FP16, t:AVX512FP16, l:t1s, e:E10S, w:W|R|R|R, x:IE|OE|UE|PE|DE +VFCMULCSH ; Vdq{K}{z},Hdq,Wd{er} ; ; evex m:6 p:3 l:i w:0 0xD7 /r ; s:AVX512FP16, t:AVX512FP16, l:t1s, e:E10S, w:W|R|R|R, x:IE|OE|UE|PE|DE diff --git a/isagenerator/instructions/table_evex_7.dat b/isagenerator/instructions/table_evex_7.dat index a5c3d94..526da7e 100644 --- a/isagenerator/instructions/table_evex_7.dat +++ b/isagenerator/instructions/table_evex_7.dat @@ -3,5 +3,7 @@ # SPDX-License-Identifier: Apache-2.0 # -UWRMSR ; Id,Rq ; MSR ; evex m:7 nf:0 p:2 l:0 w:0 0xF8 /0:reg id ; s:APX_F, t:USER_MSR, w:R|R|W, m:O64, v:vex -URDMSR ; Rq,Id ; MSR ; evex m:7 nf:0 p:3 l:0 w:0 0xF8 /0:reg id ; s:APX_F, t:USER_MSR, w:W|R|R, m:O64, v:vex +WRMSRNS ; Id,Rq ; MSR ; evex m:7 nf:0 p:2 l:0 w:0 0xF6 /0:reg id ; s:MSR_IMM, t:SYSTEM, w:R|R|W, m:KERNEL|O64, v:vex +RDMSR ; Rq,Id ; MSR ; evex m:7 nf:0 p:3 l:0 w:0 0xF6 /0:reg id ; s:MSR_IMM, t:SYSTEM, w:W|R|R, m:KERNEL|O64, v:vex +UWRMSR ; Id,Rq ; MSR ; evex m:7 nf:0 p:2 l:0 w:0 0xF8 /0:reg id ; s:APX_F, t:USER_MSR, w:R|R|W, m:O64, v:vex +URDMSR ; Rq,Id ; MSR ; evex m:7 nf:0 p:3 l:0 w:0 0xF8 /0:reg id ; s:APX_F, t:USER_MSR, w:W|R|R, m:O64, v:vex diff --git a/isagenerator/instructions/table_legacy_1.dat b/isagenerator/instructions/table_legacy_1.dat index b47a67c..6cdbd87 100644 --- a/isagenerator/instructions/table_legacy_1.dat +++ b/isagenerator/instructions/table_legacy_1.dat @@ -157,7 +157,8 @@ PREFETCHT1 ; Mb ; ; 0x0F 0x18 /2:m NOP ; Ev ; ; 0x0F 0x18 /2:reg ; s:PPRO, t:WIDENOP, w:N PREFETCHT2 ; Mb ; ; 0x0F 0x18 /3:mem ; s:SSE, t:PREFETCH, w:P NOP ; Ev ; ; 0x0F 0x18 /3:reg ; s:PPRO, t:WIDENOP, w:N -NOP ; Ev ; ; 0x0F 0x18 /4 ; s:PPRO, t:WIDENOP, w:N +PREFETCHRST2 ; Mb ; ; 0x0F 0x18 /4:mem ; s:MOVRS, t:PREFETCH, w:P +NOP ; Ev ; ; 0x0F 0x18 /4:reg ; s:PPRO, t:WIDENOP, w:N NOP ; Ev ; ; 0x0F 0x18 /5 ; s:PPRO, t:WIDENOP, w:N NOP ; Ev ; ; 0x0F 0x18 /6 ; s:PPRO, t:WIDENOP, w:N NOP ; Ev ; ; 0x0F 0x18 /7 ; s:PPRO, t:WIDENOP, w:N @@ -173,7 +174,8 @@ PREFETCHT1 ; Mb ; ; piti 0x0F 0x18 /2:m NOP ; Ev ; ; piti 0x0F 0x18 /2:reg ; s:PPRO, t:WIDENOP, w:N PREFETCHT2 ; Mb ; ; piti 0x0F 0x18 /3:mem ; s:SSE, t:PREFETCH, w:P NOP ; Ev ; ; piti 0x0F 0x18 /3:reg ; s:PPRO, t:WIDENOP, w:N -NOP ; Ev ; ; piti 0x0F 0x18 /4 ; s:PPRO, t:WIDENOP, w:N +PREFETCHRST2 ; Mb ; ; piti 0x0F 0x18 /4:mem ; s:MOVRS, t:PREFETCH, w:P +NOP ; Ev ; ; piti 0x0F 0x18 /4:reg ; s:PPRO, t:WIDENOP, w:N NOP ; Ev ; ; piti 0x0F 0x18 /5 ; s:PPRO, t:WIDENOP, w:N PREFETCHIT1 ; Mb ; ;piti riprel 0x0F 0x18 /6:mem ; s:PREFETCHITI, t:PREFETCH, w:N, m:O64 NOP ; Ev ; ; piti 0x0F 0x18 /6:mem ; s:PPRO, t:WIDENOP, w:N @@ -264,26 +266,26 @@ MOVAPS ; Vps,Wps ; ; NP 0x0F 0x28 /r MOVAPD ; Vpd,Wpd ; ; 0x66 0x0F 0x28 /r ; s:SSE2, t:DATAXFER, w:W|R, e:1 MOVAPS ; Wps,Vps ; ; NP 0x0F 0x29 /r ; s:SSE, t:DATAXFER, w:W|R, e:1 MOVAPD ; Wpd,Vpd ; ; 0x66 0x0F 0x29 /r ; s:SSE2, t:DATAXFER, w:W|R, e:1 -CVTPI2PS ; Vq,Qq ; ; NP 0x0F 0x2A /r ; s:SSE, t:CONVERT, w:W|R -CVTPI2PD ; Vpd,Qq ; ; 0x66 0x0F 0x2A /r ; s:SSE2, t:CONVERT, w:W|R -CVTSI2SS ; Vss,Ey ; ; 0xF3 0x0F 0x2A /r ; s:SSE, t:CONVERT, w:W|R, e:3 -CVTSI2SD ; Vsd,Ey ; ; 0xF2 0x0F 0x2A /r ; s:SSE2, t:CONVERT, w:W|R, e:3 +CVTPI2PS ; Vq,Qq ; ; NP 0x0F 0x2A /r ; s:SSE, t:CONVERT, w:W|R, x:PE +CVTPI2PD ; Vpd,Qq ; ; 0x66 0x0F 0x2A /r ; s:SSE2, t:CONVERT, w:W|R, x:PE +CVTSI2SS ; Vss,Ey ; ; 0xF3 0x0F 0x2A /r ; s:SSE, t:CONVERT, w:W|R, e:3, x:PE +CVTSI2SD ; Vsd,Ey ; ; 0xF2 0x0F 0x2A /r ; s:SSE2, t:CONVERT, w:W|R, e:3, x:PE MOVNTPS ; Mps,Vps ; ; NP 0x0F 0x2B /r:mem ; s:SSE, t:DATAXFER, w:W|R, e:1 MOVNTPD ; Mpd,Vpd ; ; 0x66 0x0F 0x2B /r:mem ; s:SSE2, t:DATAXFER, w:W|R, e:1 MOVNTSS ; Mss,Vss ; ; 0xF3 0x0F 0x2B /r:mem ; s:SSE4A, t:DATAXFER, w:W|R MOVNTSD ; Msd,Vsd ; ; 0xF2 0x0F 0x2B /r:mem ; s:SSE4A, t:DATAXFER, w:W|R -CVTTPS2PI ; Pq,Wq ; ; NP 0x0F 0x2C /r ; s:SSE, t:CONVERT, w:W|R -CVTTPD2PI ; Pq,Wpd ; ; 0x66 0x0F 0x2C /r ; s:SSE2, t:CONVERT, w:W|R -CVTTSS2SI ; Gy,Wss ; ; 0xF3 0x0F 0x2C /r ; s:SSE, t:CONVERT, w:W|R, e:3 -CVTTSD2SI ; Gy,Wsd ; ; 0xF2 0x0F 0x2C /r ; s:SSE2, t:CONVERT, w:W|R, e:3 -CVTPS2PI ; Pq,Wq ; ; NP 0x0F 0x2D /r ; s:SSE, t:CONVERT, w:W|R -CVTPD2PI ; Pq,Wpd ; ; 0x66 0x0F 0x2D /r ; s:SSE2, t:CONVERT, w:W|R -CVTSS2SI ; Gy,Wss ; ; 0xF3 0x0F 0x2D /r ; s:SSE, t:CONVERT, w:W|R, e:3 -CVTSD2SI ; Gy,Wsd ; ; 0xF2 0x0F 0x2D /r ; s:SSE2, t:CONVERT, w:W|R, e:3 -UCOMISS ; Vss,Wss ; Fv ; NP 0x0F 0x2E /r ; s:SSE, t:SSE, w:R|R|W, f:COMIS -UCOMISD ; Vsd,Wsd ; Fv ; 0x66 0x0F 0x2E /r ; s:SSE2, t:SSE2, w:R|R|W, f:COMIS, e:3 -COMISS ; Vss,Wss ; Fv ; NP 0x0F 0x2F /r ; s:SSE, t:SSE, w:R|R|W, f:COMIS, e:3 -COMISD ; Vsd,Wsd ; Fv ; 0x66 0x0F 0x2F /r ; s:SSE2, t:SSE2, w:R|R|W, f:COMIS, e:3 +CVTTPS2PI ; Pq,Wq ; ; NP 0x0F 0x2C /r ; s:SSE, t:CONVERT, w:W|R, x:IE|PE +CVTTPD2PI ; Pq,Wpd ; ; 0x66 0x0F 0x2C /r ; s:SSE2, t:CONVERT, w:W|R, x:IE|PE +CVTTSS2SI ; Gy,Wss ; ; 0xF3 0x0F 0x2C /r ; s:SSE, t:CONVERT, w:W|R, e:3, x:IE|PE +CVTTSD2SI ; Gy,Wsd ; ; 0xF2 0x0F 0x2C /r ; s:SSE2, t:CONVERT, w:W|R, e:3, x:IE|PE +CVTPS2PI ; Pq,Wq ; ; NP 0x0F 0x2D /r ; s:SSE, t:CONVERT, w:W|R, x:IE|PE +CVTPD2PI ; Pq,Wpd ; ; 0x66 0x0F 0x2D /r ; s:SSE2, t:CONVERT, w:W|R, x:IE|PE +CVTSS2SI ; Gy,Wss ; ; 0xF3 0x0F 0x2D /r ; s:SSE, t:CONVERT, w:W|R, e:3, x:IE|PE +CVTSD2SI ; Gy,Wsd ; ; 0xF2 0x0F 0x2D /r ; s:SSE2, t:CONVERT, w:W|R, e:3, x:IE|PE +UCOMISS ; Vss,Wss ; Fv ; NP 0x0F 0x2E /r ; s:SSE, t:SSE, w:R|R|W, f:COMIS, e:3, x:IE|DE +UCOMISD ; Vsd,Wsd ; Fv ; 0x66 0x0F 0x2E /r ; s:SSE2, t:SSE2, w:R|R|W, f:COMIS, e:3, x:IE|DE +COMISS ; Vss,Wss ; Fv ; NP 0x0F 0x2F /r ; s:SSE, t:SSE, w:R|R|W, f:COMIS, e:3, x:IE|DE +COMISD ; Vsd,Wsd ; Fv ; 0x66 0x0F 0x2F /r ; s:SSE2, t:SSE2, w:R|R|W, f:COMIS, e:3, x:IE|DE # 0x30 - 0x3F WRMSR ; ; EAX,EDX,ECX,MSR ; 0x0F 0x30 ; s:PENTIUMREAL, t:SYSTEM, w:R|R|R|W, a:SERIAL|NOREX2, m:KERNEL|NOV86, i:MSR @@ -316,10 +318,10 @@ CMOVNLE ; Gv,Ev ; Fv ; 0x0F 0x4F /r # Note: for MOVMSKPS & MOVMSKPD, the Intel doc says the destination reg is y (32 or 64 bit). MOVMSKPS ; Gy,Ups ; ; NP 0x0F 0x50 /r:reg ; s:SSE, t:DATAXFER, w:W|R, e:7, a:D64 MOVMSKPD ; Gy,Upd ; ; 0x66 0x0F 0x50 /r:reg ; s:SSE2, t:DATAXFER, w:W|R, e:7, a:D64 -SQRTPS ; Vps,Wps ; ; NP 0x0F 0x51 /r ; s:SSE, t:SSE, w:W|R, e:2 -SQRTPD ; Vpd,Wpd ; ; 0x66 0x0F 0x51 /r ; s:SSE2, t:SSE, w:W|R, e:2 -SQRTSS ; Vss,Wss ; ; 0xF3 0x0F 0x51 /r ; s:SSE, t:SSE, w:W|R, e:3 -SQRTSD ; Vsd,Wsd ; ; 0xF2 0x0F 0x51 /r ; s:SSE2, t:SSE, w:W|R, e:3 +SQRTPS ; Vps,Wps ; ; NP 0x0F 0x51 /r ; s:SSE, t:SSE, w:W|R, e:2, x:IE|PE|DE +SQRTPD ; Vpd,Wpd ; ; 0x66 0x0F 0x51 /r ; s:SSE2, t:SSE, w:W|R, e:2, x:IE|PE|DE +SQRTSS ; Vss,Wss ; ; 0xF3 0x0F 0x51 /r ; s:SSE, t:SSE, w:W|R, e:3, x:IE|PE|DE +SQRTSD ; Vsd,Wsd ; ; 0xF2 0x0F 0x51 /r ; s:SSE2, t:SSE, w:W|R, e:3, x:IE|PE|DE RSQRTPS ; Vps,Wps ; ; NP 0x0F 0x52 /r ; s:SSE, t:SSE, w:W|R, e:4 RSQRTSS ; Vss,Wss ; ; 0xF3 0x0F 0x52 /r ; s:SSE, t:SSE, w:W|R, e:5 RCPPS ; Vps,Wps ; ; NP 0x0F 0x53 /r ; s:SSE, t:SSE, w:W|R, e:4 @@ -332,37 +334,37 @@ ORPS ; Vps,Wps ; ; NP 0x0F 0x56 /r ORPD ; Vpd,Wpd ; ; 0x66 0x0F 0x56 /r ; s:SSE2, t:LOGICAL_FP, w:RW|R, e:4 XORPS ; Vps,Wps ; ; NP 0x0F 0x57 /r ; s:SSE, t:LOGICAL_FP, w:RW|R, e:4 XORPD ; Vpd,Wpd ; ; 0x66 0x0F 0x57 /r ; s:SSE2, t:LOGICAL_FP, w:RW|R, e:4 -ADDPS ; Vps,Wps ; ; NP 0x0F 0x58 /r ; s:SSE, t:SSE, w:RW|R, e:2 -ADDPD ; Vpd,Wpd ; ; 0x66 0x0F 0x58 /r ; s:SSE2, t:SSE, w:RW|R, e:2 -ADDSS ; Vss,Wss ; ; 0xF3 0x0F 0x58 /r ; s:SSE, t:SSE, w:RW|R, e:3 -ADDSD ; Vsd,Wsd ; ; 0xF2 0x0F 0x58 /r ; s:SSE2, t:SSE, w:RW|R, e:3 -MULPS ; Vps,Wps ; ; NP 0x0F 0x59 /r ; s:SSE, t:SSE, w:RW|R, e:2 -MULPD ; Vpd,Wpd ; ; 0x66 0x0F 0x59 /r ; s:SSE2, t:SSE, w:RW|R, e:2 -MULSS ; Vss,Wss ; ; 0xF3 0x0F 0x59 /r ; s:SSE, t:SSE, w:RW|R, e:3 -MULSD ; Vsd,Wsd ; ; 0xF2 0x0F 0x59 /r ; s:SSE2, t:SSE, w:RW|R, e:3 -CVTPS2PD ; Vpd,Wq ; ; NP 0x0F 0x5A /r ; s:SSE2, t:CONVERT, w:W|R, e:3 -CVTPD2PS ; Vps,Wpd ; ; 0x66 0x0F 0x5A /r ; s:SSE2, t:CONVERT, w:W|R, e:2 -CVTSS2SD ; Vsd,Wss ; ; 0xF3 0x0F 0x5A /r ; s:SSE2, t:CONVERT, w:W|R, e:3 -CVTSD2SS ; Vss,Wsd ; ; 0xF2 0x0F 0x5A /r ; s:SSE2, t:CONVERT, w:W|R, e:3 -CVTDQ2PS ; Vps,Wdq ; ; NP 0x0F 0x5B /r ; s:SSE2, t:CONVERT, w:W|R, e:2 -CVTPS2DQ ; Vdq,Wps ; ; 0x66 0x0F 0x5B /r ; s:SSE2, t:CONVERT, w:W|R, e:2 -CVTTPS2DQ ; Vdq,Wps ; ; 0xF3 0x0F 0x5B /r ; s:SSE2, t:CONVERT, w:W|R, e:2 -SUBPS ; Vps,Wps ; ; NP 0x0F 0x5C /r ; s:SSE, t:SSE, w:RW|R, e:2 -SUBPD ; Vpd,Wpd ; ; 0x66 0x0F 0x5C /r ; s:SSE2, t:SSE, w:RW|R, e:2 -SUBSS ; Vss,Wss ; ; 0xF3 0x0F 0x5C /r ; s:SSE, t:SSE, w:RW|R, e:3 -SUBSD ; Vsd,Wsd ; ; 0xF2 0x0F 0x5C /r ; s:SSE2, t:SSE, w:RW|R, e:3 -MINPS ; Vps,Wps ; ; NP 0x0F 0x5D /r ; s:SSE, t:SSE, w:RW|R, e:2 -MINPD ; Vpd,Wpd ; ; 0x66 0x0F 0x5D /r ; s:SSE2, t:SSE, w:RW|R, e:2 -MINSS ; Vss,Wss ; ; 0xF3 0x0F 0x5D /r ; s:SSE, t:SSE, w:RW|R, e:3 -MINSD ; Vsd,Wsd ; ; 0xF2 0x0F 0x5D /r ; s:SSE2, t:SSE, w:RW|R, e:3 -DIVPS ; Vps,Wps ; ; NP 0x0F 0x5E /r ; s:SSE, t:SSE, w:RW|R, e:2 -DIVPD ; Vpd,Wpd ; ; 0x66 0x0F 0x5E /r ; s:SSE2, t:SSE, w:RW|R, e:2 -DIVSS ; Vss,Wss ; ; 0xF3 0x0F 0x5E /r ; s:SSE, t:SSE, w:RW|R, e:3 -DIVSD ; Vsd,Wsd ; ; 0xF2 0x0F 0x5E /r ; s:SSE2, t:SSE, w:RW|R, e:3 -MAXPS ; Vps,Wps ; ; NP 0x0F 0x5F /r ; s:SSE, t:SSE, w:RW|R, e:2 -MAXPD ; Vpd,Wpd ; ; 0x66 0x0F 0x5F /r ; s:SSE2, t:SSE, w:RW|R, e:2 -MAXSS ; Vss,Wss ; ; 0xF3 0x0F 0x5F /r ; s:SSE, t:SSE, w:RW|R, e:3 -MAXSD ; Vsd,Wsd ; ; 0xF2 0x0F 0x5F /r ; s:SSE2, t:SSE, w:RW|R, e:3 +ADDPS ; Vps,Wps ; ; NP 0x0F 0x58 /r ; s:SSE, t:SSE, w:RW|R, e:2, x:IE|OE|UE|PE|DE +ADDPD ; Vpd,Wpd ; ; 0x66 0x0F 0x58 /r ; s:SSE2, t:SSE, w:RW|R, e:2, x:IE|OE|UE|PE|DE +ADDSS ; Vss,Wss ; ; 0xF3 0x0F 0x58 /r ; s:SSE, t:SSE, w:RW|R, e:3, x:IE|OE|UE|PE|DE +ADDSD ; Vsd,Wsd ; ; 0xF2 0x0F 0x58 /r ; s:SSE2, t:SSE, w:RW|R, e:3, x:IE|OE|UE|PE|DE +MULPS ; Vps,Wps ; ; NP 0x0F 0x59 /r ; s:SSE, t:SSE, w:RW|R, e:2, x:IE|OE|UE|PE|DE +MULPD ; Vpd,Wpd ; ; 0x66 0x0F 0x59 /r ; s:SSE2, t:SSE, w:RW|R, e:2, x:IE|OE|UE|PE|DE +MULSS ; Vss,Wss ; ; 0xF3 0x0F 0x59 /r ; s:SSE, t:SSE, w:RW|R, e:3, x:IE|OE|UE|PE|DE +MULSD ; Vsd,Wsd ; ; 0xF2 0x0F 0x59 /r ; s:SSE2, t:SSE, w:RW|R, e:3, x:IE|OE|UE|PE|DE +CVTPS2PD ; Vpd,Wq ; ; NP 0x0F 0x5A /r ; s:SSE2, t:CONVERT, w:W|R, e:3, x:IE|DE +CVTPD2PS ; Vps,Wpd ; ; 0x66 0x0F 0x5A /r ; s:SSE2, t:CONVERT, w:W|R, e:2, x:IE|OE|UE|PE|DE +CVTSS2SD ; Vsd,Wss ; ; 0xF3 0x0F 0x5A /r ; s:SSE2, t:CONVERT, w:W|R, e:3, x:IE|DE +CVTSD2SS ; Vss,Wsd ; ; 0xF2 0x0F 0x5A /r ; s:SSE2, t:CONVERT, w:W|R, e:3, x:IE|OE|UE|PE|DE +CVTDQ2PS ; Vps,Wdq ; ; NP 0x0F 0x5B /r ; s:SSE2, t:CONVERT, w:W|R, e:2, x:PE +CVTPS2DQ ; Vdq,Wps ; ; 0x66 0x0F 0x5B /r ; s:SSE2, t:CONVERT, w:W|R, e:2, x:IE|PE +CVTTPS2DQ ; Vdq,Wps ; ; 0xF3 0x0F 0x5B /r ; s:SSE2, t:CONVERT, w:W|R, e:2, x:IE|PE +SUBPS ; Vps,Wps ; ; NP 0x0F 0x5C /r ; s:SSE, t:SSE, w:RW|R, e:2, x:IE|OE|UE|PE|DE +SUBPD ; Vpd,Wpd ; ; 0x66 0x0F 0x5C /r ; s:SSE2, t:SSE, w:RW|R, e:2, x:IE|OE|UE|PE|DE +SUBSS ; Vss,Wss ; ; 0xF3 0x0F 0x5C /r ; s:SSE, t:SSE, w:RW|R, e:3, x:IE|OE|UE|PE|DE +SUBSD ; Vsd,Wsd ; ; 0xF2 0x0F 0x5C /r ; s:SSE2, t:SSE, w:RW|R, e:3, x:IE|OE|UE|PE|DE +MINPS ; Vps,Wps ; ; NP 0x0F 0x5D /r ; s:SSE, t:SSE, w:RW|R, e:2, x:IE|DE +MINPD ; Vpd,Wpd ; ; 0x66 0x0F 0x5D /r ; s:SSE2, t:SSE, w:RW|R, e:2, x:IE|DE +MINSS ; Vss,Wss ; ; 0xF3 0x0F 0x5D /r ; s:SSE, t:SSE, w:RW|R, e:3, x:IE|DE +MINSD ; Vsd,Wsd ; ; 0xF2 0x0F 0x5D /r ; s:SSE2, t:SSE, w:RW|R, e:3, x:IE|DE +DIVPS ; Vps,Wps ; ; NP 0x0F 0x5E /r ; s:SSE, t:SSE, w:RW|R, e:2, x:IE|OE|UE|PE|DE|ZE +DIVPD ; Vpd,Wpd ; ; 0x66 0x0F 0x5E /r ; s:SSE2, t:SSE, w:RW|R, e:2, x:IE|OE|UE|PE|DE|ZE +DIVSS ; Vss,Wss ; ; 0xF3 0x0F 0x5E /r ; s:SSE, t:SSE, w:RW|R, e:3, x:IE|OE|UE|PE|DE|ZE +DIVSD ; Vsd,Wsd ; ; 0xF2 0x0F 0x5E /r ; s:SSE2, t:SSE, w:RW|R, e:3, x:IE|OE|UE|PE|DE|ZE +MAXPS ; Vps,Wps ; ; NP 0x0F 0x5F /r ; s:SSE, t:SSE, w:RW|R, e:2, x:IE|DE +MAXPD ; Vpd,Wpd ; ; 0x66 0x0F 0x5F /r ; s:SSE2, t:SSE, w:RW|R, e:2, x:IE|DE +MAXSS ; Vss,Wss ; ; 0xF3 0x0F 0x5F /r ; s:SSE, t:SSE, w:RW|R, e:3, x:IE|DE +MAXSD ; Vsd,Wsd ; ; 0xF2 0x0F 0x5F /r ; s:SSE2, t:SSE, w:RW|R, e:3, x:IE|DE # 0x60 - 0x6F PUNPCKLBW ; Pq,Qd ; ; NP 0x0F 0x60 /r ; s:MMX, t:MMX, w:RW|R @@ -435,10 +437,10 @@ EXTRQ ; Uq,Ib,Ib ; ; 0x66 0x0F 0x78 /0 i VMWRITE ; Gy,Ey ; Fv ; NP 0x0F 0x79 /r ; s:VTX, t:VTX, w:R|R|W, f:VMX, a:F64, m:VMXROOT EXTRQ ; Vdq,Uq ; ; 0x66 0x0F 0x79 /r:reg ; s:SSE4A, t:BITBYTE, w:W|R INSERTQ ; Vdq,Udq ; ; 0xF2 0x0F 0x79 /r:reg ; s:SSE4A, t:BITBYTE, w:W|R -HADDPD ; Vpd,Wpd ; ; 0x66 0x0F 0x7C /r ; s:SSE3, t:SSE, w:RW|R, e:2 -HADDPS ; Vps,Wps ; ; 0xF2 0x0F 0x7C /r ; s:SSE3, t:SSE, w:RW|R, e:2 -HSUBPD ; Vpd,Wpd ; ; 0x66 0x0F 0x7D /r ; s:SSE3, t:SSE, w:RW|R, e:2 -HSUBPS ; Vps,Wps ; ; 0xF2 0x0F 0x7D /r ; s:SSE3, t:SSE, w:RW|R, e:2 +HADDPD ; Vpd,Wpd ; ; 0x66 0x0F 0x7C /r ; s:SSE3, t:SSE, w:RW|R, e:2, x:IE|OE|UE|PE|DE +HADDPS ; Vps,Wps ; ; 0xF2 0x0F 0x7C /r ; s:SSE3, t:SSE, w:RW|R, e:2, x:IE|OE|UE|PE|DE +HSUBPD ; Vpd,Wpd ; ; 0x66 0x0F 0x7D /r ; s:SSE3, t:SSE, w:RW|R, e:2, x:IE|OE|UE|PE|DE +HSUBPS ; Vps,Wps ; ; 0xF2 0x0F 0x7D /r ; s:SSE3, t:SSE, w:RW|R, e:2, x:IE|OE|UE|PE|DE MOVD ; Ey,Pd ; ; NP 0x0F 0x7E /r ; s:MMX, t:DATAXFER, w:W|R MOVQ ; Ey,Pq ; ; rexw NP 0x0F 0x7E /r ; s:MMX, t:DATAXFER, w:W|R MOVD ; Ey,Vdq ; ; 0x66 0x0F 0x7E /r ; s:SSE2, t:DATAXFER, w:W|R, e:5 @@ -562,10 +564,10 @@ MOVSX ; Gv,Ew ; ; 0x0F 0xBF /r # 0xC0 - 0xCF XADD ; Eb,Gb ; Fv ; 0x0F 0xC0 /r ; s:I486REAL, t:SEMAPHORE, w:RW|RW|W, f:ARITH, p:LOCK|HLE XADD ; Ev,Gv ; Fv ; 0x0F 0xC1 /r ; s:I486REAL, t:SEMAPHORE, w:RW|RW|W, f:ARITH, p:LOCK|HLE -CMPPS ; Vps,Wps,Ib ; ; NP 0x0F 0xC2 /r ib ; s:SSE, t:SSE, w:RW|R|R, e:2 -CMPPD ; Vpd,Wpd,Ib ; ; 0x66 0x0F 0xC2 /r ib ; s:SSE2, t:SSE, w:RW|R|R, e:2 -CMPSS ; Vss,Wss,Ib ; ; 0xF3 0x0F 0xC2 /r ib ; s:SSE, t:SSE, w:RW|R|R, e:3 -CMPSD ; Vsd,Wsd,Ib ; ; 0xF2 0x0F 0xC2 /r ib ; s:SSE2, t:SSE, w:RW|R|R, e:3 +CMPPS ; Vps,Wps,Ib ; ; NP 0x0F 0xC2 /r ib ; s:SSE, t:SSE, w:RW|R|R, e:2, x:IE|DE +CMPPD ; Vpd,Wpd,Ib ; ; 0x66 0x0F 0xC2 /r ib ; s:SSE2, t:SSE, w:RW|R|R, e:2, x:IE|DE +CMPSS ; Vss,Wss,Ib ; ; 0xF3 0x0F 0xC2 /r ib ; s:SSE, t:SSE, w:RW|R|R, e:3, x:IE|DE +CMPSD ; Vsd,Wsd,Ib ; ; 0xF2 0x0F 0xC2 /r ib ; s:SSE2, t:SSE, w:RW|R|R, e:3, x:IE|DE MOVNTI ; My,Gy ; ; NP 0x0F 0xC3 /r:mem ; s:SSE2, t:DATAXFER, w:W|R PINSRW ; Pq,Rd,Ib ; ; NP 0x0F 0xC4 /r:reg ib ; s:MMX, t:MMX, w:RW|R|R PINSRW ; Pq,Mw,Ib ; ; NP 0x0F 0xC4 /r:mem ib ; s:MMX, t:MMX, w:RW|R|R @@ -604,8 +606,8 @@ BSWAP ; Zv ; ; 0x0F 0xCE BSWAP ; Zv ; ; 0x0F 0xCF ; s:I486REAL, t:DATAXFER, w:RW # 0xD0 - 0xDF -ADDSUBPD ; Vpd,Wpd ; ; 0x66 0x0F 0xD0 /r ; s:SSE3, t:SSE, w:RW|R, e:2 -ADDSUBPS ; Vps,Wps ; ; 0xF2 0x0F 0xD0 /r ; s:SSE3, t:SSE, w:RW|R, e:2 +ADDSUBPD ; Vpd,Wpd ; ; 0x66 0x0F 0xD0 /r ; s:SSE3, t:SSE, w:RW|R, e:2, x:IE|OE|UE|PE|DE +ADDSUBPS ; Vps,Wps ; ; 0xF2 0x0F 0xD0 /r ; s:SSE3, t:SSE, w:RW|R, e:2, x:IE|OE|UE|PE|DE PSRLW ; Pq,Qq ; ; NP 0x0F 0xD1 /r ; s:MMX, t:MMX, w:RW|R PSRLW ; Vx,Wx ; ; 0x66 0x0F 0xD1 /r ; s:SSE2, t:SSE, w:RW|R, e:4 PSRLD ; Pq,Qq ; ; NP 0x0F 0xD2 /r ; s:MMX, t:MMX, w:RW|R @@ -651,9 +653,9 @@ PMULHUW ; Pq,Qq ; ; NP 0x0F 0xE4 /r PMULHUW ; Vx,Wx ; ; 0x66 0x0F 0xE4 /r ; s:SSE2, t:SSE, w:RW|R, e:4 PMULHW ; Pq,Qq ; ; NP 0x0F 0xE5 /r ; s:MMX, t:MMX, w:RW|R PMULHW ; Vx,Wx ; ; 0x66 0x0F 0xE5 /r ; s:SSE2, t:SSE, w:RW|R, e:4 -CVTTPD2DQ ; Vx,Wpd ; ; 0x66 0x0F 0xE6 /r ; s:SSE2, t:CONVERT, w:W|R, e:2 +CVTTPD2DQ ; Vx,Wpd ; ; 0x66 0x0F 0xE6 /r ; s:SSE2, t:CONVERT, w:W|R, e:2, x:IE|PE CVTDQ2PD ; Vx,Wq ; ; 0xF3 0x0F 0xE6 /r ; s:SSE2, t:CONVERT, w:W|R, e:5 -CVTPD2DQ ; Vx,Wpd ; ; 0xF2 0x0F 0xE6 /r ; s:SSE2, t:CONVERT, w:W|R, e:2 +CVTPD2DQ ; Vx,Wpd ; ; 0xF2 0x0F 0xE6 /r ; s:SSE2, t:CONVERT, w:W|R, e:2, x:IE|PE MOVNTQ ; Mq,Pq ; ; NP 0x0F 0xE7 /r:mem ; s:MMX, t:DATAXFER, w:W|R MOVNTDQ ; Mx,Vx ; ; 0x66 0x0F 0xE7 /r:mem ; s:SSE2, t:DATAXFER, w:W|R, e:1 PSUBSB ; Pq,Qq ; ; NP 0x0F 0xE8 /r ; s:MMX, t:MMX, w:RW|R diff --git a/isagenerator/instructions/table_legacy_2.dat b/isagenerator/instructions/table_legacy_2.dat index a34033f..40b4f79 100644 --- a/isagenerator/instructions/table_legacy_2.dat +++ b/isagenerator/instructions/table_legacy_2.dat @@ -86,6 +86,9 @@ INVEPT ; Gy,Mdq ; Fv ; 0x66 0x0F 0x INVVPID ; Gy,Mdq ; Fv ; 0x66 0x0F 0x38 0x81 /r:mem ; s:VTX, t:VTX, w:R|R|W, f:VMX, a:F64|SERIAL|NOREX2, m:VMXROOT INVPCID ; Gy,Mdq ; ; 0x66 0x0F 0x38 0x82 /r:mem ; s:INVPCID, t:MISC, w:R|R, a:F64|NOREX2, m:KERNEL|NOV86 +MOVRS ; Gb,Mb ; ; 0x0F 0x38 0x8A /r:mem ; s:MOVRS, t:DATAXFER, w:W|R, a:NOREP, m:O64 +MOVRS ; Gv,Mv ; ; 0x0F 0x38 0x8B /r:mem ; s:MOVRS, t:DATAXFER, w:W|R, a:NOREP, m:O64 + # 0x90 - 0x9F # 0xA0 - 0xAF diff --git a/isagenerator/instructions/table_legacy_3.dat b/isagenerator/instructions/table_legacy_3.dat index bfe97ca..46f2419 100644 --- a/isagenerator/instructions/table_legacy_3.dat +++ b/isagenerator/instructions/table_legacy_3.dat @@ -4,10 +4,10 @@ # # 0x00 - 0x0F -ROUNDPS ; Vx,Wx,Ib ; ; 0x66 0x0F 0x3A 0x08 /r ib ; s:SSE4, t:SSE, w:W|R|R, e:2, a:NOREX2 -ROUNDPD ; Vx,Wx,Ib ; ; 0x66 0x0F 0x3A 0x09 /r ib ; s:SSE4, t:SSE, w:W|R|R, e:2, a:NOREX2 -ROUNDSS ; Vss,Wss,Ib ; ; 0x66 0x0F 0x3A 0x0A /r ib ; s:SSE4, t:SSE, w:W|R|R, e:3, a:NOREX2 -ROUNDSD ; Vsd,Wsd,Ib ; ; 0x66 0x0F 0x3A 0x0B /r ib ; s:SSE4, t:SSE, w:W|R|R, e:3, a:NOREX2 +ROUNDPS ; Vx,Wx,Ib ; ; 0x66 0x0F 0x3A 0x08 /r ib ; s:SSE4, t:SSE, w:W|R|R, e:2, a:NOREX2, x:IE|PE +ROUNDPD ; Vx,Wx,Ib ; ; 0x66 0x0F 0x3A 0x09 /r ib ; s:SSE4, t:SSE, w:W|R|R, e:2, a:NOREX2, x:IE|PE +ROUNDSS ; Vss,Wss,Ib ; ; 0x66 0x0F 0x3A 0x0A /r ib ; s:SSE4, t:SSE, w:W|R|R, e:3, a:NOREX2, x:IE|PE +ROUNDSD ; Vsd,Wsd,Ib ; ; 0x66 0x0F 0x3A 0x0B /r ib ; s:SSE4, t:SSE, w:W|R|R, e:3, a:NOREX2, x:IE|PE BLENDPS ; Vx,Wx,Ib ; ; 0x66 0x0F 0x3A 0x0C /r ib ; s:SSE4, t:SSE, w:RW|R|R, e:4, a:NOREX2 BLENDPD ; Vx,Wx,Ib ; ; 0x66 0x0F 0x3A 0x0D /r ib ; s:SSE4, t:SSE, w:RW|R|R, e:4, a:NOREX2 PBLENDW ; Vx,Wx,Ib ; ; 0x66 0x0F 0x3A 0x0E /r ib ; s:SSE4, t:SSE, w:RW|R|R, e:4, a:NOREX2 @@ -37,8 +37,8 @@ PINSRQ ; Vdq,Eq,Ib ; ; rexw 0x66 0x0F 0x # 0x30 - 0x3F # 0x40 - 0x4F -DPPS ; Vx,Wx,Ib ; ; 0x66 0x0F 0x3A 0x40 /r ib ; s:SSE4, t:SSE, w:RW|R|R, e:2, a:NOREX2 -DPPD ; Vdq,Wdq,Ib ; ; 0x66 0x0F 0x3A 0x41 /r ib ; s:SSE4, t:SSE, w:RW|R|R, e:2, a:NOREX2 +DPPS ; Vx,Wx,Ib ; ; 0x66 0x0F 0x3A 0x40 /r ib ; s:SSE4, t:SSE, w:RW|R|R, e:2, a:NOREX2, x:IE|OE|UE|PE|DE +DPPD ; Vdq,Wdq,Ib ; ; 0x66 0x0F 0x3A 0x41 /r ib ; s:SSE4, t:SSE, w:RW|R|R, e:2, a:NOREX2, x:IE|OE|UE|PE|DE MPSADBW ; Vdq,Wdq,Ib ; ; 0x66 0x0F 0x3A 0x42 /r ib ; s:SSE4, t:SSE, w:RW|R|R, e:4, a:NOREX2 PCLMULQDQ ; Vdq,Wdq,Ib ; ; 0x66 0x0F 0x3A 0x44 /r ib ; s:PCLMULQDQ, t:PCLMULQDQ, w:RW|R|R, e:4, a:NOREX2 diff --git a/isagenerator/instructions/table_vex_1.dat b/isagenerator/instructions/table_vex_1.dat index 0e2f144..03fd6e5 100644 --- a/isagenerator/instructions/table_vex_1.dat +++ b/isagenerator/instructions/table_vex_1.dat @@ -42,18 +42,18 @@ VMOVAPS ; Vx,Wx ; ; vex m:1 p:0 l:x w:i VMOVAPD ; Vx,Wx ; ; vex m:1 p:1 l:x w:i 0x28 /r ; s:AVX, t:DATAXFER, w:W|R, e:1 VMOVAPS ; Wx,Vx ; ; vex m:1 p:0 l:x w:i 0x29 /r ; s:AVX, t:DATAXFER, w:W|R, e:1 VMOVAPD ; Wx,Vx ; ; vex m:1 p:1 l:x w:i 0x29 /r ; s:AVX, t:DATAXFER, w:W|R, e:1 -VCVTSI2SS ; Vss,Hss,Ey ; ; vex m:1 p:2 l:i w:x 0x2A /r ; s:AVX, t:CONVERT, w:W|R|R, e:3, a:IWO64 -VCVTSI2SD ; Vsd,Hsd,Ey ; ; vex m:1 p:3 l:i w:x 0x2A /r ; s:AVX, t:CONVERT, w:W|R|R, e:3, a:IWO64 +VCVTSI2SS ; Vss,Hss,Ey ; ; vex m:1 p:2 l:i w:x 0x2A /r ; s:AVX, t:CONVERT, w:W|R|R, e:3, a:IWO64, x:PE +VCVTSI2SD ; Vsd,Hsd,Ey ; ; vex m:1 p:3 l:i w:x 0x2A /r ; s:AVX, t:CONVERT, w:W|R|R, e:3, a:IWO64, x:PE VMOVNTPS ; Mx,Vx ; ; vex m:1 p:0 l:x w:i 0x2B /r:mem ; s:AVX, t:AVX, w:W|R, e:1 VMOVNTPD ; Mx,Vx ; ; vex m:1 p:1 l:x w:i 0x2B /r:mem ; s:AVX, t:AVX, w:W|R, e:1 -VCVTTSS2SI ; Gy,Wss ; ; vex m:1 p:2 l:i w:x 0x2C /r ; s:AVX, t:CONVERT, w:W|R, e:3, a:IWO64 -VCVTTSD2SI ; Gy,Wsd ; ; vex m:1 p:3 l:i w:x 0x2C /r ; s:AVX, t:CONVERT, w:W|R, e:3, a:IWO64 -VCVTSS2SI ; Gy,Wss ; ; vex m:1 p:2 l:i w:x 0x2D /r ; s:AVX, t:CONVERT, w:W|R, e:3, a:IWO64 -VCVTSD2SI ; Gy,Wsd ; ; vex m:1 p:3 l:i w:x 0x2D /r ; s:AVX, t:CONVERT, w:W|R, e:3, a:IWO64 -VUCOMISS ; Vss,Wss ; Fv ; vex m:1 p:0 l:i w:i 0x2E /r ; s:AVX, t:AVX, w:R|R|W, f:COMIS, e:3 -VUCOMISD ; Vsd,Wsd ; Fv ; vex m:1 p:1 l:i w:i 0x2E /r ; s:AVX, t:AVX, w:R|R|W, f:COMIS, e:3 -VCOMISS ; Vss,Wss ; Fv ; vex m:1 p:0 l:i w:i 0x2F /r ; s:AVX, t:AVX, w:R|R|W, f:COMIS, e:3 -VCOMISD ; Vsd,Wsd ; Fv ; vex m:1 p:1 l:i w:i 0x2F /r ; s:AVX, t:AVX, w:R|R|W, f:COMIS, e:3 +VCVTTSS2SI ; Gy,Wss ; ; vex m:1 p:2 l:i w:x 0x2C /r ; s:AVX, t:CONVERT, w:W|R, e:3, a:IWO64, x:IE|PE +VCVTTSD2SI ; Gy,Wsd ; ; vex m:1 p:3 l:i w:x 0x2C /r ; s:AVX, t:CONVERT, w:W|R, e:3, a:IWO64, x:IE|PE +VCVTSS2SI ; Gy,Wss ; ; vex m:1 p:2 l:i w:x 0x2D /r ; s:AVX, t:CONVERT, w:W|R, e:3, a:IWO64, x:IE|PE +VCVTSD2SI ; Gy,Wsd ; ; vex m:1 p:3 l:i w:x 0x2D /r ; s:AVX, t:CONVERT, w:W|R, e:3, a:IWO64, x:IE|PE +VUCOMISS ; Vss,Wss ; Fv ; vex m:1 p:0 l:i w:i 0x2E /r ; s:AVX, t:AVX, w:R|R|W, f:COMIS, e:3, x:IE|DE +VUCOMISD ; Vsd,Wsd ; Fv ; vex m:1 p:1 l:i w:i 0x2E /r ; s:AVX, t:AVX, w:R|R|W, f:COMIS, e:3, x:IE|DE +VCOMISS ; Vss,Wss ; Fv ; vex m:1 p:0 l:i w:i 0x2F /r ; s:AVX, t:AVX, w:R|R|W, f:COMIS, e:3, x:IE|DE +VCOMISD ; Vsd,Wsd ; Fv ; vex m:1 p:1 l:i w:i 0x2F /r ; s:AVX, t:AVX, w:R|R|W, f:COMIS, e:3, x:IE|DE # 0x30 - 0x3F @@ -124,10 +124,10 @@ KTESTD ; rKd,mKd ; ; vex m:1 p:1 l:0 w:1 # 0x50 - 0x5F VMOVMSKPS ; Gy,Ux ; ; vex m:1 p:0 l:x w:i 0x50 /r:reg ; s:AVX, t:DATAXFER, w:W|R, e:7, a:D64 VMOVMSKPD ; Gy,Ux ; ; vex m:1 p:1 l:x w:i 0x50 /r:reg ; s:AVX, t:DATAXFER, w:W|R, e:7, a:D64 -VSQRTPS ; Vx,Wx ; ; vex m:1 p:0 l:x w:i 0x51 /r ; s:AVX, t:AVX, w:W|R, e:2 -VSQRTPD ; Vx,Wx ; ; vex m:1 p:1 l:x w:i 0x51 /r ; s:AVX, t:AVX, w:W|R, e:2 -VSQRTSS ; Vss,Hss,Wss ; ; vex m:1 p:2 l:i w:i 0x51 /r ; s:AVX, t:AVX, w:W|R|R, e:3 -VSQRTSD ; Vsd,Hsd,Wsd ; ; vex m:1 p:3 l:i w:i 0x51 /r ; s:AVX, t:AVX, w:W|R|R, e:3 +VSQRTPS ; Vx,Wx ; ; vex m:1 p:0 l:x w:i 0x51 /r ; s:AVX, t:AVX, w:W|R, e:2, x:IE|PE|DE +VSQRTPD ; Vx,Wx ; ; vex m:1 p:1 l:x w:i 0x51 /r ; s:AVX, t:AVX, w:W|R, e:2, x:IE|PE|DE +VSQRTSS ; Vss,Hss,Wss ; ; vex m:1 p:2 l:i w:i 0x51 /r ; s:AVX, t:AVX, w:W|R|R, e:3, x:IE|PE|DE +VSQRTSD ; Vsd,Hsd,Wsd ; ; vex m:1 p:3 l:i w:i 0x51 /r ; s:AVX, t:AVX, w:W|R|R, e:3, x:IE|PE|DE VRSQRTPS ; Vx,Wx ; ; vex m:1 p:0 l:x w:i 0x52 /r ; s:AVX, t:AVX, w:W|R, e:4 VRSQRTSS ; Vss,Hss,Wss ; ; vex m:1 p:2 l:i w:i 0x52 /r ; s:AVX, t:AVX, w:W|R|R, e:5 VRCPPS ; Vps,Wps ; ; vex m:1 p:0 l:x w:i 0x53 /r ; s:AVX, t:AVX, w:W|R, e:4 @@ -140,39 +140,39 @@ VORPS ; Vps,Hps,Wps ; ; vex m:1 p:0 l:x w:i VORPD ; Vpd,Hpd,Wpd ; ; vex m:1 p:1 l:x w:i 0x56 /r ; s:AVX, t:LOGICAL_FP, w:W|R|R, e:4 VXORPS ; Vps,Hps,Wps ; ; vex m:1 p:0 l:x w:i 0x57 /r ; s:AVX, t:LOGICAL_FP, w:W|R|R, e:4 VXORPD ; Vpd,Hpd,Wpd ; ; vex m:1 p:1 l:x w:i 0x57 /r ; s:AVX, t:LOGICAL_FP, w:W|R|R, e:4 -VADDPS ; Vps,Hps,Wps ; ; vex m:1 p:0 l:x w:i 0x58 /r ; s:AVX, t:AVX, w:W|R|R, e:2 -VADDPD ; Vpd,Hpd,Wpd ; ; vex m:1 p:1 l:x w:i 0x58 /r ; s:AVX, t:AVX, w:W|R|R, e:2 -VADDSS ; Vss,Hss,Wss ; ; vex m:1 p:2 l:i w:i 0x58 /r ; s:AVX, t:AVX, w:W|R|R, e:2 -VADDSD ; Vsd,Hsd,Wsd ; ; vex m:1 p:3 l:i w:i 0x58 /r ; s:AVX, t:AVX, w:W|R|R, e:2 -VMULPS ; Vps,Hps,Wps ; ; vex m:1 p:0 l:x w:i 0x59 /r ; s:AVX, t:AVX, w:W|R|R, e:2 -VMULPD ; Vpd,Hpd,Wpd ; ; vex m:1 p:1 l:x w:i 0x59 /r ; s:AVX, t:AVX, w:W|R|R, e:2 -VMULSS ; Vss,Hss,Wss ; ; vex m:1 p:2 l:i w:i 0x59 /r ; s:AVX, t:AVX, w:W|R|R, e:2 -VMULSD ; Vsd,Hsd,Wsd ; ; vex m:1 p:3 l:i w:i 0x59 /r ; s:AVX, t:AVX, w:W|R|R, e:2 -VCVTPS2PD ; Vpd,Wq ; ; vex m:1 p:0 l:0 w:i 0x5A /r ; s:AVX, t:CONVERT, w:W|R, e:2 -VCVTPS2PD ; Vqq,Wdq ; ; vex m:1 p:0 l:1 w:i 0x5A /r ; s:AVX, t:CONVERT, w:W|R, e:2 -VCVTPD2PS ; Vdq,Wdq ; ; vex m:1 p:1 l:0 w:i 0x5A /r ; s:AVX, t:CONVERT, w:W|R, e:2 -VCVTPD2PS ; Vdq,Wqq ; ; vex m:1 p:1 l:1 w:i 0x5A /r ; s:AVX, t:CONVERT, w:W|R, e:2 -VCVTSS2SD ; Vsd,Hx,Wss ; ; vex m:1 p:2 l:i w:i 0x5A /r ; s:AVX, t:CONVERT, w:W|R|R, e:3 -VCVTSD2SS ; Vss,Hx,Wsd ; ; vex m:1 p:3 l:i w:i 0x5A /r ; s:AVX, t:CONVERT, w:W|R|R, e:3 -VCVTDQ2PS ; Vps,Wps ; ; vex m:1 p:0 l:x w:i 0x5B /r ; s:AVX, t:CONVERT, w:W|R, e:2 -VCVTPS2DQ ; Vps,Wps ; ; vex m:1 p:1 l:x w:i 0x5B /r ; s:AVX, t:CONVERT, w:W|R, e:2 -VCVTTPS2DQ ; Vps,Wps ; ; vex m:1 p:2 l:x w:i 0x5B /r ; s:AVX, t:CONVERT, w:W|R, e:2 -VSUBPS ; Vps,Hps,Wps ; ; vex m:1 p:0 l:x w:i 0x5C /r ; s:AVX, t:AVX, w:W|R|R, e:2 -VSUBPD ; Vpd,Hpd,Wpd ; ; vex m:1 p:1 l:x w:i 0x5C /r ; s:AVX, t:AVX, w:W|R|R, e:2 -VSUBSS ; Vss,Hss,Wss ; ; vex m:1 p:2 l:i w:i 0x5C /r ; s:AVX, t:AVX, w:W|R|R, e:2 -VSUBSD ; Vsd,Hsd,Wsd ; ; vex m:1 p:3 l:i w:i 0x5C /r ; s:AVX, t:AVX, w:W|R|R, e:2 -VMINPS ; Vps,Hps,Wps ; ; vex m:1 p:0 l:x w:i 0x5D /r ; s:AVX, t:AVX, w:W|R|R, e:2 -VMINPD ; Vpd,Hpd,Wpd ; ; vex m:1 p:1 l:x w:i 0x5D /r ; s:AVX, t:AVX, w:W|R|R, e:2 -VMINSS ; Vss,Hss,Wss ; ; vex m:1 p:2 l:i w:i 0x5D /r ; s:AVX, t:AVX, w:W|R|R, e:2 -VMINSD ; Vsd,Hsd,Wsd ; ; vex m:1 p:3 l:i w:i 0x5D /r ; s:AVX, t:AVX, w:W|R|R, e:2 -VDIVPS ; Vps,Hps,Wps ; ; vex m:1 p:0 l:x w:i 0x5E /r ; s:AVX, t:AVX, w:W|R|R, e:2 -VDIVPD ; Vpd,Hpd,Wpd ; ; vex m:1 p:1 l:x w:i 0x5E /r ; s:AVX, t:AVX, w:W|R|R, e:2 -VDIVSS ; Vss,Hss,Wss ; ; vex m:1 p:2 l:i w:i 0x5E /r ; s:AVX, t:AVX, w:W|R|R, e:2 -VDIVSD ; Vsd,Hsd,Wsd ; ; vex m:1 p:3 l:i w:i 0x5E /r ; s:AVX, t:AVX, w:W|R|R, e:2 -VMAXPS ; Vps,Hps,Wps ; ; vex m:1 p:0 l:x w:i 0x5F /r ; s:AVX, t:AVX, w:W|R|R, e:2 -VMAXPD ; Vpd,Hpd,Wpd ; ; vex m:1 p:1 l:x w:i 0x5F /r ; s:AVX, t:AVX, w:W|R|R, e:2 -VMAXSS ; Vss,Hss,Wss ; ; vex m:1 p:2 l:i w:i 0x5F /r ; s:AVX, t:AVX, w:W|R|R, e:2 -VMAXSD ; Vsd,Hsd,Wsd ; ; vex m:1 p:3 l:i w:i 0x5F /r ; s:AVX, t:AVX, w:W|R|R, e:2 +VADDPS ; Vps,Hps,Wps ; ; vex m:1 p:0 l:x w:i 0x58 /r ; s:AVX, t:AVX, w:W|R|R, e:2, x:IE|OE|UE|PE|DE +VADDPD ; Vpd,Hpd,Wpd ; ; vex m:1 p:1 l:x w:i 0x58 /r ; s:AVX, t:AVX, w:W|R|R, e:2, x:IE|OE|UE|PE|DE +VADDSS ; Vss,Hss,Wss ; ; vex m:1 p:2 l:i w:i 0x58 /r ; s:AVX, t:AVX, w:W|R|R, e:2, x:IE|OE|UE|PE|DE +VADDSD ; Vsd,Hsd,Wsd ; ; vex m:1 p:3 l:i w:i 0x58 /r ; s:AVX, t:AVX, w:W|R|R, e:2, x:IE|OE|UE|PE|DE +VMULPS ; Vps,Hps,Wps ; ; vex m:1 p:0 l:x w:i 0x59 /r ; s:AVX, t:AVX, w:W|R|R, e:2, x:IE|OE|UE|PE|DE +VMULPD ; Vpd,Hpd,Wpd ; ; vex m:1 p:1 l:x w:i 0x59 /r ; s:AVX, t:AVX, w:W|R|R, e:2, x:IE|OE|UE|PE|DE +VMULSS ; Vss,Hss,Wss ; ; vex m:1 p:2 l:i w:i 0x59 /r ; s:AVX, t:AVX, w:W|R|R, e:2, x:IE|OE|UE|PE|DE +VMULSD ; Vsd,Hsd,Wsd ; ; vex m:1 p:3 l:i w:i 0x59 /r ; s:AVX, t:AVX, w:W|R|R, e:2, x:IE|OE|UE|PE|DE +VCVTPS2PD ; Vpd,Wq ; ; vex m:1 p:0 l:0 w:i 0x5A /r ; s:AVX, t:CONVERT, w:W|R, e:2, x:IE|DE +VCVTPS2PD ; Vqq,Wdq ; ; vex m:1 p:0 l:1 w:i 0x5A /r ; s:AVX, t:CONVERT, w:W|R, e:2, x:IE|DE +VCVTPD2PS ; Vdq,Wdq ; ; vex m:1 p:1 l:0 w:i 0x5A /r ; s:AVX, t:CONVERT, w:W|R, e:2, x:IE|OE|UE|PE|DE +VCVTPD2PS ; Vdq,Wqq ; ; vex m:1 p:1 l:1 w:i 0x5A /r ; s:AVX, t:CONVERT, w:W|R, e:2, x:IE|OE|UE|PE|DE +VCVTSS2SD ; Vsd,Hx,Wss ; ; vex m:1 p:2 l:i w:i 0x5A /r ; s:AVX, t:CONVERT, w:W|R|R, e:3, x:IE|DE +VCVTSD2SS ; Vss,Hx,Wsd ; ; vex m:1 p:3 l:i w:i 0x5A /r ; s:AVX, t:CONVERT, w:W|R|R, e:3, x:IE|OE|UE|PE|DE +VCVTDQ2PS ; Vps,Wps ; ; vex m:1 p:0 l:x w:i 0x5B /r ; s:AVX, t:CONVERT, w:W|R, e:2, x:PE +VCVTPS2DQ ; Vps,Wps ; ; vex m:1 p:1 l:x w:i 0x5B /r ; s:AVX, t:CONVERT, w:W|R, e:2, x:IE|PE +VCVTTPS2DQ ; Vps,Wps ; ; vex m:1 p:2 l:x w:i 0x5B /r ; s:AVX, t:CONVERT, w:W|R, e:2, x:IE|PE +VSUBPS ; Vps,Hps,Wps ; ; vex m:1 p:0 l:x w:i 0x5C /r ; s:AVX, t:AVX, w:W|R|R, e:2, x:IE|OE|UE|PE|DE +VSUBPD ; Vpd,Hpd,Wpd ; ; vex m:1 p:1 l:x w:i 0x5C /r ; s:AVX, t:AVX, w:W|R|R, e:2, x:IE|OE|UE|PE|DE +VSUBSS ; Vss,Hss,Wss ; ; vex m:1 p:2 l:i w:i 0x5C /r ; s:AVX, t:AVX, w:W|R|R, e:2, x:IE|OE|UE|PE|DE +VSUBSD ; Vsd,Hsd,Wsd ; ; vex m:1 p:3 l:i w:i 0x5C /r ; s:AVX, t:AVX, w:W|R|R, e:2, x:IE|OE|UE|PE|DE +VMINPS ; Vps,Hps,Wps ; ; vex m:1 p:0 l:x w:i 0x5D /r ; s:AVX, t:AVX, w:W|R|R, e:2, x:IE|DE +VMINPD ; Vpd,Hpd,Wpd ; ; vex m:1 p:1 l:x w:i 0x5D /r ; s:AVX, t:AVX, w:W|R|R, e:2, x:IE|DE +VMINSS ; Vss,Hss,Wss ; ; vex m:1 p:2 l:i w:i 0x5D /r ; s:AVX, t:AVX, w:W|R|R, e:2, x:IE|DE +VMINSD ; Vsd,Hsd,Wsd ; ; vex m:1 p:3 l:i w:i 0x5D /r ; s:AVX, t:AVX, w:W|R|R, e:2, x:IE|DE +VDIVPS ; Vps,Hps,Wps ; ; vex m:1 p:0 l:x w:i 0x5E /r ; s:AVX, t:AVX, w:W|R|R, e:2, x:IE|OE|UE|PE|DE|ZE +VDIVPD ; Vpd,Hpd,Wpd ; ; vex m:1 p:1 l:x w:i 0x5E /r ; s:AVX, t:AVX, w:W|R|R, e:2, x:IE|OE|UE|PE|DE|ZE +VDIVSS ; Vss,Hss,Wss ; ; vex m:1 p:2 l:i w:i 0x5E /r ; s:AVX, t:AVX, w:W|R|R, e:2, x:IE|OE|UE|PE|DE|ZE +VDIVSD ; Vsd,Hsd,Wsd ; ; vex m:1 p:3 l:i w:i 0x5E /r ; s:AVX, t:AVX, w:W|R|R, e:2, x:IE|OE|UE|PE|DE|ZE +VMAXPS ; Vps,Hps,Wps ; ; vex m:1 p:0 l:x w:i 0x5F /r ; s:AVX, t:AVX, w:W|R|R, e:2, x:IE|DE +VMAXPD ; Vpd,Hpd,Wpd ; ; vex m:1 p:1 l:x w:i 0x5F /r ; s:AVX, t:AVX, w:W|R|R, e:2, x:IE|DE +VMAXSS ; Vss,Hss,Wss ; ; vex m:1 p:2 l:i w:i 0x5F /r ; s:AVX, t:AVX, w:W|R|R, e:2, x:IE|DE +VMAXSD ; Vsd,Hsd,Wsd ; ; vex m:1 p:3 l:i w:i 0x5F /r ; s:AVX, t:AVX, w:W|R|R, e:2, x:IE|DE # 0x60 - 0x6F @@ -206,10 +206,10 @@ VPCMPEQW ; Vx,Hx,Wx ; ; vex m:1 p:1 l:x w:i VPCMPEQD ; Vx,Hx,Wx ; ; vex m:1 p:1 l:x w:i 0x76 /r ; s:AVX, t:AVX, w:W|R|R, e:4 VZEROUPPER ; ; BANK ; vex m:1 p:0 l:0 0x77 ; s:AVX, t:AVX, w:W, e:8 VZEROALL ; ; BANK ; vex m:1 p:0 l:1 0x77 ; s:AVX, t:AVX, w:W, e:8 -VHADDPD ; Vpd,Hpd,Wpd ; ; vex m:1 p:1 l:x w:i 0x7C /r ; s:AVX, t:AVX, w:W|R|R, e:2 -VHADDPS ; Vps,Hps,Wps ; ; vex m:1 p:3 l:x w:i 0x7C /r ; s:AVX, t:AVX, w:W|R|R, e:2 -VHSUBPD ; Vpd,Hpd,Wpd ; ; vex m:1 p:1 l:x w:i 0x7D /r ; s:AVX, t:AVX, w:W|R|R, e:2 -VHSUBPS ; Vps,Hps,Wps ; ; vex m:1 p:3 l:x w:i 0x7D /r ; s:AVX, t:AVX, w:W|R|R, e:2 +VHADDPD ; Vpd,Hpd,Wpd ; ; vex m:1 p:1 l:x w:i 0x7C /r ; s:AVX, t:AVX, w:W|R|R, e:2, x:IE|OE|UE|PE|DE +VHADDPS ; Vps,Hps,Wps ; ; vex m:1 p:3 l:x w:i 0x7C /r ; s:AVX, t:AVX, w:W|R|R, e:2, x:IE|OE|UE|PE|DE +VHSUBPD ; Vpd,Hpd,Wpd ; ; vex m:1 p:1 l:x w:i 0x7D /r ; s:AVX, t:AVX, w:W|R|R, e:2, x:IE|OE|UE|PE|DE +VHSUBPS ; Vps,Hps,Wps ; ; vex m:1 p:3 l:x w:i 0x7D /r ; s:AVX, t:AVX, w:W|R|R, e:2, x:IE|OE|UE|PE|DE VMOVD ; Ey,Vd ; ; vex m:1 p:1 l:0 w:0 0x7E /r ; s:AVX, t:DATAXFER, w:W|R, e:5, a:IWO64 VMOVQ ; Ey,Vq ; ; vex m:1 p:1 l:0 w:1 0x7E /r ; s:AVX, t:DATAXFER, w:W|R, e:5, a:IWO64 VMOVQ ; Vdq,Wq ; ; vex m:1 p:2 l:0 w:i 0x7E /r ; s:AVX, t:DATAXFER, w:W|R, e:5 @@ -241,10 +241,10 @@ CLEVICT1 ; M? ; ; vex m:1 p:2 0xAE /7 # 0xB0 - 0xBF # 0xC0 - 0xCF -VCMPPS ; Vss,Hss,Wss,Ib ; ; vex m:1 p:0 l:i w:i 0xC2 /r ib ; s:AVX, t:AVX, w:W|R|R|R, e:3 -VCMPPD ; Vpd,Hpd,Wpd,Ib ; ; vex m:1 p:1 l:x w:i 0xC2 /r ib ; s:AVX, t:AVX, w:W|R|R|R, e:3 -VCMPSS ; Vss,Hss,Wss,Ib ; ; vex m:1 p:2 l:i w:i 0xC2 /r ib ; s:AVX, t:AVX, w:W|R|R|R, e:3 -VCMPSD ; Vsd,Hsd,Wsd,Ib ; ; vex m:1 p:3 l:i w:i 0xC2 /r ib ; s:AVX, t:AVX, w:W|R|R|R, e:3 +VCMPPS ; Vss,Hss,Wss,Ib ; ; vex m:1 p:0 l:i w:i 0xC2 /r ib ; s:AVX, t:AVX, w:W|R|R|R, e:3, x:IE|DE +VCMPPD ; Vpd,Hpd,Wpd,Ib ; ; vex m:1 p:1 l:x w:i 0xC2 /r ib ; s:AVX, t:AVX, w:W|R|R|R, e:3, x:IE|DE +VCMPSS ; Vss,Hss,Wss,Ib ; ; vex m:1 p:2 l:i w:i 0xC2 /r ib ; s:AVX, t:AVX, w:W|R|R|R, e:3, x:IE|DE +VCMPSD ; Vsd,Hsd,Wsd,Ib ; ; vex m:1 p:3 l:i w:i 0xC2 /r ib ; s:AVX, t:AVX, w:W|R|R|R, e:3, x:IE|DE VPINSRW ; Vdq,Hdq,Mw,Ib ; ; vex m:1 p:1 l:0 w:i 0xC4 /r:mem ib ; s:AVX, t:AVX, w:W|R|R|R, e:5 VPINSRW ; Vdq,Hdq,Rd,Ib ; ; vex m:1 p:1 l:0 w:i 0xC4 /r:reg ib ; s:AVX, t:AVX, w:W|R|R|R, e:5 VPEXTRW ; Gy,Udq,Ib ; ; vex m:1 p:1 l:0 w:i 0xC5 /r:reg ib ; s:AVX, t:AVX, w:W|R|R, e:5, a:D64 @@ -252,8 +252,8 @@ VSHUFPS ; Vps,Hps,Wps,Ib ; ; vex m:1 p:0 l:x w:i VSHUFPD ; Vpd,Hpd,Wpd,Ib ; ; vex m:1 p:1 l:x w:i 0xC6 /r ib ; s:AVX, t:AVX, w:W|R|R|R, e:4 # 0xD0 - 0xDF -VADDSUBPD ; Vpd,Hpd,Wpd ; ; vex m:1 p:1 l:x w:i 0xD0 /r ; s:AVX, t:AVX, w:W|R|R, e:2 -VADDSUBPS ; Vps,Hps,Wps ; ; vex m:1 p:3 l:x w:i 0xD0 /r ; s:AVX, t:AVX, w:W|R|R, e:2 +VADDSUBPD ; Vpd,Hpd,Wpd ; ; vex m:1 p:1 l:x w:i 0xD0 /r ; s:AVX, t:AVX, w:W|R|R, e:2, x:IE|OE|UE|PE|DE +VADDSUBPS ; Vps,Hps,Wps ; ; vex m:1 p:3 l:x w:i 0xD0 /r ; s:AVX, t:AVX, w:W|R|R, e:2, x:IE|OE|UE|PE|DE VPSRLW ; Vx,Hx,Wdq ; ; vex m:1 p:1 l:x w:i 0xD1 /r ; s:AVX, t:AVX, w:W|R|R, e:4 VPSRLD ; Vx,Hx,Wdq ; ; vex m:1 p:1 l:x w:i 0xD2 /r ; s:AVX, t:AVX, w:W|R|R, e:4 VPSRLQ ; Vx,Hx,Wdq ; ; vex m:1 p:1 l:x w:i 0xD3 /r ; s:AVX, t:AVX, w:W|R|R, e:4 @@ -277,10 +277,10 @@ VPSRAD ; Vx,Hx,Wdq ; ; vex m:1 p:1 l:x w:i VPAVGW ; Vx,Hx,Wx ; ; vex m:1 p:1 l:x w:i 0xE3 /r ; s:AVX, t:AVX, w:W|R|R, e:4 VPMULHUW ; Vx,Hx,Wx ; ; vex m:1 p:1 l:x w:i 0xE4 /r ; s:AVX, t:AVX, w:W|R|R, e:4 VPMULHW ; Vx,Hx,Wx ; ; vex m:1 p:1 l:x w:i 0xE5 /r ; s:AVX, t:AVX, w:W|R|R, e:4 -VCVTTPD2DQ ; Vdq,Wx ; ; vex m:1 p:1 l:x w:i 0xE6 /r ; s:AVX, t:CONVERT, w:W|R, e:2 +VCVTTPD2DQ ; Vdq,Wx ; ; vex m:1 p:1 l:x w:i 0xE6 /r ; s:AVX, t:CONVERT, w:W|R, e:2, x:IE|PE VCVTDQ2PD ; Vdq,Wq ; ; vex m:1 p:2 l:0 w:i 0xE6 /r ; s:AVX, t:CONVERT, w:W|R, e:5 VCVTDQ2PD ; Vqq,Wdq ; ; vex m:1 p:2 l:1 w:i 0xE6 /r ; s:AVX, t:CONVERT, w:W|R, e:5 -VCVTPD2DQ ; Vdq,Wx ; ; vex m:1 p:3 l:x w:i 0xE6 /r ; s:AVX, t:CONVERT, w:W|R, e:2 +VCVTPD2DQ ; Vdq,Wx ; ; vex m:1 p:3 l:x w:i 0xE6 /r ; s:AVX, t:CONVERT, w:W|R, e:2, x:IE|PE VMOVNTDQ ; Mx,Vx ; ; vex m:1 p:1 l:x w:i 0xE7 /r:mem ; s:AVX, t:AVX, w:W|R, e:1 VPSUBSB ; Vx,Hx,Wx ; ; vex m:1 p:1 l:x w:i 0xE8 /r ; s:AVX, t:AVX, w:W|R|R, e:4 VPSUBSW ; Vx,Hx,Wx ; ; vex m:1 p:1 l:x w:i 0xE9 /r ; s:AVX, t:AVX, w:W|R|R, e:4 diff --git a/isagenerator/instructions/table_vex_2.dat b/isagenerator/instructions/table_vex_2.dat index ec7eebe..634f55a 100644 --- a/isagenerator/instructions/table_vex_2.dat +++ b/isagenerator/instructions/table_vex_2.dat @@ -22,8 +22,8 @@ VTESTPS ; Vx,Wx ; Fv ; vex m:2 p:1 l:x w:0 VTESTPD ; Vx,Wx ; Fv ; vex m:2 p:1 l:x w:0 0x0F /r ; s:AVX, t:LOGICAL_FP, w:R|R|W, f:VPTEST, e:4 # 0x10 - 0x1F -VCVTPH2PS ; Vdq,Wq ; ; vex m:2 p:1 l:0 w:0 0x13 /r ; s:F16C, t:CONVERT, w:W|R, e:11 -VCVTPH2PS ; Vqq,Wdq ; ; vex m:2 p:1 l:1 w:0 0x13 /r ; s:F16C, t:CONVERT, w:W|R, e:11 +VCVTPH2PS ; Vdq,Wq ; ; vex m:2 p:1 l:0 w:0 0x13 /r ; s:F16C, t:CONVERT, w:W|R, e:11, x:IE +VCVTPH2PS ; Vqq,Wdq ; ; vex m:2 p:1 l:1 w:0 0x13 /r ; s:F16C, t:CONVERT, w:W|R, e:11, x:IE VPERMPS ; Vqq,Hqq,Wqq ; ; vex m:2 p:1 l:1 w:0 0x16 /r ; s:AVX2, t:AVX2, w:W|R|R, e:4 VPTEST ; Vx,Wx ; Fv ; vex m:2 p:1 l:x w:i 0x17 /r ; s:AVX, t:LOGICAL, w:R|R|W, f:VPTEST, e:4 VBROADCASTSS ; Vx,Wss ; ; vex m:2 p:1 l:x w:0 0x18 /r ; s:AVX, t:BROADCAST, w:W|R, e:6 @@ -88,6 +88,8 @@ VPSRAVD ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:0 VPSLLVD ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:0 0x47 /r ; s:AVX2, t:AVX2, w:W|R|R, e:4 VPSLLVQ ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:1 0x47 /r ; s:AVX2, t:AVX2, w:W|R|R, e:4 +TTMMULTF32PS ; rTt,mTt,vTt ; ; vex m:2 p:0 l:0 w:0 0x48 /r:reg ; s:AMXTRANSPOSE, t:AMX, w:RW|R|R, m:NOTSX|O64, e:AMX_E10 +TMMULTF32PS ; rTt,mTt,vTt ; ; vex m:2 p:1 l:0 w:0 0x48 /r:reg ; s:AMXTF32, t:AMX, w:RW|R|R, m:NOTSX|O64, e:AMX_E4 LDTILECFG ; Moq ; ; vex m:2 p:0 l:0 w:0 0x49 /0:mem ; s:AMXTILE, t:AMX, w:R, m:NOTSX|O64, e:AMX_E1 STTILECFG ; Moq ; ; vex m:2 p:1 l:0 w:0 0x49 /0:mem ; s:AMXTILE, t:AMX, w:W, m:NOTSX|O64, e:AMX_E2 TILELOADD ; rTt,Mt ; ; vex m:2 p:3 l:0 w:0 0x4B /r:mem sibmem ;s:AMXTILE, t:AMX, w:W|R, m:NOTSX|O64, e:AMX_E3 @@ -95,6 +97,8 @@ TILESTORED ; Mt,rTt ; ; vex m:2 p:2 l:0 w:0 TILELOADDT1 ; rTt,Mt ; ; vex m:2 p:1 l:0 w:0 0x4B /r:mem sibmem ;s:AMXTILE, t:AMX, w:W|R, m:NOTSX|O64, e:AMX_E3 TILERELEASE ; ; ; vex m:2 p:0 l:0 w:0 0x49 /0xC0 ; s:AMXTILE, t:AMX, m:NOTSX|O64, e:AMX_E6 TILEZERO ; rTt ; ; vex m:2 p:3 l:0 w:0 0x49 /r:reg rm:0 ; s:AMXTILE, t:AMX, w:W, m:NOTSX|O64, e:AMX_E5 +TILELOADDRST1 ; rTt,Mt ; ; vex m:2 p:1 l:0 w:0 0x4A /r:mem sibmem ; s:AMXMOVRS, t:AMX, w:W|R, m:NOTSX|O64, e:AMX_E3 +TILELOADDRS ; rTt,Mt ; ; vex m:2 p:3 l:0 w:0 0x4A /r:mem sibmem ; s:AMXMOVRS, t:AMX, w:W|R, m:NOTSX|O64, e:AMX_E3 # 0x50 - 0x5F VPDPBUUD ; Vx,Hx,Wx ; ; vex m:2 p:0 l:x w:0 0x50 /r ; s:AVXVNNIINT8, t:AVXVNNIINT8, w:RW|R|R, e:4 @@ -118,10 +122,22 @@ TDPBUUD ; rTt,mTt,vTt ; ; vex m:2 p:0 l:0 w:0 TDPBUSD ; rTt,mTt,vTt ; ; vex m:2 p:1 l:0 w:0 0x5E /r:reg ; s:AMXINT8, t:AMX, w:RW|R|R, m:NOTSX|O64, e:AMX_E4 TDPBSUD ; rTt,mTt,vTt ; ; vex m:2 p:2 l:0 w:0 0x5E /r:reg ; s:AMXINT8, t:AMX, w:RW|R|R, m:NOTSX|O64, e:AMX_E4 TDPBSSD ; rTt,mTt,vTt ; ; vex m:2 p:3 l:0 w:0 0x5E /r:reg ; s:AMXINT8, t:AMX, w:RW|R|R, m:NOTSX|O64, e:AMX_E4 +TTRANSPOSED ; rTt,mTt ; ; vex m:2 p:2 l:0 w:0 0x5F /r:reg ; s:AMXTRANSPOSE, t:AMX, w:W|R, m:NOTSX|O64, e:AMX_E9 # 0x60 - 0x6F +TCONJTCMMIMFP16PS ; rTt,mTt,vTt ; ; vex m:2 p:0 l:0 w:0 0x6B /r:reg ; s:AMXTRANSPOSE, t:AMX, w:RW|R|R, m:NOTSX|O64, e:AMX_E10 +TCONJTFP16 ; rTt,mTt ; ; vex m:2 p:1 l:0 w:0 0x6B /r:reg ; s:AMXTRANSPOSE, t:AMX, w:W|R, m:NOTSX|O64, e:AMX_E9 +TTCMMRLFP16PS ; rTt,mTt,vTt ; ; vex m:2 p:2 l:0 w:0 0x6B /r:reg ; s:AMXTRANSPOSE, t:AMX, w:RW|R|R, m:NOTSX|O64, e:AMX_E10 +TTCMMIMFP16PS ; rTt,mTt,vTt ; ; vex m:2 p:3 l:0 w:0 0x6B /r:reg ; s:AMXTRANSPOSE, t:AMX, w:RW|R|R, m:NOTSX|O64, e:AMX_E10 TCMMRLFP16PS ; rTt,mTt,vTt ; ; vex m:2 p:0 l:0 w:0 0x6C /r:reg ; s:AMXCOMPLEX, t:AMX, w:RW|R|R, m:NOTSX|O64, e:AMX_E4 TCMMIMFP16PS ; rTt,mTt,vTt ; ; vex m:2 p:1 l:0 w:0 0x6C /r:reg ; s:AMXCOMPLEX, t:AMX, w:RW|R|R, m:NOTSX|O64, e:AMX_E4 +TTDPBF16PS ; rTt,mTt,vTt ; ; vex m:2 p:2 l:0 w:0 0x6C /r:reg ; s:AMXTRANSPOSE, t:AMX, w:RW|R|R, m:NOTSX|O64, e:AMX_E10 +TTDPFP16PS ; rTt,mTt,vTt ; ; vex m:2 p:3 l:0 w:0 0x6C /r:reg ; s:AMXTRANSPOSE, t:AMX, w:RW|R|R, m:NOTSX|O64, e:AMX_E10 +T2RPNTLVWZ0 ; rTt+1,Mt ; ; vex m:2 p:0 l:0 w:0 0x6E /r:mem sibmem ; s:AMXTRANSPOSE, t:AMX, w:W|R, m:NOTSX|O64, e:AMX_E11 +T2RPNTLVWZ1 ; rTt+1,Mt ; ; vex m:2 p:1 l:0 w:0 0x6E /r:mem sibmem ; s:AMXTRANSPOSE, t:AMX, w:W|R, m:NOTSX|O64, e:AMX_E11 +T2RPNTLVWZ0T1 ; rTt+1,Mt ; ; vex m:2 p:0 l:0 w:0 0x6F /r:mem sibmem ; s:AMXTRANSPOSE, t:AMX, w:W|R, m:NOTSX|O64, e:AMX_E11 +T2RPNTLVWZ1T1 ; rTt+1,Mt ; ; vex m:2 p:1 l:0 w:0 0x6F /r:mem sibmem ; s:AMXTRANSPOSE, t:AMX, w:W|R, m:NOTSX|O64, e:AMX_E11 + # 0x70 - 0x7F VCVTNEPS2BF16 ; Vx,Wx ; ; vex m:2 p:2 l:x w:0 0x72 /r ; s:AVXNECONVERT, t:AVXNECONVERT, w:W|R, e:4 @@ -144,48 +160,48 @@ VGATHERDPD ; Vx,Mvm32h,Hx ; ; vex m:2 p:1 l:x w:1 VGATHERQPS ; Vdq,Mvm64n,Hdq ; ; vex m:2 p:1 l:x w:0 0x93 /r:mem vsib ; s:AVX2GATHER, t:AVX2GATHER, w:CRW|R|RW, e:12 VGATHERQPD ; Vx,Mvm64n,Hx ; ; vex m:2 p:1 l:x w:1 0x93 /r:mem vsib ; s:AVX2GATHER, t:AVX2GATHER, w:CRW|R|RW, e:12 -VFMADDSUB132PS ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:0 0x96 /r ; s:FMA, t:VFMA, w:RW|R|R, e:2 -VFMADDSUB132PD ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:1 0x96 /r ; s:FMA, t:VFMA, w:RW|R|R, e:2 -VFMSUBADD132PS ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:0 0x97 /r ; s:FMA, t:VFMA, w:RW|R|R, e:2 -VFMSUBADD132PD ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:1 0x97 /r ; s:FMA, t:VFMA, w:RW|R|R, e:2 -VFMADD132PS ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:0 0x98 /r ; s:FMA, t:VFMA, w:RW|R|R, e:2 -VFMADD132PD ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:1 0x98 /r ; s:FMA, t:VFMA, w:RW|R|R, e:2 -VFMADD132SS ; Vdq,Hdq,Wss ; ; vex m:2 p:1 l:i w:0 0x99 /r ; s:FMA, t:VFMA, w:RW|R|R, e:3 -VFMADD132SD ; Vdq,Hdq,Wsd ; ; vex m:2 p:1 l:i w:1 0x99 /r ; s:FMA, t:VFMA, w:RW|R|R, e:3 -VFMSUB132PS ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:0 0x9A /r ; s:FMA, t:VFMA, w:RW|R|R, e:2 -VFMSUB132PD ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:1 0x9A /r ; s:FMA, t:VFMA, w:RW|R|R, e:2 -VFMSUB132SS ; Vdq,Hdq,Wss ; ; vex m:2 p:1 l:i w:0 0x9B /r ; s:FMA, t:VFMA, w:RW|R|R, e:3 -VFMSUB132SD ; Vdq,Hdq,Wsd ; ; vex m:2 p:1 l:i w:1 0x9B /r ; s:FMA, t:VFMA, w:RW|R|R, e:3 -VFNMADD132PS ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:0 0x9C /r ; s:FMA, t:VFMA, w:RW|R|R, e:2 -VFNMADD132PD ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:1 0x9C /r ; s:FMA, t:VFMA, w:RW|R|R, e:2 -VFNMADD132SS ; Vdq,Hdq,Wss ; ; vex m:2 p:1 l:i w:0 0x9D /r ; s:FMA, t:VFMA, w:RW|R|R, e:3 -VFNMADD132SD ; Vdq,Hdq,Wsd ; ; vex m:2 p:1 l:i w:1 0x9D /r ; s:FMA, t:VFMA, w:RW|R|R, e:3 -VFNMSUB132PS ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:0 0x9E /r ; s:FMA, t:VFMA, w:RW|R|R, e:2 -VFNMSUB132PD ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:1 0x9E /r ; s:FMA, t:VFMA, w:RW|R|R, e:2 -VFNMSUB132SS ; Vdq,Hdq,Wss ; ; vex m:2 p:1 l:i w:0 0x9F /r ; s:FMA, t:VFMA, w:RW|R|R, e:3 -VFNMSUB132SD ; Vdq,Hdq,Wsd ; ; vex m:2 p:1 l:i w:1 0x9F /r ; s:FMA, t:VFMA, w:RW|R|R, e:3 +VFMADDSUB132PS ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:0 0x96 /r ; s:FMA, t:VFMA, w:RW|R|R, e:2, x:IE|OE|UE|PE|DE +VFMADDSUB132PD ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:1 0x96 /r ; s:FMA, t:VFMA, w:RW|R|R, e:2, x:IE|OE|UE|PE|DE +VFMSUBADD132PS ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:0 0x97 /r ; s:FMA, t:VFMA, w:RW|R|R, e:2, x:IE|OE|UE|PE|DE +VFMSUBADD132PD ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:1 0x97 /r ; s:FMA, t:VFMA, w:RW|R|R, e:2, x:IE|OE|UE|PE|DE +VFMADD132PS ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:0 0x98 /r ; s:FMA, t:VFMA, w:RW|R|R, e:2, x:IE|OE|UE|PE|DE +VFMADD132PD ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:1 0x98 /r ; s:FMA, t:VFMA, w:RW|R|R, e:2, x:IE|OE|UE|PE|DE +VFMADD132SS ; Vdq,Hdq,Wss ; ; vex m:2 p:1 l:i w:0 0x99 /r ; s:FMA, t:VFMA, w:RW|R|R, e:3, x:IE|OE|UE|PE|DE +VFMADD132SD ; Vdq,Hdq,Wsd ; ; vex m:2 p:1 l:i w:1 0x99 /r ; s:FMA, t:VFMA, w:RW|R|R, e:3, x:IE|OE|UE|PE|DE +VFMSUB132PS ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:0 0x9A /r ; s:FMA, t:VFMA, w:RW|R|R, e:2, x:IE|OE|UE|PE|DE +VFMSUB132PD ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:1 0x9A /r ; s:FMA, t:VFMA, w:RW|R|R, e:2, x:IE|OE|UE|PE|DE +VFMSUB132SS ; Vdq,Hdq,Wss ; ; vex m:2 p:1 l:i w:0 0x9B /r ; s:FMA, t:VFMA, w:RW|R|R, e:3, x:IE|OE|UE|PE|DE +VFMSUB132SD ; Vdq,Hdq,Wsd ; ; vex m:2 p:1 l:i w:1 0x9B /r ; s:FMA, t:VFMA, w:RW|R|R, e:3, x:IE|OE|UE|PE|DE +VFNMADD132PS ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:0 0x9C /r ; s:FMA, t:VFMA, w:RW|R|R, e:2, x:IE|OE|UE|PE|DE +VFNMADD132PD ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:1 0x9C /r ; s:FMA, t:VFMA, w:RW|R|R, e:2, x:IE|OE|UE|PE|DE +VFNMADD132SS ; Vdq,Hdq,Wss ; ; vex m:2 p:1 l:i w:0 0x9D /r ; s:FMA, t:VFMA, w:RW|R|R, e:3, x:IE|OE|UE|PE|DE +VFNMADD132SD ; Vdq,Hdq,Wsd ; ; vex m:2 p:1 l:i w:1 0x9D /r ; s:FMA, t:VFMA, w:RW|R|R, e:3, x:IE|OE|UE|PE|DE +VFNMSUB132PS ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:0 0x9E /r ; s:FMA, t:VFMA, w:RW|R|R, e:2, x:IE|OE|UE|PE|DE +VFNMSUB132PD ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:1 0x9E /r ; s:FMA, t:VFMA, w:RW|R|R, e:2, x:IE|OE|UE|PE|DE +VFNMSUB132SS ; Vdq,Hdq,Wss ; ; vex m:2 p:1 l:i w:0 0x9F /r ; s:FMA, t:VFMA, w:RW|R|R, e:3, x:IE|OE|UE|PE|DE +VFNMSUB132SD ; Vdq,Hdq,Wsd ; ; vex m:2 p:1 l:i w:1 0x9F /r ; s:FMA, t:VFMA, w:RW|R|R, e:3, x:IE|OE|UE|PE|DE # 0xA0 - 0xAF -VFMADDSUB213PS ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:0 0xA6 /r ; s:FMA, t:VFMA, w:RW|R|R, e:2 -VFMADDSUB213PD ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:1 0xA6 /r ; s:FMA, t:VFMA, w:RW|R|R, e:2 -VFMSUBADD213PS ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:0 0xA7 /r ; s:FMA, t:VFMA, w:RW|R|R, e:2 -VFMSUBADD213PD ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:1 0xA7 /r ; s:FMA, t:VFMA, w:RW|R|R, e:2 -VFMADD213PS ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:0 0xA8 /r ; s:FMA, t:VFMA, w:RW|R|R, e:2 -VFMADD213PD ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:1 0xA8 /r ; s:FMA, t:VFMA, w:RW|R|R, e:2 -VFMADD213SS ; Vdq,Hdq,Wss ; ; vex m:2 p:1 l:i w:0 0xA9 /r ; s:FMA, t:VFMA, w:RW|R|R, e:3 -VFMADD213SD ; Vdq,Hdq,Wsd ; ; vex m:2 p:1 l:i w:1 0xA9 /r ; s:FMA, t:VFMA, w:RW|R|R, e:3 -VFMSUB213PS ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:0 0xAA /r ; s:FMA, t:VFMA, w:RW|R|R, e:2 -VFMSUB213PD ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:1 0xAA /r ; s:FMA, t:VFMA, w:RW|R|R, e:2 -VFMSUB213SS ; Vdq,Hdq,Wss ; ; vex m:2 p:1 l:i w:0 0xAB /r ; s:FMA, t:VFMA, w:RW|R|R, e:3 -VFMSUB213SD ; Vdq,Hdq,Wsd ; ; vex m:2 p:1 l:i w:1 0xAB /r ; s:FMA, t:VFMA, w:RW|R|R, e:3 -VFNMADD213PS ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:0 0xAC /r ; s:FMA, t:VFMA, w:RW|R|R, e:2 -VFNMADD213PD ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:1 0xAC /r ; s:FMA, t:VFMA, w:RW|R|R, e:2 -VFNMADD213SS ; Vdq,Hdq,Wss ; ; vex m:2 p:1 l:i w:0 0xAD /r ; s:FMA, t:VFMA, w:RW|R|R, e:3 -VFNMADD213SD ; Vdq,Hdq,Wsd ; ; vex m:2 p:1 l:i w:1 0xAD /r ; s:FMA, t:VFMA, w:RW|R|R, e:3 -VFNMSUB213PS ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:0 0xAE /r ; s:FMA, t:VFMA, w:RW|R|R, e:2 -VFNMSUB213PD ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:1 0xAE /r ; s:FMA, t:VFMA, w:RW|R|R, e:2 -VFNMSUB213SS ; Vdq,Hdq,Wss ; ; vex m:2 p:1 l:i w:0 0xAF /r ; s:FMA, t:VFMA, w:RW|R|R, e:3 -VFNMSUB213SD ; Vdq,Hdq,Wsd ; ; vex m:2 p:1 l:i w:1 0xAF /r ; s:FMA, t:VFMA, w:RW|R|R, e:3 +VFMADDSUB213PS ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:0 0xA6 /r ; s:FMA, t:VFMA, w:RW|R|R, e:2, x:IE|OE|UE|PE|DE +VFMADDSUB213PD ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:1 0xA6 /r ; s:FMA, t:VFMA, w:RW|R|R, e:2, x:IE|OE|UE|PE|DE +VFMSUBADD213PS ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:0 0xA7 /r ; s:FMA, t:VFMA, w:RW|R|R, e:2, x:IE|OE|UE|PE|DE +VFMSUBADD213PD ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:1 0xA7 /r ; s:FMA, t:VFMA, w:RW|R|R, e:2, x:IE|OE|UE|PE|DE +VFMADD213PS ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:0 0xA8 /r ; s:FMA, t:VFMA, w:RW|R|R, e:2, x:IE|OE|UE|PE|DE +VFMADD213PD ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:1 0xA8 /r ; s:FMA, t:VFMA, w:RW|R|R, e:2, x:IE|OE|UE|PE|DE +VFMADD213SS ; Vdq,Hdq,Wss ; ; vex m:2 p:1 l:i w:0 0xA9 /r ; s:FMA, t:VFMA, w:RW|R|R, e:3, x:IE|OE|UE|PE|DE +VFMADD213SD ; Vdq,Hdq,Wsd ; ; vex m:2 p:1 l:i w:1 0xA9 /r ; s:FMA, t:VFMA, w:RW|R|R, e:3, x:IE|OE|UE|PE|DE +VFMSUB213PS ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:0 0xAA /r ; s:FMA, t:VFMA, w:RW|R|R, e:2, x:IE|OE|UE|PE|DE +VFMSUB213PD ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:1 0xAA /r ; s:FMA, t:VFMA, w:RW|R|R, e:2, x:IE|OE|UE|PE|DE +VFMSUB213SS ; Vdq,Hdq,Wss ; ; vex m:2 p:1 l:i w:0 0xAB /r ; s:FMA, t:VFMA, w:RW|R|R, e:3, x:IE|OE|UE|PE|DE +VFMSUB213SD ; Vdq,Hdq,Wsd ; ; vex m:2 p:1 l:i w:1 0xAB /r ; s:FMA, t:VFMA, w:RW|R|R, e:3, x:IE|OE|UE|PE|DE +VFNMADD213PS ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:0 0xAC /r ; s:FMA, t:VFMA, w:RW|R|R, e:2, x:IE|OE|UE|PE|DE +VFNMADD213PD ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:1 0xAC /r ; s:FMA, t:VFMA, w:RW|R|R, e:2, x:IE|OE|UE|PE|DE +VFNMADD213SS ; Vdq,Hdq,Wss ; ; vex m:2 p:1 l:i w:0 0xAD /r ; s:FMA, t:VFMA, w:RW|R|R, e:3, x:IE|OE|UE|PE|DE +VFNMADD213SD ; Vdq,Hdq,Wsd ; ; vex m:2 p:1 l:i w:1 0xAD /r ; s:FMA, t:VFMA, w:RW|R|R, e:3, x:IE|OE|UE|PE|DE +VFNMSUB213PS ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:0 0xAE /r ; s:FMA, t:VFMA, w:RW|R|R, e:2, x:IE|OE|UE|PE|DE +VFNMSUB213PD ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:1 0xAE /r ; s:FMA, t:VFMA, w:RW|R|R, e:2, x:IE|OE|UE|PE|DE +VFNMSUB213SS ; Vdq,Hdq,Wss ; ; vex m:2 p:1 l:i w:0 0xAF /r ; s:FMA, t:VFMA, w:RW|R|R, e:3, x:IE|OE|UE|PE|DE +VFNMSUB213SD ; Vdq,Hdq,Wsd ; ; vex m:2 p:1 l:i w:1 0xAF /r ; s:FMA, t:VFMA, w:RW|R|R, e:3, x:IE|OE|UE|PE|DE # 0xB0 - 0xBF VCVTNEOPH2PS ; Vx,Mx ; ; vex m:2 p:0 l:x w:0 0xB0 /r:mem ; s:AVXNECONVERT, t:AVXNECONVERT, w:W|R, e:4 @@ -198,26 +214,26 @@ VBCSTNEBF162PS ; Vx,Mw ; ; vex m:2 p:2 l:x w:0 VPMADD52LUQ ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:1 0xB4 /r ; s:AVXIFMA, t:AVXIFMA, w:RW|R|R, e:4 VPMADD52HUQ ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:1 0xB5 /r ; s:AVXIFMA, t:AVXIFMA, w:RW|R|R, e:4 -VFMADDSUB231PS ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:0 0xB6 /r ; s:FMA, t:VFMA, w:RW|R|R, e:2 -VFMADDSUB231PD ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:1 0xB6 /r ; s:FMA, t:VFMA, w:RW|R|R, e:2 -VFMSUBADD231PS ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:0 0xB7 /r ; s:FMA, t:VFMA, w:RW|R|R, e:2 -VFMSUBADD231PD ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:1 0xB7 /r ; s:FMA, t:VFMA, w:RW|R|R, e:2 -VFMADD231PS ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:0 0xB8 /r ; s:FMA, t:VFMA, w:RW|R|R, e:2 -VFMADD231PD ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:1 0xB8 /r ; s:FMA, t:VFMA, w:RW|R|R, e:2 -VFMADD231SS ; Vdq,Hdq,Wss ; ; vex m:2 p:1 l:i w:0 0xB9 /r ; s:FMA, t:VFMA, w:RW|R|R, e:3 -VFMADD231SD ; Vdq,Hdq,Wsd ; ; vex m:2 p:1 l:i w:1 0xB9 /r ; s:FMA, t:VFMA, w:RW|R|R, e:3 -VFMSUB231PS ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:0 0xBA /r ; s:FMA, t:VFMA, w:RW|R|R, e:2 -VFMSUB231PD ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:1 0xBA /r ; s:FMA, t:VFMA, w:RW|R|R, e:2 -VFMSUB231SS ; Vdq,Hdq,Wss ; ; vex m:2 p:1 l:i w:0 0xBB /r ; s:FMA, t:VFMA, w:RW|R|R, e:3 -VFMSUB231SD ; Vdq,Hdq,Wsd ; ; vex m:2 p:1 l:i w:1 0xBB /r ; s:FMA, t:VFMA, w:RW|R|R, e:3 -VFNMADD231PS ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:0 0xBC /r ; s:FMA, t:VFMA, w:RW|R|R, e:2 -VFNMADD231PD ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:1 0xBC /r ; s:FMA, t:VFMA, w:RW|R|R, e:2 -VFNMADD231SS ; Vdq,Hdq,Wss ; ; vex m:2 p:1 l:i w:0 0xBD /r ; s:FMA, t:VFMA, w:RW|R|R, e:3 -VFNMADD231SD ; Vdq,Hdq,Wsd ; ; vex m:2 p:1 l:i w:1 0xBD /r ; s:FMA, t:VFMA, w:RW|R|R, e:3 -VFNMSUB231PS ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:0 0xBE /r ; s:FMA, t:VFMA, w:RW|R|R, e:2 -VFNMSUB231PD ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:1 0xBE /r ; s:FMA, t:VFMA, w:RW|R|R, e:2 -VFNMSUB231SS ; Vdq,Hdq,Wss ; ; vex m:2 p:1 l:i w:0 0xBF /r ; s:FMA, t:VFMA, w:RW|R|R, e:3 -VFNMSUB231SD ; Vdq,Hdq,Wsd ; ; vex m:2 p:1 l:i w:1 0xBF /r ; s:FMA, t:VFMA, w:RW|R|R, e:3 +VFMADDSUB231PS ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:0 0xB6 /r ; s:FMA, t:VFMA, w:RW|R|R, e:2, x:IE|OE|UE|PE|DE +VFMADDSUB231PD ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:1 0xB6 /r ; s:FMA, t:VFMA, w:RW|R|R, e:2, x:IE|OE|UE|PE|DE +VFMSUBADD231PS ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:0 0xB7 /r ; s:FMA, t:VFMA, w:RW|R|R, e:2, x:IE|OE|UE|PE|DE +VFMSUBADD231PD ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:1 0xB7 /r ; s:FMA, t:VFMA, w:RW|R|R, e:2, x:IE|OE|UE|PE|DE +VFMADD231PS ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:0 0xB8 /r ; s:FMA, t:VFMA, w:RW|R|R, e:2, x:IE|OE|UE|PE|DE +VFMADD231PD ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:1 0xB8 /r ; s:FMA, t:VFMA, w:RW|R|R, e:2, x:IE|OE|UE|PE|DE +VFMADD231SS ; Vdq,Hdq,Wss ; ; vex m:2 p:1 l:i w:0 0xB9 /r ; s:FMA, t:VFMA, w:RW|R|R, e:3, x:IE|OE|UE|PE|DE +VFMADD231SD ; Vdq,Hdq,Wsd ; ; vex m:2 p:1 l:i w:1 0xB9 /r ; s:FMA, t:VFMA, w:RW|R|R, e:3, x:IE|OE|UE|PE|DE +VFMSUB231PS ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:0 0xBA /r ; s:FMA, t:VFMA, w:RW|R|R, e:2, x:IE|OE|UE|PE|DE +VFMSUB231PD ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:1 0xBA /r ; s:FMA, t:VFMA, w:RW|R|R, e:2, x:IE|OE|UE|PE|DE +VFMSUB231SS ; Vdq,Hdq,Wss ; ; vex m:2 p:1 l:i w:0 0xBB /r ; s:FMA, t:VFMA, w:RW|R|R, e:3, x:IE|OE|UE|PE|DE +VFMSUB231SD ; Vdq,Hdq,Wsd ; ; vex m:2 p:1 l:i w:1 0xBB /r ; s:FMA, t:VFMA, w:RW|R|R, e:3, x:IE|OE|UE|PE|DE +VFNMADD231PS ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:0 0xBC /r ; s:FMA, t:VFMA, w:RW|R|R, e:2, x:IE|OE|UE|PE|DE +VFNMADD231PD ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:1 0xBC /r ; s:FMA, t:VFMA, w:RW|R|R, e:2, x:IE|OE|UE|PE|DE +VFNMADD231SS ; Vdq,Hdq,Wss ; ; vex m:2 p:1 l:i w:0 0xBD /r ; s:FMA, t:VFMA, w:RW|R|R, e:3, x:IE|OE|UE|PE|DE +VFNMADD231SD ; Vdq,Hdq,Wsd ; ; vex m:2 p:1 l:i w:1 0xBD /r ; s:FMA, t:VFMA, w:RW|R|R, e:3, x:IE|OE|UE|PE|DE +VFNMSUB231PS ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:0 0xBE /r ; s:FMA, t:VFMA, w:RW|R|R, e:2, x:IE|OE|UE|PE|DE +VFNMSUB231PD ; Vx,Hx,Wx ; ; vex m:2 p:1 l:x w:1 0xBE /r ; s:FMA, t:VFMA, w:RW|R|R, e:2, x:IE|OE|UE|PE|DE +VFNMSUB231SS ; Vdq,Hdq,Wss ; ; vex m:2 p:1 l:i w:0 0xBF /r ; s:FMA, t:VFMA, w:RW|R|R, e:3, x:IE|OE|UE|PE|DE +VFNMSUB231SD ; Vdq,Hdq,Wsd ; ; vex m:2 p:1 l:i w:1 0xBF /r ; s:FMA, t:VFMA, w:RW|R|R, e:3, x:IE|OE|UE|PE|DE VSHA512RNDS2 ; Vqq,Hqq,Udq ; ; vex m:2 p:3 l:1 w:0 0xCB /r:reg ; s:SHA512, t:SHA512, w:RW|R|R, e:6 VSHA512MSG1 ; Vqq,Udq ; ; vex m:2 p:3 l:1 w:0 0xCC /r:reg ; s:SHA512, t:SHA512, w:RW|R, e:6 diff --git a/isagenerator/instructions/table_vex_3.dat b/isagenerator/instructions/table_vex_3.dat index 87af2a1..e368d31 100644 --- a/isagenerator/instructions/table_vex_3.dat +++ b/isagenerator/instructions/table_vex_3.dat @@ -10,10 +10,10 @@ VPBLENDD ; Vx,Hx,Wx,Ib ; ; vex m:3 p:1 l:x w:0 VPERMILPS ; Vx,Wx,Ib ; ; vex m:3 p:1 l:x w:0 0x04 /r ib ; s:AVX, t:AVX, w:W|R|R, e:4 VPERMILPD ; Vx,Wx,Ib ; ; vex m:3 p:1 l:x w:0 0x05 /r ib ; s:AVX, t:AVX, w:W|R|R, e:4 VPERM2F128 ; Vqq,Hqq,Wqq,Ib ; ; vex m:3 p:1 l:1 w:0 0x06 /r ib ; s:AVX, t:AVX, w:W|R|R|R, e:4 -VROUNDPS ; Vx,Wx,Ib ; ; vex m:3 p:1 l:x w:i 0x08 /r ib ; s:AVX, t:AVX, w:W|R|R, e:2 -VROUNDPD ; Vx,Wx,Ib ; ; vex m:3 p:1 l:x w:i 0x09 /r ib ; s:AVX, t:AVX, w:W|R|R, e:2 -VROUNDSS ; Vss,Hss,Wss,Ib ; ; vex m:3 p:1 l:i w:i 0x0A /r ib ; s:AVX, t:AVX, w:W|R|R|R, e:3 -VROUNDSD ; Vsd,Hsd,Wsd,Ib ; ; vex m:3 p:1 l:i w:i 0x0B /r ib ; s:AVX, t:AVX, w:W|R|R|R, e:3 +VROUNDPS ; Vx,Wx,Ib ; ; vex m:3 p:1 l:x w:i 0x08 /r ib ; s:AVX, t:AVX, w:W|R|R, e:2, x:IE|PE +VROUNDPD ; Vx,Wx,Ib ; ; vex m:3 p:1 l:x w:i 0x09 /r ib ; s:AVX, t:AVX, w:W|R|R, e:2, x:IE|PE +VROUNDSS ; Vss,Hss,Wss,Ib ; ; vex m:3 p:1 l:i w:i 0x0A /r ib ; s:AVX, t:AVX, w:W|R|R|R, e:3, x:IE|PE +VROUNDSD ; Vsd,Hsd,Wsd,Ib ; ; vex m:3 p:1 l:i w:i 0x0B /r ib ; s:AVX, t:AVX, w:W|R|R|R, e:3, x:IE|PE VBLENDPS ; Vx,Hx,Wx,Ib ; ; vex m:3 p:1 l:x w:i 0x0C /r ib ; s:AVX, t:AVX, w:W|R|R|R, e:4 VBLENDPD ; Vx,Hx,Wx,Ib ; ; vex m:3 p:1 l:x w:i 0x0D /r ib ; s:AVX, t:AVX, w:W|R|R|R, e:4 VPBLENDW ; Vx,Hx,Wx,Ib ; ; vex m:3 p:1 l:x w:i 0x0E /r ib ; s:AVX, t:AVX, w:W|R|R|R, e:4 @@ -32,8 +32,8 @@ VEXTRACTPS ; Md,Vdq,Ib ; ; vex m:3 p:1 l:0 w:i VEXTRACTPS ; Ry,Vdq,Ib ; ; vex m:3 p:1 l:0 w:i 0x17 /r:reg ib ; s:AVX, t:AVX, w:W|R|R, e:5 VINSERTF128 ; Vqq,Hqq,Wdq,Ib ; ; vex m:3 p:1 l:1 w:0 0x18 /r ib ; s:AVX, t:AVX, w:W|R|R|R, e:6 VEXTRACTF128 ; Wdq,Vqq,Ib ; ; vex m:3 p:1 l:1 w:0 0x19 /r ib ; s:AVX, t:AVX, w:W|R|R, e:6 -VCVTPS2PH ; Wq,Vdq,Ib ; ; vex m:3 p:1 l:0 w:0 0x1D /r ib ; s:F16C, t:CONVERT, w:W|R|R, e:11 -VCVTPS2PH ; Wdq,Vqq,Ib ; ; vex m:3 p:1 l:1 w:0 0x1D /r ib ; s:F16C, t:CONVERT, w:W|R|R, e:11 +VCVTPS2PH ; Wq,Vdq,Ib ; ; vex m:3 p:1 l:0 w:0 0x1D /r ib ; s:F16C, t:CONVERT, w:W|R|R, e:11, x:IE|OE|UE|PE|DE +VCVTPS2PH ; Wdq,Vqq,Ib ; ; vex m:3 p:1 l:1 w:0 0x1D /r ib ; s:F16C, t:CONVERT, w:W|R|R, e:11, x:IE|OE|UE|PE|DE # 0x20 - 0x2F VPINSRB ; Vdq,Hdq,Mb,Ib ; ; vex m:3 p:1 l:0 w:i 0x20 /r:mem ib ; s:AVX, t:AVX, w:W|R|R|R, e:5 @@ -56,8 +56,8 @@ VINSERTI128 ; Vqq,Hqq,Wdq,Ib ; ; vex m:3 p:1 l:1 w:0 VEXTRACTI128 ; Wdq,Vqq,Ib ; ; vex m:3 p:1 l:1 w:0 0x39 /r ib ; s:AVX2, t:AVX2, w:W|R|R|R, e:6 # 0x40 - 0x4F -VDPPS ; Vx,Hx,Wx,Ib ; ; vex m:3 p:1 l:x w:i 0x40 /r ib ; s:AVX, t:AVX, w:W|R|R|R, e:2 -VDPPD ; Vdq,Hdq,Wdq,Ib ; ; vex m:3 p:1 l:0 w:i 0x41 /r ib ; s:AVX, t:AVX, w:W|R|R|R, e:2 +VDPPS ; Vx,Hx,Wx,Ib ; ; vex m:3 p:1 l:x w:i 0x40 /r ib ; s:AVX, t:AVX, w:W|R|R|R, e:2, x:IE|OE|UE|PE|DE +VDPPD ; Vdq,Hdq,Wdq,Ib ; ; vex m:3 p:1 l:0 w:i 0x41 /r ib ; s:AVX, t:AVX, w:W|R|R|R, e:2, x:IE|OE|UE|PE|DE VMPSADBW ; Vx,Hx,Wx,Ib ; ; vex m:3 p:1 l:x w:i 0x42 /r ib ; s:AVX, t:AVX, w:W|R|R|R, e:4 VPCLMULQDQ ; Vx,Hx,Wx,Ib ; ; vex m:3 p:1 l:x w:i 0x44 /r ib ; s:VPCLMULQDQ, t:VPCLMULQDQ, w:W|R|R|R, e:4 VPERM2I128 ; Vqq,Hqq,Wqq,Ib ; ; vex m:3 p:1 l:1 w:0 0x46 /r ib ; s:AVX2, t:AVX2, w:W|R|R|R, e:6 @@ -70,54 +70,54 @@ VBLENDVPD ; Vx,Hx,Wx,Lx ; ; vex m:3 p:1 l:x w:0 VPBLENDVB ; Vx,Hx,Wx,Lx ; ; vex m:3 p:1 l:x w:0 0x4C /r is4 ; s:AVX, t:AVX, w:W|R|R|R, e:4 # 0x50 - 0x5F -VFMADDSUBPS ; Vx,Hx,Wx,Lx ; ; vex m:3 p:1 l:x w:0 0x5C /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R -VFMADDSUBPS ; Vx,Hx,Lx,Wx ; ; vex m:3 p:1 l:x w:1 0x5C /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R -VFMADDSUBPD ; Vx,Hx,Wx,Lx ; ; vex m:3 p:1 l:x w:0 0x5D /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R -VFMADDSUBPD ; Vx,Hx,Lx,Wx ; ; vex m:3 p:1 l:x w:1 0x5D /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R -VFMSUBADDPS ; Vx,Hx,Wx,Lx ; ; vex m:3 p:1 l:x w:0 0x5E /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R -VFMSUBADDPS ; Vx,Hx,Lx,Wx ; ; vex m:3 p:1 l:x w:1 0x5E /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R -VFMSUBADDPD ; Vx,Hx,Wx,Lx ; ; vex m:3 p:1 l:x w:0 0x5F /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R -VFMSUBADDPD ; Vx,Hx,Lx,Wx ; ; vex m:3 p:1 l:x w:1 0x5F /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R +VFMADDSUBPS ; Vx,Hx,Wx,Lx ; ; vex m:3 p:1 l:x w:0 0x5C /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R, x:IE|OE|UE|PE|DE +VFMADDSUBPS ; Vx,Hx,Lx,Wx ; ; vex m:3 p:1 l:x w:1 0x5C /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R, x:IE|OE|UE|PE|DE +VFMADDSUBPD ; Vx,Hx,Wx,Lx ; ; vex m:3 p:1 l:x w:0 0x5D /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R, x:IE|OE|UE|PE|DE +VFMADDSUBPD ; Vx,Hx,Lx,Wx ; ; vex m:3 p:1 l:x w:1 0x5D /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R, x:IE|OE|UE|PE|DE +VFMSUBADDPS ; Vx,Hx,Wx,Lx ; ; vex m:3 p:1 l:x w:0 0x5E /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R, x:IE|OE|UE|PE|DE +VFMSUBADDPS ; Vx,Hx,Lx,Wx ; ; vex m:3 p:1 l:x w:1 0x5E /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R, x:IE|OE|UE|PE|DE +VFMSUBADDPD ; Vx,Hx,Wx,Lx ; ; vex m:3 p:1 l:x w:0 0x5F /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R, x:IE|OE|UE|PE|DE +VFMSUBADDPD ; Vx,Hx,Lx,Wx ; ; vex m:3 p:1 l:x w:1 0x5F /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R, x:IE|OE|UE|PE|DE # 0x60 - 0x6F VPCMPESTRM ; Vdq,Wdq,Ib ; yAX,yDX,XMM0,Fv ; vex m:3 p:1 l:0 w:i 0x60 /r ib ; s:AVX, t:STTNI, w:R|R|R|R|R|W|W, f:PCMPSTR, e:4 VPCMPESTRI ; Vdq,Wdq,Ib ; yAX,yDX,yCX,Fv ; vex m:3 p:1 l:0 w:i 0x61 /r ib ; s:AVX, t:STTNI, w:R|R|R|R|R|W|W, f:PCMPSTR, e:4 VPCMPISTRM ; Vdq,Wdq,Ib ; XMM0,Fv ; vex m:3 p:1 l:0 w:i 0x62 /r ib ; s:AVX, t:STTNI, w:R|R|R|W|W, f:PCMPSTR, e:4 VPCMPISTRI ; Vdq,Wdq,Ib ; yCX,Fv ; vex m:3 p:1 l:0 w:i 0x63 /r ib ; s:AVX, t:STTNI, w:R|R|R|W|W, f:PCMPSTR, e:4 -VFMADDPS ; Vx,Hx,Wx,Lx ; ; vex m:3 p:1 l:x w:0 0x68 /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R -VFMADDPS ; Vx,Hx,Lx,Wx ; ; vex m:3 p:1 l:x w:1 0x68 /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R -VFMADDPD ; Vx,Hx,Wx,Lx ; ; vex m:3 p:1 l:x w:0 0x69 /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R -VFMADDPD ; Vx,Hx,Lx,Wx ; ; vex m:3 p:1 l:x w:1 0x69 /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R -VFMADDSS ; Vdq,Hdq,Wss,Ldq ; ; vex m:3 p:1 l:x w:0 0x6A /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R -VFMADDSS ; Vdq,Hdq,Ldq,Wss ; ; vex m:3 p:1 l:x w:1 0x6A /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R -VFMADDSD ; Vdq,Hdq,Wsd,Ldq ; ; vex m:3 p:1 l:x w:0 0x6B /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R -VFMADDSD ; Vdq,Hdq,Ldq,Wsd ; ; vex m:3 p:1 l:x w:1 0x6B /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R -VFMSUBPS ; Vx,Hx,Wx,Lx ; ; vex m:3 p:1 l:x w:0 0x6C /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R -VFMSUBPS ; Vx,Hx,Lx,Wx ; ; vex m:3 p:1 l:x w:1 0x6C /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R -VFMSUBPD ; Vx,Hx,Wx,Lx ; ; vex m:3 p:1 l:x w:0 0x6D /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R -VFMSUBPD ; Vx,Hx,Lx,Wx ; ; vex m:3 p:1 l:x w:1 0x6D /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R -VFMSUBSS ; Vdq,Hdq,Wss,Ldq ; ; vex m:3 p:1 l:x w:0 0x6E /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R -VFMSUBSS ; Vdq,Hdq,Ldq,Wss ; ; vex m:3 p:1 l:x w:1 0x6E /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R -VFMSUBSD ; Vdq,Hdq,Wsd,Ldq ; ; vex m:3 p:1 l:x w:0 0x6F /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R -VFMSUBSD ; Vdq,Hdq,Ldq,Wsd ; ; vex m:3 p:1 l:x w:1 0x6F /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R +VFMADDPS ; Vx,Hx,Wx,Lx ; ; vex m:3 p:1 l:x w:0 0x68 /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R, x:IE|OE|UE|PE|DE +VFMADDPS ; Vx,Hx,Lx,Wx ; ; vex m:3 p:1 l:x w:1 0x68 /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R, x:IE|OE|UE|PE|DE +VFMADDPD ; Vx,Hx,Wx,Lx ; ; vex m:3 p:1 l:x w:0 0x69 /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R, x:IE|OE|UE|PE|DE +VFMADDPD ; Vx,Hx,Lx,Wx ; ; vex m:3 p:1 l:x w:1 0x69 /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R, x:IE|OE|UE|PE|DE +VFMADDSS ; Vdq,Hdq,Wss,Ldq ; ; vex m:3 p:1 l:x w:0 0x6A /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R, x:IE|OE|UE|PE|DE +VFMADDSS ; Vdq,Hdq,Ldq,Wss ; ; vex m:3 p:1 l:x w:1 0x6A /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R, x:IE|OE|UE|PE|DE +VFMADDSD ; Vdq,Hdq,Wsd,Ldq ; ; vex m:3 p:1 l:x w:0 0x6B /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R, x:IE|OE|UE|PE|DE +VFMADDSD ; Vdq,Hdq,Ldq,Wsd ; ; vex m:3 p:1 l:x w:1 0x6B /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R, x:IE|OE|UE|PE|DE +VFMSUBPS ; Vx,Hx,Wx,Lx ; ; vex m:3 p:1 l:x w:0 0x6C /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R, x:IE|OE|UE|PE|DE +VFMSUBPS ; Vx,Hx,Lx,Wx ; ; vex m:3 p:1 l:x w:1 0x6C /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R, x:IE|OE|UE|PE|DE +VFMSUBPD ; Vx,Hx,Wx,Lx ; ; vex m:3 p:1 l:x w:0 0x6D /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R, x:IE|OE|UE|PE|DE +VFMSUBPD ; Vx,Hx,Lx,Wx ; ; vex m:3 p:1 l:x w:1 0x6D /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R, x:IE|OE|UE|PE|DE +VFMSUBSS ; Vdq,Hdq,Wss,Ldq ; ; vex m:3 p:1 l:x w:0 0x6E /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R, x:IE|OE|UE|PE|DE +VFMSUBSS ; Vdq,Hdq,Ldq,Wss ; ; vex m:3 p:1 l:x w:1 0x6E /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R, x:IE|OE|UE|PE|DE +VFMSUBSD ; Vdq,Hdq,Wsd,Ldq ; ; vex m:3 p:1 l:x w:0 0x6F /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R, x:IE|OE|UE|PE|DE +VFMSUBSD ; Vdq,Hdq,Ldq,Wsd ; ; vex m:3 p:1 l:x w:1 0x6F /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R, x:IE|OE|UE|PE|DE # 0x70 - 0x7F -VFNMADDPS ; Vx,Hx,Wx,Lx ; ; vex m:3 p:1 l:x w:0 0x78 /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R -VFNMADDPS ; Vx,Hx,Lx,Wx ; ; vex m:3 p:1 l:x w:1 0x78 /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R -VFNMADDPD ; Vx,Hx,Wx,Lx ; ; vex m:3 p:1 l:x w:0 0x79 /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R -VFNMADDPD ; Vx,Hx,Lx,Wx ; ; vex m:3 p:1 l:x w:1 0x79 /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R -VFNMADDSS ; Vdq,Hdq,Wss,Ldq ; ; vex m:3 p:1 l:x w:0 0x7A /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R -VFNMADDSS ; Vdq,Hdq,Ldq,Wss ; ; vex m:3 p:1 l:x w:1 0x7A /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R -VFNMADDSD ; Vdq,Hdq,Wsd,Ldq ; ; vex m:3 p:1 l:x w:0 0x7B /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R -VFNMADDSD ; Vdq,Hdq,Ldq,Wsd ; ; vex m:3 p:1 l:x w:1 0x7B /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R -VFNMSUBPS ; Vx,Hx,Wx,Lx ; ; vex m:3 p:1 l:x w:0 0x7C /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R -VFNMSUBPS ; Vx,Hx,Lx,Wx ; ; vex m:3 p:1 l:x w:1 0x7C /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R -VFNMSUBPD ; Vx,Hx,Wx,Lx ; ; vex m:3 p:1 l:x w:0 0x7D /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R -VFNMSUBPD ; Vx,Hx,Lx,Wx ; ; vex m:3 p:1 l:x w:1 0x7D /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R -VFNMSUBSS ; Vdq,Hdq,Wss,Ldq ; ; vex m:3 p:1 l:x w:0 0x7E /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R -VFNMSUBSS ; Vdq,Hdq,Ldq,Wss ; ; vex m:3 p:1 l:x w:1 0x7E /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R -VFNMSUBSD ; Vdq,Hdq,Wsd,Ldq ; ; vex m:3 p:1 l:x w:0 0x7F /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R -VFNMSUBSD ; Vdq,Hdq,Ldq,Wsd ; ; vex m:3 p:1 l:x w:1 0x7F /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R +VFNMADDPS ; Vx,Hx,Wx,Lx ; ; vex m:3 p:1 l:x w:0 0x78 /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R, x:IE|OE|UE|PE|DE +VFNMADDPS ; Vx,Hx,Lx,Wx ; ; vex m:3 p:1 l:x w:1 0x78 /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R, x:IE|OE|UE|PE|DE +VFNMADDPD ; Vx,Hx,Wx,Lx ; ; vex m:3 p:1 l:x w:0 0x79 /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R, x:IE|OE|UE|PE|DE +VFNMADDPD ; Vx,Hx,Lx,Wx ; ; vex m:3 p:1 l:x w:1 0x79 /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R, x:IE|OE|UE|PE|DE +VFNMADDSS ; Vdq,Hdq,Wss,Ldq ; ; vex m:3 p:1 l:x w:0 0x7A /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R, x:IE|OE|UE|PE|DE +VFNMADDSS ; Vdq,Hdq,Ldq,Wss ; ; vex m:3 p:1 l:x w:1 0x7A /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R, x:IE|OE|UE|PE|DE +VFNMADDSD ; Vdq,Hdq,Wsd,Ldq ; ; vex m:3 p:1 l:x w:0 0x7B /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R, x:IE|OE|UE|PE|DE +VFNMADDSD ; Vdq,Hdq,Ldq,Wsd ; ; vex m:3 p:1 l:x w:1 0x7B /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R, x:IE|OE|UE|PE|DE +VFNMSUBPS ; Vx,Hx,Wx,Lx ; ; vex m:3 p:1 l:x w:0 0x7C /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R, x:IE|OE|UE|PE|DE +VFNMSUBPS ; Vx,Hx,Lx,Wx ; ; vex m:3 p:1 l:x w:1 0x7C /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R, x:IE|OE|UE|PE|DE +VFNMSUBPD ; Vx,Hx,Wx,Lx ; ; vex m:3 p:1 l:x w:0 0x7D /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R, x:IE|OE|UE|PE|DE +VFNMSUBPD ; Vx,Hx,Lx,Wx ; ; vex m:3 p:1 l:x w:1 0x7D /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R, x:IE|OE|UE|PE|DE +VFNMSUBSS ; Vdq,Hdq,Wss,Ldq ; ; vex m:3 p:1 l:x w:0 0x7E /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R, x:IE|OE|UE|PE|DE +VFNMSUBSS ; Vdq,Hdq,Ldq,Wss ; ; vex m:3 p:1 l:x w:1 0x7E /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R, x:IE|OE|UE|PE|DE +VFNMSUBSD ; Vdq,Hdq,Wsd,Ldq ; ; vex m:3 p:1 l:x w:0 0x7F /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R, x:IE|OE|UE|PE|DE +VFNMSUBSD ; Vdq,Hdq,Ldq,Wsd ; ; vex m:3 p:1 l:x w:1 0x7F /r is4 ; s:FMA4, t:FMA4, w:W|R|R|R, x:IE|OE|UE|PE|DE # 0xC0 - 0xCF VGF2P8AFFINEQB ; Vx,Hx,Wx,Ib ; ; vex m:3 p:1 l:x w:1 0xCE /r ib ; s:GFNI, t:GFNI, w:W|R|R|R, e:4 diff --git a/isagenerator/instructions/table_vex_5.dat b/isagenerator/instructions/table_vex_5.dat new file mode 100644 index 0000000..1c4d6be --- /dev/null +++ b/isagenerator/instructions/table_vex_5.dat @@ -0,0 +1,14 @@ +# +# Copyright (c) 2024 Bitdefender +# SPDX-License-Identifier: Apache-2.0 +# + +T2RPNTLVWZ0RS ; rTt+1,Mt ; ; vex m:5 p:0 l:0 w:0 0xF8 /r:mem sibmem ; s:AMXTRANSPOSE, t:AMX, w:W|R, m:NOTSX|O64, e:AMX_E11 +T2RPNTLVWZ1RS ; rTt+1,Mt ; ; vex m:5 p:1 l:0 w:0 0xF8 /r:mem sibmem ; s:AMXTRANSPOSE, t:AMX, w:W|R, m:NOTSX|O64, e:AMX_E11 +T2RPNTLVWZ0RST1 ; rTt+1,Mt ; ; vex m:5 p:0 l:0 w:0 0xF9 /r:mem sibmem ; s:AMXTRANSPOSE, t:AMX, w:W|R, m:NOTSX|O64, e:AMX_E11 +T2RPNTLVWZ1RST1 ; rTt+1,Mt ; ; vex m:5 p:1 l:0 w:0 0xF9 /r:mem sibmem ; s:AMXTRANSPOSE, t:AMX, w:W|R, m:NOTSX|O64, e:AMX_E11 + +TDPBF8PS ; rTt,mTt,vTt ; ; vex m:5 p:0 l:0 w:0 0xFD /r:reg ; s:AMXFP8, t:AMX, w:RW|R|R, m:NOTSX|O64, e:AMX_E4 +TDPHF8PS ; rTt,mTt,vTt ; ; vex m:5 p:1 l:0 w:0 0xFD /r:reg ; s:AMXFP8, t:AMX, w:RW|R|R, m:NOTSX|O64, e:AMX_E4 +TDPHBF8PS ; rTt,mTt,vTt ; ; vex m:5 p:2 l:0 w:0 0xFD /r:reg ; s:AMXFP8, t:AMX, w:RW|R|R, m:NOTSX|O64, e:AMX_E4 +TDPBHF8PS ; rTt,mTt,vTt ; ; vex m:5 p:3 l:0 w:0 0xFD /r:reg ; s:AMXFP8, t:AMX, w:RW|R|R, m:NOTSX|O64, e:AMX_E4 diff --git a/isagenerator/instructions/table_vex_7.dat b/isagenerator/instructions/table_vex_7.dat index 982346a..4e95d0d 100644 --- a/isagenerator/instructions/table_vex_7.dat +++ b/isagenerator/instructions/table_vex_7.dat @@ -3,5 +3,7 @@ # SPDX-License-Identifier: Apache-2.0 # +WRMSRNS ; Id,Rq ; MSR ; vex m:7 p:2 l:0 w:0 0xF6 /0:reg id ; s:MSR_IMM, t:SYSTEM, w:R|R|W, m:KERNEL|O64 +RDMSR ; Rq,Id ; MSR ; vex m:7 p:3 l:0 w:0 0xF6 /0:reg id ; s:MSR_IMM, t:SYSTEM, w:W|R|R, m:KERNEL|O64 UWRMSR ; Id,Rq ; MSR ; vex m:7 p:2 l:0 w:0 0xF8 /0:reg id ; s:USER_MSR, t:USER_MSR, w:R|R|W, m:O64 URDMSR ; Rq,Id ; MSR ; vex m:7 p:3 l:0 w:0 0xF8 /0:reg id ; s:USER_MSR, t:USER_MSR, w:W|R|R, m:O64 \ No newline at end of file diff --git a/isagenerator/isagenerator.vcxproj b/isagenerator/isagenerator.vcxproj index 514d081..3d4c389 100644 --- a/isagenerator/isagenerator.vcxproj +++ b/isagenerator/isagenerator.vcxproj @@ -200,7 +200,6 @@ - @@ -221,6 +220,7 @@ + diff --git a/isagenerator/isagenerator.vcxproj.filters b/isagenerator/isagenerator.vcxproj.filters index b6bbb8e..41198ce 100644 --- a/isagenerator/isagenerator.vcxproj.filters +++ b/isagenerator/isagenerator.vcxproj.filters @@ -96,14 +96,14 @@ data\table evex - - Source Files - data\table vex data\table evex + + data\table vex + \ No newline at end of file